From e5cfefbb108626abebab203ae33c54212533ba10 Mon Sep 17 00:00:00 2001 From: David Gable Date: Wed, 1 Jul 2026 19:32:26 -0700 Subject: [PATCH 01/19] Ran pre-commit. Updated pyproject.toml and Github Actions. --- .github/workflows/publish.yml | 89 +- .gitignore | 45 +- .pre-commit-config.yaml | 38 + .python-version | 1 + alternative_tag_selectors.py | 336 +- custom_handler.py | 1 + gallery/gallery.py | 253 +- implementation_recommendation.py | 81 +- improved_tag_selection.py | 77 +- plotly_examples/histogram_1.py | 901 +++-- plotly_examples/sensitivity_1.py | 829 +++-- pyproject.toml | 207 +- sample_hierarchical_data.py | 190 +- scripts/gen_ref_pages.py | 2 +- src/.DS_Store | Bin 6148 -> 0 bytes src/trendify/api/api.py | 30 +- src/trendify/api/base/data_product.py | 14 +- src/trendify/api/base/helpers.py | 12 +- src/trendify/api/base/pen.py | 13 +- src/trendify/api/formats/format2d.py | 22 +- src/trendify/api/formats/table.py | 6 +- .../api/generator/data_product_collection.py | 67 +- .../api/generator/data_product_generator.py | 3 +- src/trendify/api/generator/histogrammer.py | 11 +- src/trendify/api/generator/table_builder.py | 15 +- src/trendify/api/generator/xy_data_plotter.py | 25 +- src/trendify/api/plotting/axline.py | 8 +- src/trendify/api/plotting/histogram.py | 11 +- src/trendify/api/plotting/plotting.py | 20 +- src/trendify/api/plotting/point.py | 1 + src/trendify/api/plotting/trace.py | 17 +- src/trendify/api/styling/grid.py | 5 +- src/trendify/api/styling/legend.py | 4 +- src/trendify/api/styling/marker.py | 4 + src/trendify/{CLI.py => cli.py} | 0 src/trendify/examples.py | 6 +- src/trendify/gallery.py | 4 +- src/trendify/local_server.py | 9 +- src/trendify/plotly_dashboard.py | 20 +- src/trendify/production_server.py | 11 +- src/trendify/streamlit.py | 33 +- test.py | 39 + tests/unittests.py | 1 - uv.lock | 3211 +++++++++++++++++ 44 files changed, 5227 insertions(+), 1445 deletions(-) create mode 100644 .pre-commit-config.yaml create mode 100644 .python-version delete mode 100644 src/.DS_Store rename src/trendify/{CLI.py => cli.py} (100%) create mode 100644 test.py create mode 100644 uv.lock diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 45ad880..78f9c77 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,35 +2,82 @@ name: Publish Package on: push: - tags: - - 'v*' # Trigger on version tags (v0.1.0, v1.0.0, etc.) + branches: ["main"] # Run tests on every push to main + tags: ["v*"] # Run tests AND publish on tags + pull_request: + branches: ["main"] # Run tests on PRs -# Add this permissions block permissions: contents: read - id-token: write # This is needed for PyPI's trusted publishing + id-token: write jobs: - build-and-publish: + test: + name: "Test (Python ${{ matrix.python-version }})" runs-on: ubuntu-latest - environment: pypi + strategy: + matrix: + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v3 - - - name: Set up Python - uses: actions/setup-python@v4 + - name: Checkout + uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v5 + with: + enable-cache: true + + - name: Install Python ${{ matrix.python-version }} + run: uv python install ${{ matrix.python-version }} + + - name: Run unit tests + run: uv run --python ${{ matrix.python-version }} --group dev pytest + + publish: + name: "Build and Publish" + needs: [test] + # ONLY run this job if the push was actually a tag + if: startsWith(github.ref, 'refs/tags/v') + runs-on: ubuntu-latest + environment: + name: pypi + permissions: + id-token: write # Required for PyPI Trusted Publishing + contents: write # Required to create GitHub Release and upload assets + steps: + - name: Checkout + uses: actions/checkout@v6 with: - python-version: '3.11' - - - name: Install build dependencies + # Fetch all history so we can see other branches + fetch-depth: 0 + + - name: Verify Tag is on Main + # Only perform this check if we were triggered by a tag + if: startsWith(github.ref, 'refs/tags/v') run: | - python -m pip install --upgrade pip - pip install build - - - name: Build package - run: python -m build - + # Check if 'main' branch contains the current commit + if ! git branch -r --contains ${{ github.sha }} | grep -q "origin/main"; then + echo "::error::Tag ${{ github.ref_name }} was pushed on a non-main branch. Skipping workflow." + exit 1 + fi + + - name: Install uv + uses: astral-sh/setup-uv@v7 + + - name: Install Python 3.14 + run: uv python install 3.14 + + - name: Build + run: uv build + - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - # No need to specify token when using trusted publishing \ No newline at end of file + run: uv publish --check-url https://pypi.org/simple + + - name: Create GitHub Release + uses: softprops/action-gh-release@v2 + with: + generate_release_notes: true + files: | + dist/*.whl + dist/*.tar.gz diff --git a/.gitignore b/.gitignore index 636636b..01b08a8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,36 @@ -**/workdir/ -**/__pycache__/**/* -**/*.egg*/ -**/*.egg-info/** -**/*.pyc -**/*.pyo -**/*.pyd -**/*.pyz -**/*.code-workspace -dist/ +# Python-generated files +__pycache__/ +*.py[oc] build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv + +mojo.log +mojo.log.* + +site +docs/reference/ +mojo-models +textures + +typings + +# TypeScript build artifacts (node_modules is dev-only; compiled .js files ARE committed) +node_modules/ +*.js.map + +.coverage + +**/*.code-workspace + trendify.log + # Test output files discriminator_tests.json discriminator_tests.log -.coverage -coverage.xml -# MkDocs build directory -site/ \ No newline at end of file + +/**/.DS_Store diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..afbe37a --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,38 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v6.0.0 + hooks: + - id: check-added-large-files + args: ["--maxkb=500"] + - repo: https://github.com/astral-sh/ruff-pre-commit + # Ruff version. + rev: v0.15.17 + hooks: + # Run the linter. + - id: ruff-check + args: [--fix] + # Run the formatter. + - id: ruff-format + - repo: https://github.com/astral-sh/uv-pre-commit + # uv version. + rev: 0.11.21 + hooks: + - id: uv-lock + - repo: https://github.com/astral-sh/uv-pre-commit + # uv version. + rev: 0.11.21 + hooks: + - id: uv-export + - repo: https://github.com/RobertCraigie/pyright-python + rev: v1.1.410 + hooks: + - id: pyright + - repo: local + hooks: + - id: act-test + name: Run GitHub Actions locally (act) + entry: act -j test + language: system + stages: [pre-push] + pass_filenames: false + files: ^(src/|tests/|pyproject\.toml|uv\.lock) diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/alternative_tag_selectors.py b/alternative_tag_selectors.py index 012701b..8511def 100644 --- a/alternative_tag_selectors.py +++ b/alternative_tag_selectors.py @@ -2,251 +2,311 @@ Additional selection mechanisms for handling large numbers of tags in Trendify dashboards. These components can be integrated into the PlotlyDashboardGenerator class. """ -import dash + from dash import dcc, html from dash.dependencies import Input, Output, State -import re + class TagSelectionMethods: """Various tag selection UI components for Plotly Dash""" - + @staticmethod def create_searchable_dropdown(tag_options, default_value): """ Create a searchable dropdown for tag selection - + Args: tag_options (list): List of tag options in {'label': '...', 'value': '...'} format default_value (str): Default tag value to select - + Returns: html.Div: Dropdown component with search functionality + """ - return html.Div([ - html.Label("Search and select tag:"), - dcc.Dropdown( - id='tag-selector', - options=tag_options, - value=default_value, - clearable=False, - searchable=True, - style={'width': '100%'} - ) - ], style={'width': '40%', 'margin': '10px 0'}) - + return html.Div( + [ + html.Label("Search and select tag:"), + dcc.Dropdown( + id="tag-selector", + options=tag_options, + value=default_value, + clearable=False, + searchable=True, + style={"width": "100%"}, + ), + ], + style={"width": "40%", "margin": "10px 0"}, + ) + @staticmethod def create_radio_with_search_filter(tag_options, default_value): """ Create radio buttons with a search filter above - + Args: tag_options (list): List of tag options in {'label': '...', 'value': '...'} format default_value (str): Default tag value to select - + Returns: html.Div: Search filter and radio button component + """ - return html.Div([ - html.Label("Filter tags:"), - dcc.Input( - id='tag-search-input', - type='text', - placeholder='Type to filter tags...', - style={'width': '100%', 'marginBottom': '10px'} - ), - html.Div([ - dcc.RadioItems( - id='tag-selector', - options=tag_options, - value=default_value, - labelStyle={'display': 'block', 'margin': '5px 0'} - ) - ], id='filtered-radio-container', style={'maxHeight': '300px', 'overflowY': 'auto'}) - ], style={'width': '30%', 'margin': '10px 0'}) - + return html.Div( + [ + html.Label("Filter tags:"), + dcc.Input( + id="tag-search-input", + type="text", + placeholder="Type to filter tags...", + style={"width": "100%", "marginBottom": "10px"}, + ), + html.Div( + [ + dcc.RadioItems( + id="tag-selector", + options=tag_options, + value=default_value, + labelStyle={"display": "block", "margin": "5px 0"}, + ) + ], + id="filtered-radio-container", + style={"maxHeight": "300px", "overflowY": "auto"}, + ), + ], + style={"width": "30%", "margin": "10px 0"}, + ) + @staticmethod def create_category_based_selection(tag_options, default_value): """ Create a two-level selection for tags that can be organized by category Assumes tag names might follow a pattern like 'category/tag_name' - + Args: tag_options (list): List of tag options in {'label': '...', 'value': '...'} format default_value (str): Default tag value to select - + Returns: html.Div: Two-level selection component + """ # Try to extract categories from tag names (e.g., 'category/tag_name') categories = set() for opt in tag_options: - parts = opt['label'].split('/') + parts = opt["label"].split("/") if len(parts) > 1: categories.add(parts[0]) else: - categories.add('General') - + categories.add("General") + categories = sorted(list(categories)) - + # Default category - default_category = next((parts[0] for opt in tag_options - if opt['value'] == default_value - and len(parts := opt['label'].split('/')) > 1), - 'General') - - return html.Div([ - html.Div([ - html.Label("Category:"), - dcc.Dropdown( - id='category-selector', - options=[{'label': cat, 'value': cat} for cat in categories], - value=default_category, - clearable=False, - style={'width': '100%'} - ) - ], style={'marginBottom': '10px'}), - html.Div([ - html.Label("Tag:"), - dcc.Dropdown( - id='tag-selector', - # Options will be populated by callback - value=default_value, - clearable=False, - style={'width': '100%'} - ) - ]) - ], style={'width': '40%', 'margin': '10px 0'}) + default_category = next( + ( + parts[0] + for opt in tag_options + if opt["value"] == default_value + and len(parts := opt["label"].split("/")) > 1 + ), + "General", + ) + + return html.Div( + [ + html.Div( + [ + html.Label("Category:"), + dcc.Dropdown( + id="category-selector", + options=[ + {"label": cat, "value": cat} for cat in categories + ], + value=default_category, + clearable=False, + style={"width": "100%"}, + ), + ], + style={"marginBottom": "10px"}, + ), + html.Div( + [ + html.Label("Tag:"), + dcc.Dropdown( + id="tag-selector", + # Options will be populated by callback + value=default_value, + clearable=False, + style={"width": "100%"}, + ), + ] + ), + ], + style={"width": "40%", "margin": "10px 0"}, + ) @staticmethod def register_category_callbacks(app, tag_options): """Register callbacks for the category-based selection""" + @app.callback( - Output('tag-selector', 'options'), - [Input('category-selector', 'value')] + Output("tag-selector", "options"), [Input("category-selector", "value")] ) def update_tag_options(selected_category): filtered_options = [] for opt in tag_options: - parts = opt['label'].split('/') + parts = opt["label"].split("/") if len(parts) > 1 and parts[0] == selected_category: # Show only the tag part in the dropdown - filtered_options.append({ - 'label': parts[1], - 'value': opt['value'] - }) - elif len(parts) == 1 and selected_category == 'General': + filtered_options.append({"label": parts[1], "value": opt["value"]}) + elif len(parts) == 1 and selected_category == "General": filtered_options.append(opt) return filtered_options - + @staticmethod def register_search_filter_callbacks(app, tag_options): """Register callbacks for the search filter with radio buttons""" + @app.callback( - Output('filtered-radio-container', 'children'), - [Input('tag-search-input', 'value')], - [State('tag-selector', 'value')] + Output("filtered-radio-container", "children"), + [Input("tag-search-input", "value")], + [State("tag-selector", "value")], ) def filter_radio_options(search_text, current_value): if not search_text: return dcc.RadioItems( - id='tag-selector', + id="tag-selector", options=tag_options, value=current_value, - labelStyle={'display': 'block', 'margin': '5px 0'} + labelStyle={"display": "block", "margin": "5px 0"}, ) - + # Filter options based on search text filtered_options = [ - opt for opt in tag_options - if search_text.lower() in opt['label'].lower() + opt + for opt in tag_options + if search_text.lower() in opt["label"].lower() ] - + return dcc.RadioItems( - id='tag-selector', + id="tag-selector", options=filtered_options, - value=current_value if any(opt['value'] == current_value for opt in filtered_options) else None, - labelStyle={'display': 'block', 'margin': '5px 0'} + value=current_value + if any(opt["value"] == current_value for opt in filtered_options) + else None, + labelStyle={"display": "block", "margin": "5px 0"}, ) # Example of how to use these components in the PlotlyDashboardGenerator class def create_sidebar_with_tag_tree(tag_options, default_value): """Create a sidebar with a hierarchical tag tree for larger applications""" - # Organize tags into a tree structure tag_tree = {} for opt in tag_options: - parts = opt['label'].split('/') + parts = opt["label"].split("/") if len(parts) == 1: - category = 'General' + category = "General" tag = parts[0] else: category = parts[0] - tag = '/'.join(parts[1:]) # Join remaining parts as the tag - + tag = "/".join(parts[1:]) # Join remaining parts as the tag + if category not in tag_tree: tag_tree[category] = [] - - tag_tree[category].append({ - 'label': tag, - 'value': opt['value'] - }) - + + tag_tree[category].append({"label": tag, "value": opt["value"]}) + # Sort categories and tags categories = sorted(tag_tree.keys()) - + # Create the sidebar - return html.Div([ - html.H3("Tags"), - html.Hr(), - html.Div([ - html.Div([ - html.Details([ - html.Summary(category), - html.Div([ - html.Div([ - dcc.RadioItems( - id={'type': 'tag-radio', 'category': category}, - options=tag_tree[category], - value=None, - labelStyle={'display': 'block', 'margin': '5px 0', 'paddingLeft': '20px'} + return html.Div( + [ + html.H3("Tags"), + html.Hr(), + html.Div( + [ + html.Div( + [ + html.Details( + [ + html.Summary(category), + html.Div( + [ + html.Div( + [ + dcc.RadioItems( + id={ + "type": "tag-radio", + "category": category, + }, + options=tag_tree[category], + value=None, + labelStyle={ + "display": "block", + "margin": "5px 0", + "paddingLeft": "20px", + }, + ) + ] + ) + ] + ), + ], + open=category + == next( + ( + parts[0] + for opt in tag_options + if opt["value"] == default_value + and len(parts := opt["label"].split("/")) > 1 + ), + "General", + ), ) - ]) - ]) - ], open=category == next((parts[0] for opt in tag_options - if opt['value'] == default_value - and len(parts := opt['label'].split('/')) > 1), - 'General')) - ]) for category in categories - ]), - # Hidden input to store the selected tag - dcc.Input(id='tag-selector', value=default_value, type='hidden') - ], style={'width': '250px', 'backgroundColor': '#f8f9fa', 'padding': '15px', 'borderRight': '1px solid #ddd', - 'height': '100vh', 'position': 'fixed', 'overflowY': 'auto'}) + ] + ) + for category in categories + ] + ), + # Hidden input to store the selected tag + dcc.Input(id="tag-selector", value=default_value, type="hidden"), + ], + style={ + "width": "250px", + "backgroundColor": "#f8f9fa", + "padding": "15px", + "borderRight": "1px solid #ddd", + "height": "100vh", + "position": "fixed", + "overflowY": "auto", + }, + ) + def register_tag_tree_callbacks(app, tag_options): """Register callbacks for the sidebar tag tree""" - # Create a list of Output objects, one for each category categories = set() for opt in tag_options: - parts = opt['label'].split('/') + parts = opt["label"].split("/") if len(parts) > 1: categories.add(parts[0]) else: - categories.add('General') - + categories.add("General") + categories = sorted(list(categories)) - + @app.callback( - Output('tag-selector', 'value'), - [Input({'type': 'tag-radio', 'category': cat}, 'value') for cat in categories] + Output("tag-selector", "value"), + [Input({"type": "tag-radio", "category": cat}, "value") for cat in categories], ) def update_selected_tag(*values): # Find the first non-None value (the selected tag) for val in values: if val is not None: return val - + # Default to the first tag if nothing is selected - return tag_options[0]['value'] if tag_options else None \ No newline at end of file + return tag_options[0]["value"] if tag_options else None diff --git a/custom_handler.py b/custom_handler.py index e057bfd..8d21fa2 100644 --- a/custom_handler.py +++ b/custom_handler.py @@ -1,6 +1,7 @@ import requests from mkdocstrings.handlers.base import BaseHandler + class CustomPythonHandler(BaseHandler): def get_source(self): # Override the method to disable SSL verification diff --git a/gallery/gallery.py b/gallery/gallery.py index 6b3886c..90a824f 100644 --- a/gallery/gallery.py +++ b/gallery/gallery.py @@ -10,83 +10,86 @@ import numpy as np from pathlib import Path from trendify.api.api import ( - Trace2D, Point2D, TableEntry, HistogramEntry, AxLine, - Pen, Marker, Format2D, LineOrientation, HistogramStyle, - DataProductCollection + Trace2D, + Point2D, + TableEntry, + HistogramEntry, + AxLine, + Pen, + Marker, + Format2D, + LineOrientation, + HistogramStyle, + DataProductCollection, ) + def generate_sine_wave_example(): # Create sine wave with noise - x = np.linspace(0, 4*np.pi, 100) + x = np.linspace(0, 4 * np.pi, 100) y = np.sin(x) + np.random.normal(0, 0.1, len(x)) - + # Create main trace trace = Trace2D.from_xy( - tags=('waves', 'sine'), + tags=("waves", "sine"), x=x, y=y, - pen=Pen( - color='blue', - label='Noisy Sine', - size=2 - ), + pen=Pen(color="blue", label="Noisy Sine", size=2), format2d=Format2D( title_fig="Sine Wave with Reference Lines", title_ax="Sine Function with Noise", label_x="X (radians)", label_y="Amplitude", lim_x_min=0, - lim_x_max=4*np.pi, + lim_x_max=4 * np.pi, lim_y_min=-1.5, - lim_y_max=1.5 - ) + lim_y_max=1.5, + ), ) - + # Add reference lines hline_upper = AxLine( - tags=('waves', 'sine'), + tags=("waves", "sine"), value=1.0, orientation=LineOrientation.HORIZONTAL, - pen=Pen(color='red', label='Upper Bound', size=1.5) + pen=Pen(color="red", label="Upper Bound", size=1.5), ) - + hline_lower = AxLine( - tags=('waves', 'sine'), + tags=("waves", "sine"), value=-1.0, orientation=LineOrientation.HORIZONTAL, - pen=Pen(color='red', label='Lower Bound', size=1.5) + pen=Pen(color="red", label="Lower Bound", size=1.5), ) - + # Add some peak points peaks = [] for i, (x_val, y_val) in enumerate(zip(x[1:-1], y[1:-1])): - if y_val > y[i] and y_val > y[i+2]: # Simple peak detection - peaks.append(Point2D( - tags=('waves', 'sine'), - x=x_val, - y=y_val, - marker=Marker( - color='green', - symbol='o', - size=100, - label='Peak' + if y_val > y[i] and y_val > y[i + 2]: # Simple peak detection + peaks.append( + Point2D( + tags=("waves", "sine"), + x=x_val, + y=y_val, + marker=Marker(color="green", symbol="o", size=100, label="Peak"), ) - )) - + ) + return [trace, hline_upper, hline_lower] + peaks + def generate_scatter_plot_example(): # Create two clusters of points n_points = 50 - + # Cluster 1 x1 = np.random.normal(2, 0.5, n_points) y1 = np.random.normal(2, 0.5, n_points) - + # Cluster 2 x2 = np.random.normal(4, 0.5, n_points) y2 = np.random.normal(4, 0.5, n_points) - + format2d = Format2D( title_fig="Cluster Analysis", title_ax="Two Clusters with Centroids", @@ -95,179 +98,159 @@ def generate_scatter_plot_example(): lim_x_min=0, lim_x_max=6, lim_y_min=0, - lim_y_max=6 + lim_y_max=6, ) - + # Create points for each cluster cluster1 = [ Point2D( - tags=('clusters', 'analysis'), + tags=("clusters", "analysis"), x=x, y=y, - marker=Marker( - color='blue', - symbol='o', - size=50, - label='Cluster 1' - ), - format2d=format2d + marker=Marker(color="blue", symbol="o", size=50, label="Cluster 1"), + format2d=format2d, ) for x, y in zip(x1, y1) ] - + cluster2 = [ Point2D( - tags=('clusters', 'analysis'), + tags=("clusters", "analysis"), x=x, y=y, - marker=Marker( - color='red', - symbol='o', - size=50, - label='Cluster 2' - ), - format2d=format2d + marker=Marker(color="red", symbol="o", size=50, label="Cluster 2"), + format2d=format2d, ) for x, y in zip(x2, y2) ] - + # Add centroids centroids = [ Point2D( - tags=('clusters', 'analysis'), + tags=("clusters", "analysis"), x=np.mean(x1), y=np.mean(y1), - marker=Marker( - color='darkblue', - symbol='*', - size=200, - label='Centroid 1' - ), - format2d=format2d + marker=Marker(color="darkblue", symbol="*", size=200, label="Centroid 1"), + format2d=format2d, ), Point2D( - tags=('clusters', 'analysis'), + tags=("clusters", "analysis"), x=np.mean(x2), y=np.mean(y2), - marker=Marker( - color='darkred', - symbol='*', - size=200, - label='Centroid 2' - ), - format2d=format2d - ) + marker=Marker(color="darkred", symbol="*", size=200, label="Centroid 2"), + format2d=format2d, + ), ] - + return cluster1 + cluster2 + centroids + def generate_histogram_example(): # Generate three different distributions n_samples = 1000 - + # Normal distribution normal_data = np.random.normal(0, 1, n_samples) normal_entries = [ HistogramEntry( - tags=('distributions', 'comparison'), + tags=("distributions", "comparison"), value=v, - style=HistogramStyle( - color='blue', - label='Normal', - alpha_face=0.3, - bins=30 - ), + style=HistogramStyle(color="blue", label="Normal", alpha_face=0.3, bins=30), format2d=Format2D( title_fig="Distribution Comparison", title_ax="Multiple Distributions", label_x="Value", - label_y="Count" - ) + label_y="Count", + ), ) for v in normal_data ] - + # Uniform distribution uniform_data = np.random.uniform(-2, 2, n_samples) uniform_entries = [ HistogramEntry( - tags=('distributions', 'comparison'), + tags=("distributions", "comparison"), value=v, - style=HistogramStyle( - color='red', - label='Uniform', - alpha_face=0.3, - bins=30 - ) + style=HistogramStyle(color="red", label="Uniform", alpha_face=0.3, bins=30), ) for v in uniform_data ] - + # Exponential distribution exp_data = np.random.exponential(1, n_samples) exp_entries = [ HistogramEntry( - tags=('distributions', 'comparison'), + tags=("distributions", "comparison"), value=v, style=HistogramStyle( - color='green', - label='Exponential', - alpha_face=0.3, - bins=30 - ) + color="green", label="Exponential", alpha_face=0.3, bins=30 + ), ) for v in exp_data ] - + return normal_entries + uniform_entries + exp_entries + def generate_table_example(): # Create a comparison table of distribution statistics - distributions = ['Normal', 'Uniform', 'Exponential'] - metrics = ['Mean', 'Std Dev', 'Skewness'] - + distributions = ["Normal", "Uniform", "Exponential"] + metrics = ["Mean", "Std Dev", "Skewness"] + # Generate some example statistics stats = { - 'Normal': [0.01, 1.02, 0.05], - 'Uniform': [0.0, 1.15, 0.0], - 'Exponential': [1.0, 1.0, 2.0] + "Normal": [0.01, 1.02, 0.05], + "Uniform": [0.0, 1.15, 0.0], + "Exponential": [1.0, 1.0, 2.0], } - + table_entries = [] for dist in distributions: for i, metric in enumerate(metrics): table_entries.append( TableEntry( - tags=('distributions', 'statistics'), + tags=("distributions", "statistics"), row=dist, col=metric, value=f"{stats[dist][i]:.2f}", - unit=None + unit=None, ) ) - + return table_entries + def run_trendify_commands(input_dir: str | Path, output_dir: str | Path): """ Runs trendify commands with proper OS handling - + Args: input_dir (str | Path): Input directory containing data products output_dir (str | Path): Output directory for sorted products and assets + """ # Convert to Path objects input_dir = Path(input_dir).resolve() output_dir = Path(output_dir).resolve() - + # Determine if we need shell=True based on OS use_shell = platform.system() == "Windows" - + commands = [ - ["trendify", "products-sort", "-i", str(input_dir), "-o", str(output_dir), "-n", "1"], - ["trendify", "assets-make-static", str(output_dir), "-n", "1"] + [ + "trendify", + "products-sort", + "-i", + str(input_dir), + "-o", + str(output_dir), + "-n", + "1", + ], + ["trendify", "assets-make-static", str(output_dir), "-n", "1"], ] - + for cmd in commands: print(f"\nExecuting command: {' '.join(cmd)}") try: @@ -278,16 +261,16 @@ def run_trendify_commands(input_dir: str | Path, output_dir: str | Path): check=True, text=True, stdout=subprocess.PIPE, - stderr=subprocess.PIPE + stderr=subprocess.PIPE, ) print("Command output:") print(result.stdout) - + # Print any stderr output if it exists if result.stderr: print("Warnings/Errors:") print(result.stderr) - + except subprocess.CalledProcessError as e: print(f"Error executing command: {' '.join(cmd)}") print(f"Exit code: {e.returncode}") @@ -296,47 +279,49 @@ def run_trendify_commands(input_dir: str | Path, output_dir: str | Path): sys.exit(1) except Exception as e: print(f"Unexpected error executing command: {' '.join(cmd)}") - print(f"Error: {str(e)}") + print(f"Error: {e!s}") sys.exit(1) + def make_gallery(output_dir: Path): """ Generates the gallery """ - # Create output directory output_dir.mkdir(exist_ok=True, parents=True) - data_dir = output_dir.joinpath('data') + data_dir = output_dir.joinpath("data") data_dir.mkdir(exist_ok=True, parents=True) - trendify_dir=output_dir.joinpath('trendify') - + trendify_dir = output_dir.joinpath("trendify") + try: from importlib.resources import files from shutil import copy + copy( - str(files('trendify').joinpath('gallery.py').resolve()), - str(output_dir.joinpath('gallery.py')), + str(files("trendify").joinpath("gallery.py").resolve()), + str(output_dir.joinpath("gallery.py")), ) except Exception as e: print(e) # Generate all examples products = ( - generate_sine_wave_example() + - generate_scatter_plot_example() + - generate_histogram_example() + - generate_table_example() + generate_sine_wave_example() + + generate_scatter_plot_example() + + generate_histogram_example() + + generate_table_example() ) - + # Save to JSON file collection = DataProductCollection(elements=products) - data_dir.joinpath('data_products.json').write_text(collection.model_dump_json()) - + data_dir.joinpath("data_products.json").write_text(collection.model_dump_json()) + # Run trendify commands run_trendify_commands( input_dir=data_dir, output_dir=trendify_dir, ) + if __name__ == "__main__": - make_gallery(Path('gallery')) \ No newline at end of file + make_gallery(Path("gallery")) diff --git a/implementation_recommendation.py b/implementation_recommendation.py index 769f28e..9e1566d 100644 --- a/implementation_recommendation.py +++ b/implementation_recommendation.py @@ -5,70 +5,73 @@ # Here's how you could modify your PlotlyDashboardGenerator class # to implement a dropdown-based selection with search capabilities + def _create_app_layout(self, title: str, tab_contents: List[Dict]) -> html.Div: """Create the main application layout with improved tag selection.""" if not tab_contents: - return html.Div([ - html.H1(title), - html.Div("No data products found to visualize.") - ]) - + return html.Div( + [html.H1(title), html.Div("No data products found to visualize.")] + ) + # Create dropdown options from tab_contents dropdown_options = [ - {'label': tab['label'], 'value': tab['value']} - for tab in tab_contents + {"label": tab["label"], "value": tab["value"]} for tab in tab_contents ] - + # Create content divs for each tag content_divs = [] for tab in tab_contents: content_divs.append( html.Div( - tab['content'], - id=f"content-{tab['value']}", - style={'display': 'none'} + tab["content"], id=f"content-{tab['value']}", style={"display": "none"} ) ) - + # Only show the first one by default - content_divs[0]['style'] = {'display': 'block'} - - return html.Div([ - html.H1(title), - html.Div([ - html.Label("Select Tag:"), - dcc.Dropdown( - id='tag-selector', - options=dropdown_options, - value=tab_contents[0]['value'], - clearable=False, - searchable=True, - style={'width': '100%'} + content_divs[0]["style"] = {"display": "block"} + + return html.Div( + [ + html.H1(title), + html.Div( + [ + html.Label("Select Tag:"), + dcc.Dropdown( + id="tag-selector", + options=dropdown_options, + value=tab_contents[0]["value"], + clearable=False, + searchable=True, + style={"width": "100%"}, + ), + ], + style={"width": "30%", "margin": "10px 0"}, ), - ], style={'width': '30%', 'margin': '10px 0'}), - html.Div(id='tag-content-container', children=content_divs), - - # Stores - dcc.Store(id='active-tag', data=tab_contents[0]['value']), - dcc.Store(id='color-maps'), - ]) + html.Div(id="tag-content-container", children=content_divs), + # Stores + dcc.Store(id="active-tag", data=tab_contents[0]["value"]), + dcc.Store(id="color-maps"), + ] + ) + def _register_callbacks(self): """Register all the callbacks for the dashboard.""" + # Tag selection callback @self.app.callback( - [Output('active-tag', 'data')] + - [Output(f'content-{tag}', 'style') for tag in self.tag_data.keys()], - [Input('tag-selector', 'value')] + [Output("active-tag", "data")] + + [Output(f"content-{tag}", "style") for tag in self.tag_data.keys()], + [Input("tag-selector", "value")], ) def switch_tag(tag_value): styles = [] for tag in self.tag_data.keys(): if tag == tag_value: - styles.append({'display': 'block'}) + styles.append({"display": "block"}) else: - styles.append({'display': 'none'}) + styles.append({"display": "none"}) return [tag_value] + styles - + # Register callbacks for each tag's components as before... - # ... \ No newline at end of file + # ... diff --git a/improved_tag_selection.py b/improved_tag_selection.py index 31e6a5c..06aab5b 100644 --- a/improved_tag_selection.py +++ b/improved_tag_selection.py @@ -2,67 +2,72 @@ Code snippet showing improved tag selection for PlotlyDashboardGenerator to replace the existing tab-based navigation """ -import dash + from dash import dcc, html from dash.dependencies import Input, Output + # This would replace the _create_app_layout method in your class -def _create_app_layout_with_dropdown(self, title: str, tab_contents: List[Dict]) -> html.Div: +def _create_app_layout_with_dropdown( + self, title: str, tab_contents: List[Dict] +) -> html.Div: """Create the main application layout with dropdown selection instead of tabs.""" if not tab_contents: - return html.Div([ - html.H1(title), - html.Div("No data products found to visualize.") - ]) - + return html.Div( + [html.H1(title), html.Div("No data products found to visualize.")] + ) + # Create dropdown options from tab_contents dropdown_options = [ - {'label': tab['label'], 'value': tab['value']} - for tab in tab_contents + {"label": tab["label"], "value": tab["value"]} for tab in tab_contents ] - + # Create divs for each tag's content content_divs = [] for tab in tab_contents: content_divs.append( html.Div( - tab['content'], - id=f"content-{tab['value']}", - style={'display': 'none'} + tab["content"], id=f"content-{tab['value']}", style={"display": "none"} ) ) - - return html.Div([ - html.H1(title), - html.Div([ - html.Label("Select Tag:"), - dcc.Dropdown( - id='tag-selector', - options=dropdown_options, - value=tab_contents[0]['value'], - clearable=False, - style={'width': '100%'} + + return html.Div( + [ + html.H1(title), + html.Div( + [ + html.Label("Select Tag:"), + dcc.Dropdown( + id="tag-selector", + options=dropdown_options, + value=tab_contents[0]["value"], + clearable=False, + style={"width": "100%"}, + ), + ], + style={"width": "30%", "margin": "10px 0"}, ), - ], style={'width': '30%', 'margin': '10px 0'}), - html.Div(id='tag-content-container', children=content_divs), - - # Stores - dcc.Store(id='active-tag', data=tab_contents[0]['value']), - ]) + html.Div(id="tag-content-container", children=content_divs), + # Stores + dcc.Store(id="active-tag", data=tab_contents[0]["value"]), + ] + ) + # This would replace the callback in _register_callbacks def tag_selection_callback(self): """Register callback for tag selection dropdown.""" + @self.app.callback( - [Output('active-tag', 'data')] + - [Output(f'content-{tag}', 'style') for tag in self.tag_data.keys()], - [Input('tag-selector', 'value')] + [Output("active-tag", "data")] + + [Output(f"content-{tag}", "style") for tag in self.tag_data.keys()], + [Input("tag-selector", "value")], ) def switch_tag(tag_value): styles = [] for tag in self.tag_data.keys(): if tag == tag_value: - styles.append({'display': 'block'}) + styles.append({"display": "block"}) else: - styles.append({'display': 'none'}) - return [tag_value] + styles \ No newline at end of file + styles.append({"display": "none"}) + return [tag_value] + styles diff --git a/plotly_examples/histogram_1.py b/plotly_examples/histogram_1.py index 7c35d28..fa4d139 100644 --- a/plotly_examples/histogram_1.py +++ b/plotly_examples/histogram_1.py @@ -1,33 +1,40 @@ """Interactive histogram visualization with interactive legend features.""" + import dash from dash import dcc, html -from dash.dependencies import Input, Output, State, MATCH, ALL +from dash.dependencies import Input, Output, State, ALL import plotly.graph_objects as go import pandas as pd import numpy as np -from typing import Dict, Any +from typing import Any # Debug Configuration PYTHON_DEBUG = True MIN_BINS = 1 + def debug_log(message: str) -> None: """Python-side debug logging.""" if PYTHON_DEBUG: print(f"[PY] {message}") -def calculate_histogram_statistics(series: pd.Series, num_bins: int = 20) -> Dict[str, Any]: + +def calculate_histogram_statistics( + series: pd.Series, num_bins: int = 20 +) -> dict[str, Any]: """Calculate statistics for a histogram series.""" try: # Drop NA values clean_series = series.dropna() - + if len(clean_series) < 2: return { "samples": len(clean_series), "missing": len(series) - len(clean_series), - "mean": "N/A" if len(clean_series) == 0 else f"{clean_series.mean():.3f}", - "bins": num_bins + "mean": "N/A" + if len(clean_series) == 0 + else f"{clean_series.mean():.3f}", + "bins": num_bins, } stats_dict = { @@ -39,9 +46,11 @@ def calculate_histogram_statistics(series: pd.Series, num_bins: int = 20) -> Dic "min": f"{clean_series.min():.3f}", "max": f"{clean_series.max():.3f}", "bins": num_bins, - "bin_width": f"{(clean_series.max() - clean_series.min()) / num_bins:.3f}" if clean_series.max() != clean_series.min() else "N/A" + "bin_width": f"{(clean_series.max() - clean_series.min()) / num_bins:.3f}" + if clean_series.max() != clean_series.min() + else "N/A", } - + # Add skewness and kurtosis if enough data points if len(clean_series) > 3: try: @@ -49,174 +58,249 @@ def calculate_histogram_statistics(series: pd.Series, num_bins: int = 20) -> Dic stats_dict["kurtosis"] = f"{clean_series.kurtosis():.3f}" except: pass - + return stats_dict except Exception as e: return {"error": str(e), "bins": num_bins} + # Create sample data -df = pd.DataFrame({ - 'A': np.random.normal(0, 1, 1000), - 'B': np.random.normal(2, 1.5, 1000), - 'C': np.random.exponential(2, 1000), - 'D': np.random.gamma(2, 2, 1000), - 'Category': np.random.choice(['X', 'Y', 'Z'], 1000) -}) +df = pd.DataFrame( + { + "A": np.random.normal(0, 1, 1000), + "B": np.random.normal(2, 1.5, 1000), + "C": np.random.exponential(2, 1000), + "D": np.random.gamma(2, 2, 1000), + "Category": np.random.choice(["X", "Y", "Z"], 1000), + } +) # Initialize the Dash app app = dash.Dash(__name__, suppress_callback_exceptions=True) # Styles dropdown_style = { - 'width': '100%', - 'marginBottom': '20px', - 'zIndex': 999, + "width": "100%", + "marginBottom": "20px", + "zIndex": 999, } info_panel_style = { - 'position': 'fixed', # Fixed positioning for hover panel - 'backgroundColor': 'white', - 'padding': '15px', - 'borderRadius': '5px', - 'boxShadow': '0 0 10px rgba(0,0,0,0.3)', - 'zIndex': 1000, - 'display': 'none', - 'minWidth': '200px', - 'maxWidth': '300px', - 'fontSize': '12px' + "position": "fixed", # Fixed positioning for hover panel + "backgroundColor": "white", + "padding": "15px", + "borderRadius": "5px", + "boxShadow": "0 0 10px rgba(0,0,0,0.3)", + "zIndex": 1000, + "display": "none", + "minWidth": "200px", + "maxWidth": "300px", + "fontSize": "12px", } color_picker_style = { - 'position': 'fixed', - 'top': '50%', - 'left': '50%', - 'transform': 'translate(-50%, -50%)', - 'backgroundColor': 'white', - 'padding': '20px', - 'borderRadius': '5px', - 'boxShadow': '0 0 10px rgba(0,0,0,0.3)', - 'zIndex': 1001, - 'display': 'none' + "position": "fixed", + "top": "50%", + "left": "50%", + "transform": "translate(-50%, -50%)", + "backgroundColor": "white", + "padding": "20px", + "borderRadius": "5px", + "boxShadow": "0 0 10px rgba(0,0,0,0.3)", + "zIndex": 1001, + "display": "none", } # Available colors COLORS = [ - '#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', - '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf', - '#aec7e8', '#ffbb78', '#98df8a', '#ff9896', '#c5b0d5', - '#c49c94', '#f7b6d2', '#c7c7c7', '#dbdb8d', '#9edae5' + "#1f77b4", + "#ff7f0e", + "#2ca02c", + "#d62728", + "#9467bd", + "#8c564b", + "#e377c2", + "#7f7f7f", + "#bcbd22", + "#17becf", + "#aec7e8", + "#ffbb78", + "#98df8a", + "#ff9896", + "#c5b0d5", + "#c49c94", + "#f7b6d2", + "#c7c7c7", + "#dbdb8d", + "#9edae5", ] # Define the layout -app.layout = html.Div([ - html.H1("Interactive Histogram Visualization"), - - # Control panel for column selection - html.Div([ - html.Div([ - html.H3("Select Columns for Histograms"), - dcc.Dropdown( - id='histogram-columns', - options=[{'label': col, 'value': col} for col in df.columns if col != 'Category'], - value=[], - multi=True, - style=dropdown_style - ), - ], style={'width': '45%', 'display': 'inline-block', 'margin': '5px'}), - - ]), - - # Graph and custom legend - html.Div([ - html.Div([ - html.H3("Histogram Settings"), - dcc.Checklist( - id='histogram-settings', - options=[ - {'label': ' Show KDE (density curve)', 'value': 'kde'}, - {'label': ' Normalize histograms', 'value': 'normalize'}, - {'label': ' Show rug plot', 'value': 'rug'} - ], - value=['kde'], - style={'display': 'block', 'gap': '10px'}, - inputStyle={'marginRight': '5px'}, - labelStyle={'display': 'block', 'marginBottom': '10px'} - ), - html.Div([ - html.Label("Global Number of Bins:"), - dcc.Slider( - id='bins-slider', - min=MIN_BINS, - max=100, - step=1, - value=20, - marks={i: str(i) for i in [1, 20, 40, 60, 80, 100]}, - ) - ], style={'marginTop': '15px'}), - html.Div([ - html.Label("Lock all bins to global setting:", - style={'display': 'inline-block', 'marginRight': '10px'}), - dcc.Checklist( - id='global-bins-toggle', - options=[{'label': '', 'value': 'enabled'}], - value=['enabled'], # Enabled by default - inline=True, - inputStyle={'marginRight': '5px'} - ) - ], style={'marginTop': '15px', 'marginBottom': '5px'}), - ], style={'width': '20%', 'display': 'inline-block', 'margin': '5px'}), - # Main plot - html.Div([ - dcc.Graph( - id='histogram-plot', - style={'height': '700px'} - ), - ], style={'width': '50%', 'display': 'inline-block', 'verticalAlign': 'top'}), - - # Custom legend - html.Div([ - html.H3("Series"), - html.Div(id='custom-legend', style={ - 'overflowY': 'auto', - 'maxHeight': '600px' - }) - ], style={'width': '20%', 'display': 'inline-block', 'verticalAlign': 'top'}), - - ]), - - # Info panel (hidden by default) - html.Div(id='series-info-panel', style=info_panel_style), - - # Color picker panel (hidden by default) - html.Div([ - html.H3("Select Color"), +app.layout = html.Div( + [ + html.H1("Interactive Histogram Visualization"), + # Control panel for column selection html.Div( - [html.Button( - style={'backgroundColor': color, 'width': '30px', 'height': '30px', 'margin': '5px'}, - id={'type': 'color-option', 'index': i} - ) for i, color in enumerate(COLORS)], - style={'display': 'grid', 'gridTemplateColumns': 'repeat(5, 1fr)', 'gap': '5px'} + [ + html.Div( + [ + html.H3("Select Columns for Histograms"), + dcc.Dropdown( + id="histogram-columns", + options=[ + {"label": col, "value": col} + for col in df.columns + if col != "Category" + ], + value=[], + multi=True, + style=dropdown_style, + ), + ], + style={"width": "45%", "display": "inline-block", "margin": "5px"}, + ), + ] ), - html.Button("Close", id='close-color-picker', style={'marginTop': '10px'}) - ], id='color-picker-panel', style=color_picker_style), - - # Store components - dcc.Store(id='series-colors'), - dcc.Store(id='series-data'), - dcc.Store(id='active-series'), - dcc.Store(id='bins-settings'), - dcc.Store(id='global-bins-active', data=True), # True by default# Add this to your layout -dcc.Interval(id='interval-component', interval=60*1000, n_intervals=0) # Just a trigger -]) + # Graph and custom legend + html.Div( + [ + html.Div( + [ + html.H3("Histogram Settings"), + dcc.Checklist( + id="histogram-settings", + options=[ + {"label": " Show KDE (density curve)", "value": "kde"}, + { + "label": " Normalize histograms", + "value": "normalize", + }, + {"label": " Show rug plot", "value": "rug"}, + ], + value=["kde"], + style={"display": "block", "gap": "10px"}, + inputStyle={"marginRight": "5px"}, + labelStyle={"display": "block", "marginBottom": "10px"}, + ), + html.Div( + [ + html.Label("Global Number of Bins:"), + dcc.Slider( + id="bins-slider", + min=MIN_BINS, + max=100, + step=1, + value=20, + marks={i: str(i) for i in [1, 20, 40, 60, 80, 100]}, + ), + ], + style={"marginTop": "15px"}, + ), + html.Div( + [ + html.Label( + "Lock all bins to global setting:", + style={ + "display": "inline-block", + "marginRight": "10px", + }, + ), + dcc.Checklist( + id="global-bins-toggle", + options=[{"label": "", "value": "enabled"}], + value=["enabled"], # Enabled by default + inline=True, + inputStyle={"marginRight": "5px"}, + ), + ], + style={"marginTop": "15px", "marginBottom": "5px"}, + ), + ], + style={"width": "20%", "display": "inline-block", "margin": "5px"}, + ), + # Main plot + html.Div( + [ + dcc.Graph(id="histogram-plot", style={"height": "700px"}), + ], + style={ + "width": "50%", + "display": "inline-block", + "verticalAlign": "top", + }, + ), + # Custom legend + html.Div( + [ + html.H3("Series"), + html.Div( + id="custom-legend", + style={"overflowY": "auto", "maxHeight": "600px"}, + ), + ], + style={ + "width": "20%", + "display": "inline-block", + "verticalAlign": "top", + }, + ), + ] + ), + # Info panel (hidden by default) + html.Div(id="series-info-panel", style=info_panel_style), + # Color picker panel (hidden by default) + html.Div( + [ + html.H3("Select Color"), + html.Div( + [ + html.Button( + style={ + "backgroundColor": color, + "width": "30px", + "height": "30px", + "margin": "5px", + }, + id={"type": "color-option", "index": i}, + ) + for i, color in enumerate(COLORS) + ], + style={ + "display": "grid", + "gridTemplateColumns": "repeat(5, 1fr)", + "gap": "5px", + }, + ), + html.Button( + "Close", id="close-color-picker", style={"marginTop": "10px"} + ), + ], + id="color-picker-panel", + style=color_picker_style, + ), + # Store components + dcc.Store(id="series-colors"), + dcc.Store(id="series-data"), + dcc.Store(id="active-series"), + dcc.Store(id="bins-settings"), + dcc.Store( + id="global-bins-active", data=True + ), # True by default# Add this to your layout + dcc.Interval( + id="interval-component", interval=60 * 1000, n_intervals=0 + ), # Just a trigger + ] +) + # Update whether global bins control is active based on toggle @app.callback( - Output('global-bins-active', 'data'), - [Input('global-bins-toggle', 'value')] + Output("global-bins-active", "data"), [Input("global-bins-toggle", "value")] ) def update_global_bins_state(toggle_value): """Update whether global bins control is active based on toggle.""" - return 'enabled' in toggle_value if toggle_value else False + return "enabled" in toggle_value if toggle_value else False + # # Initialize series-colors and statistics when columns are selected # @app.callback( @@ -232,161 +316,184 @@ def update_global_bins_state(toggle_value): # color_data = existing_colors or {} # series_stats = {} # bins_settings = bins_settings or {} - + # if not selected_cols: # return color_data, series_stats - + # for col in selected_cols: # series_name = f'Histogram of {col}' - + # # Assign a color if not already assigned # if series_name not in color_data: # color_data[series_name] = COLORS[len(color_data) % len(COLORS)] - + # # Get bin count (default 20) # num_bins = bins_settings.get(series_name, 20) - + # # Calculate statistics with the current bin count # stats = calculate_histogram_statistics(df[col], num_bins) # series_stats[series_name] = stats - + # # Keep only the colors for selected columns -# color_data = {k: v for k, v in color_data.items() +# color_data = {k: v for k, v in color_data.items() # if any(f'Histogram of {x}' == k for x in selected_cols)} - + # return color_data, series_stats # Update custom legend with bin controls @app.callback( - Output('custom-legend', 'children'), - [Input('histogram-columns', 'value'), - Input('series-colors', 'data'), - Input('bins-settings', 'data')] + Output("custom-legend", "children"), + [ + Input("histogram-columns", "value"), + Input("series-colors", "data"), + Input("bins-settings", "data"), + ], ) def update_legend_with_bin_controls(selected_cols, color_data, bins_settings): """Update custom legend with interactive elements including bin controls.""" legend_items = [] bins_settings = bins_settings or {} - + if not selected_cols or not color_data: return legend_items - + for col in selected_cols: - series_name = f'Histogram of {col}' + series_name = f"Histogram of {col}" color = color_data.get(series_name, COLORS[0]) - + # Get bin count for this series (default: 20 bins) bin_count = bins_settings.get(series_name, 20) - - legend_items.append(html.Div([ - # Color button - html.Button( - style={ - 'backgroundColor': color, - 'width': '20px', - 'height': '20px', - 'marginRight': '10px', - 'verticalAlign': 'middle', - 'cursor': 'pointer', - 'border': '1px solid #ddd' + + legend_items.append( + html.Div( + [ + # Color button + html.Button( + style={ + "backgroundColor": color, + "width": "20px", + "height": "20px", + "marginRight": "10px", + "verticalAlign": "middle", + "cursor": "pointer", + "border": "1px solid #ddd", + }, + id={"type": "color-button", "index": series_name}, + ), + # Series name + html.Span( + series_name, + style={ + "cursor": "default", + "userSelect": "none", + "display": "inline-block", + "marginRight": "10px", + }, + ), + # Bin control + html.Div( + [ + html.Label( + "Bins:", + style={"fontSize": "11px", "marginRight": "5px"}, + ), + dcc.Input( + id={"type": "bin-input", "index": series_name}, + type="number", + min=5, + max=100, + step=1, + value=bin_count, + style={"width": "50px", "fontSize": "11px"}, + debounce=False, # Process changes immediately + persistence=True, # Remember values + ), + ], + style={"display": "inline-block"}, + ), + ], + className="legend-item", + id={"type": "legend-item", "index": series_name}, + **{ + "data-series": series_name, + "style": { + "margin": "10px", + "padding": "5px", + "borderRadius": "3px", + "display": "flex", + "alignItems": "center", + }, }, - id={'type': 'color-button', 'index': series_name} - ), - # Series name - html.Span( - series_name, - style={ - 'cursor': 'default', - 'userSelect': 'none', - 'display': 'inline-block', - 'marginRight': '10px' - } - ), - # Bin control - html.Div([ - html.Label("Bins:", style={'fontSize': '11px', 'marginRight': '5px'}), - dcc.Input( - id={'type': 'bin-input', 'index': series_name}, - type="number", - min=5, - max=100, - step=1, - value=bin_count, - style={'width': '50px', 'fontSize': '11px'}, - debounce=False, # Process changes immediately - persistence=True # Remember values - ) - ], style={'display': 'inline-block'}) - ], - className='legend-item', - id={'type': 'legend-item', 'index': series_name}, - **{ - 'data-series': series_name, - 'style': { - 'margin': '10px', - 'padding': '5px', - 'borderRadius': '3px', - 'display': 'flex', - 'alignItems': 'center' - } - })) - + ) + ) + return legend_items + @app.callback( - [Output('color-picker-panel', 'style'), - Output('active-series', 'data')], - [Input({'type': 'color-button', 'index': ALL}, 'n_clicks'), - Input('close-color-picker', 'n_clicks')], - [State({'type': 'color-button', 'index': ALL}, 'id'), - State('color-picker-panel', 'style')] + [Output("color-picker-panel", "style"), Output("active-series", "data")], + [ + Input({"type": "color-button", "index": ALL}, "n_clicks"), + Input("close-color-picker", "n_clicks"), + ], + [ + State({"type": "color-button", "index": ALL}, "id"), + State("color-picker-panel", "style"), + ], ) def toggle_color_picker(button_clicks, close_clicks, button_ids, current_style): """Show/hide color picker when clicking color buttons.""" ctx = dash.callback_context if not ctx.triggered: - return dict(current_style, display='none'), None - - triggered_id = ctx.triggered[0]['prop_id'] - + return dict(current_style, display="none"), None + + triggered_id = ctx.triggered[0]["prop_id"] + # Close on close button click - if 'close-color-picker' in triggered_id: + if "close-color-picker" in triggered_id: debug_log("Closing color picker") - return dict(current_style, display='none'), None - + return dict(current_style, display="none"), None + # Open on color button click - if 'color-button' in triggered_id and button_clicks and any(button_clicks): + if "color-button" in triggered_id and button_clicks and any(button_clicks): try: # Find which button was clicked - button_idx = next((i for i, clicks in enumerate(button_clicks) if clicks), None) + button_idx = next( + (i for i, clicks in enumerate(button_clicks) if clicks), None + ) if button_idx is not None: - series_name = button_ids[button_idx]['index'] + series_name = button_ids[button_idx]["index"] debug_log(f"Opening color picker for {series_name}") - return dict(current_style, display='block'), series_name + return dict(current_style, display="block"), series_name except Exception as e: debug_log(f"Error in toggle_color_picker: {e}") - - return dict(current_style, display='none'), None + + return dict(current_style, display="none"), None + @app.callback( - Output('series-colors', 'data', allow_duplicate=True), - [Input({'type': 'color-option', 'index': ALL}, 'n_clicks')], - [State({'type': 'color-option', 'index': ALL}, 'id'), - State('active-series', 'data'), - State('series-colors', 'data')], - prevent_initial_call=True + Output("series-colors", "data", allow_duplicate=True), + [Input({"type": "color-option", "index": ALL}, "n_clicks")], + [ + State({"type": "color-option", "index": ALL}, "id"), + State("active-series", "data"), + State("series-colors", "data"), + ], + prevent_initial_call=True, ) def update_series_color(color_clicks, color_ids, active_series, current_colors): """Update color when selecting from color picker.""" ctx = dash.callback_context if not ctx.triggered or not active_series or not current_colors: return dash.no_update - - triggered_id = ctx.triggered[0]['prop_id'] - if 'color-option' not in triggered_id or not any(click for click in color_clicks if click): + + triggered_id = ctx.triggered[0]["prop_id"] + if "color-option" not in triggered_id or not any( + click for click in color_clicks if click + ): return dash.no_update - + try: # Find which color was clicked color_idx = next((i for i, clicks in enumerate(color_clicks) if clicks), None) @@ -396,117 +503,130 @@ def update_series_color(color_clicks, color_ids, active_series, current_colors): return current_colors except Exception as e: debug_log(f"Error in update_series_color: {e}") - + return dash.no_update + @app.callback( - [Output('color-picker-panel', 'style', allow_duplicate=True), - Output('active-series', 'data', allow_duplicate=True)], - [Input({'type': 'color-option', 'index': ALL}, 'n_clicks')], - [State('color-picker-panel', 'style')], - prevent_initial_call=True + [ + Output("color-picker-panel", "style", allow_duplicate=True), + Output("active-series", "data", allow_duplicate=True), + ], + [Input({"type": "color-option", "index": ALL}, "n_clicks")], + [State("color-picker-panel", "style")], + prevent_initial_call=True, ) def close_color_picker_after_selection(color_clicks, current_style): """Close the color picker after a color is selected.""" if any(click for click in color_clicks if click): - return dict(current_style, display='none'), None + return dict(current_style, display="none"), None return dash.no_update, dash.no_update + @app.callback( - Output('histogram-plot', 'figure'), - [Input('histogram-columns', 'value'), - Input('histogram-settings', 'value'), - Input('series-colors', 'data'), - Input('bins-settings', 'data')] + Output("histogram-plot", "figure"), + [ + Input("histogram-columns", "value"), + Input("histogram-settings", "value"), + Input("series-colors", "data"), + Input("bins-settings", "data"), + ], ) def update_histogram(selected_cols, settings, color_data, bins_settings): """Update the histogram based on selected columns and settings.""" debug_log("Updating histogram plot") fig = go.Figure() - + if not selected_cols or not color_data: fig.add_annotation( text="Please select columns for the histogram", - xref="paper", yref="paper", - x=0.5, y=0.5, showarrow=False + xref="paper", + yref="paper", + x=0.5, + y=0.5, + showarrow=False, ) return fig - - normalize = 'normalize' in settings - show_kde = 'kde' in settings - show_rug = 'rug' in settings + + normalize = "normalize" in settings + show_kde = "kde" in settings + show_rug = "rug" in settings bins_settings = bins_settings or {} - + for col in selected_cols: - series_name = f'Histogram of {col}' + series_name = f"Histogram of {col}" color = color_data.get(series_name) if not color: # Skip if no color assigned continue - + # Get bins setting for this series (default: 20) num_bins = bins_settings.get(series_name, 20) - + # Clean the data data = df[col].dropna() - + # Add histogram with precisely num_bins bins - histnorm = 'probability' if normalize else None - + histnorm = "probability" if normalize else None + # Calculate bin range directly min_val, max_val = min(data), max(data) bin_width = (max_val - min_val) / num_bins if max_val > min_val else 1 - + # Use xbins to control exactly how many bins are displayed - fig.add_trace(go.Histogram( - x=data, - name=series_name, - histnorm=histnorm, - marker_color=color, - opacity=0.7, - showlegend=False, - xbins=dict( - start=min_val, - end=max_val, - size=bin_width - ), - autobinx=False # Disable autobinning - )) - + fig.add_trace( + go.Histogram( + x=data, + name=series_name, + histnorm=histnorm, + marker_color=color, + opacity=0.7, + showlegend=False, + xbins=dict(start=min_val, end=max_val, size=bin_width), + autobinx=False, # Disable autobinning + ) + ) + # Add KDE if requested if show_kde and len(data) > 1: try: # Calculate KDE values from scipy import stats as scipy_stats - + # Make sure we have enough unique values for KDE if len(np.unique(data)) > 5: kde = scipy_stats.gaussian_kde(data) x_range = np.linspace(min(data), max(data), 200) y_range = kde(x_range) - + # Scale KDE to match histogram height if normalize: # Scale for normalized histogram - y_range = y_range / np.trapz(y_range, x_range) + y_range = y_range / np.trapz(y_range, x_range) else: # Scale for count histogram hist, edges = np.histogram(data, bins=num_bins) max_hist_height = np.max(hist) max_kde_height = np.max(y_range) - scale_factor = max_hist_height / max_kde_height if max_kde_height > 0 else 1 + scale_factor = ( + max_hist_height / max_kde_height + if max_kde_height > 0 + else 1 + ) y_range = y_range * scale_factor - - fig.add_trace(go.Scatter( - x=x_range, - y=y_range, - mode='lines', - name=f'KDE of {col}', - line=dict(color=color, width=2), - showlegend=False - )) + + fig.add_trace( + go.Scatter( + x=x_range, + y=y_range, + mode="lines", + name=f"KDE of {col}", + line=dict(color=color, width=2), + showlegend=False, + ) + ) except Exception as e: debug_log(f"Error computing KDE: {e}") - + # Add rug plot if requested if show_rug: try: @@ -515,55 +635,55 @@ def update_histogram(selected_cols, settings, color_data, bins_settings): if normalize: # Position below x-axis for normalized histogram min_y = -0.02 - - fig.add_trace(go.Scatter( - x=data, - y=[min_y] * len(data), - mode='markers', - marker=dict( - symbol='line-ns', - size=10, - color=color, - opacity=0.5 - ), - showlegend=False, - hoverinfo='x' - )) + + fig.add_trace( + go.Scatter( + x=data, + y=[min_y] * len(data), + mode="markers", + marker=dict( + symbol="line-ns", size=10, color=color, opacity=0.5 + ), + showlegend=False, + hoverinfo="x", + ) + ) except Exception as e: debug_log(f"Error adding rug plot: {e}") - + # Display histograms using overlay mode fig.update_layout( - barmode='overlay', - title='Interactive Histogram Visualization', - plot_bgcolor='white', - paper_bgcolor='white', + barmode="overlay", + title="Interactive Histogram Visualization", + plot_bgcolor="white", + paper_bgcolor="white", showlegend=False, # Using custom legend xaxis=dict( - title='Value', + title="Value", showgrid=True, gridwidth=1, - gridcolor='LightGray', + gridcolor="LightGray", zeroline=True, zerolinewidth=2, - zerolinecolor='LightGray' + zerolinecolor="LightGray", ), yaxis=dict( - title='Frequency' if not normalize else 'Probability', + title="Frequency" if not normalize else "Probability", showgrid=True, gridwidth=1, - gridcolor='LightGray', + gridcolor="LightGray", zeroline=True, zerolinewidth=2, - zerolinecolor='LightGray' + zerolinecolor="LightGray", ), height=700, - margin=dict(t=50, b=50, l=50, r=50) + margin=dict(t=50, b=50, l=50, r=50), ) - + debug_log("Histogram plot updated") return fig + app.clientside_callback( """ function(children, series_data) { @@ -673,9 +793,8 @@ def update_histogram(selected_cols, settings, color_data, bins_settings): return window.dash_clientside.no_update; } """, - Output('custom-legend', 'data-update'), - [Input('custom-legend', 'children'), - Input('series-data', 'data')] + Output("custom-legend", "data-update"), + [Input("custom-legend", "children"), Input("series-data", "data")], ) # # Remove the existing update_bin_settings callback and replace with this: # @app.callback( @@ -689,114 +808,126 @@ def update_histogram(selected_cols, settings, color_data, bins_settings): # ctx = dash.callback_context # if not ctx.triggered: # return current_stats or {} - + # if not selected_cols: # return current_stats or {} - + # bins_settings = bins_settings or {} # stats = current_stats or {} - + # # Update statistics for all selected columns with current bin settings # for col in selected_cols: # series_name = f'Histogram of {col}' # num_bins = bins_settings.get(series_name, 20) # Default to 20 bins # updated_stats = calculate_histogram_statistics(df[col], num_bins) # stats[series_name] = updated_stats - + # # Remove stats for unselected columns # for series_name in list(stats.keys()): # if not any(f'Histogram of {col}' == series_name for col in selected_cols): # del stats[series_name] - + # return stats # Replace the existing initialize_series_data callback with this one: + @app.callback( - [Output('series-colors', 'data'), - Output('series-data', 'data')], - [Input('histogram-columns', 'value'), - Input('bins-settings', 'data')], - [State('series-colors', 'data')] + [Output("series-colors", "data"), Output("series-data", "data")], + [Input("histogram-columns", "value"), Input("bins-settings", "data")], + [State("series-colors", "data")], ) def initialize_and_update_series_data(selected_cols, bins_settings, existing_colors): """Initialize color data and update statistics for selected columns.""" ctx = dash.callback_context - debug_log(f"Series data update triggered by: {ctx.triggered[0]['prop_id'] if ctx.triggered else 'none'}") - + debug_log( + f"Series data update triggered by: {ctx.triggered[0]['prop_id'] if ctx.triggered else 'none'}" + ) + color_data = existing_colors or {} series_stats = {} bins_settings = bins_settings or {} - + if not selected_cols: return color_data, series_stats - + for col in selected_cols: - series_name = f'Histogram of {col}' - + series_name = f"Histogram of {col}" + # Assign a color if not already assigned if series_name not in color_data: color_data[series_name] = COLORS[len(color_data) % len(COLORS)] - + # Get bin count (default 20) num_bins = bins_settings.get(series_name, 20) - + # Calculate statistics with the current bin count stats = calculate_histogram_statistics(df[col], num_bins) series_stats[series_name] = stats - + # Keep only the colors for selected columns - color_data = {k: v for k, v in color_data.items() - if any(f'Histogram of {x}' == k for x in selected_cols)} - + color_data = { + k: v + for k, v in color_data.items() + if any(f"Histogram of {x}" == k for x in selected_cols) + } + return color_data, series_stats + + @app.callback( - Output('bins-settings', 'data'), - [Input({'type': 'bin-input', 'index': ALL}, 'value'), - Input('bins-slider', 'value'), - Input('histogram-columns', 'value')], - [State({'type': 'bin-input', 'index': ALL}, 'id'), - State('bins-settings', 'data'), - State('global-bins-active', 'data')] + Output("bins-settings", "data"), + [ + Input({"type": "bin-input", "index": ALL}, "value"), + Input("bins-slider", "value"), + Input("histogram-columns", "value"), + ], + [ + State({"type": "bin-input", "index": ALL}, "id"), + State("bins-settings", "data"), + State("global-bins-active", "data"), + ], ) -def update_all_bin_settings(bin_values, slider_value, selected_cols, bin_ids, current_settings, global_active): +def update_all_bin_settings( + bin_values, slider_value, selected_cols, bin_ids, current_settings, global_active +): """Master callback that handles ALL bin settings updates.""" ctx = dash.callback_context if not ctx.triggered: return current_settings or {} - + settings = current_settings or {} - triggered_id = ctx.triggered[0]['prop_id'] - + triggered_id = ctx.triggered[0]["prop_id"] + debug_log(f"Bin settings update triggered by: {triggered_id}") - + # When columns change, initialize bin settings for new columns - if 'histogram-columns.value' in triggered_id: + if "histogram-columns.value" in triggered_id: if selected_cols: for col in selected_cols: - series_name = f'Histogram of {col}' + series_name = f"Histogram of {col}" # Only set if not already set if series_name not in settings: settings[series_name] = slider_value - + # Clean up any series that are no longer selected to_remove = [] for series_name in settings: - if not any(f'Histogram of {col}' == series_name for col in selected_cols): + if not any(f"Histogram of {col}" == series_name for col in selected_cols): to_remove.append(series_name) - + for series_name in to_remove: del settings[series_name] - + # Handle global slider update - elif 'bins-slider.value' in triggered_id and global_active: + elif "bins-slider.value" in triggered_id and global_active: if selected_cols: for col in selected_cols: - series_name = f'Histogram of {col}' + series_name = f"Histogram of {col}" settings[series_name] = slider_value debug_log(f"Updated all bins to {slider_value} from global slider") - + # Handle individual bin input updates - elif 'bin-input' in triggered_id: + elif "bin-input" in triggered_id: for i, value in enumerate(bin_values): if value is not None: try: @@ -808,17 +939,19 @@ def update_all_bin_settings(bin_values, slider_value, selected_cols, bin_ids, cu continue else: num_value = int(value) - + if num_value >= MIN_BINS: - series_name = bin_ids[i]['index'] + series_name = bin_ids[i]["index"] settings[series_name] = num_value debug_log(f"Updated bin for {series_name} to {num_value}") - + except (ValueError, TypeError) as e: debug_log(f"Error converting bin value: {e}") pass - + return settings + + # Add this clientside callback to handle both typing and arrow clicks app.clientside_callback( """ @@ -867,9 +1000,9 @@ def update_all_bin_settings(bin_values, slider_value, selected_cols, bin_ids, cu return window.dash_clientside.no_update; } """, - Output('custom-legend', 'data-update', allow_duplicate=True), - [Input('bins-settings', 'data')], - prevent_initial_call=True + Output("custom-legend", "data-update", allow_duplicate=True), + [Input("bins-settings", "data")], + prevent_initial_call=True, ) # Add this to monitor and update from the clientside app.clientside_callback( @@ -896,10 +1029,10 @@ def update_all_bin_settings(bin_values, slider_value, selected_cols, bin_ids, cu return window.dash_clientside.no_update; } """, - Output('custom-legend', 'data-update', allow_duplicate=True), - [Input('interval-component', 'n_intervals')], - prevent_initial_call=True + Output("custom-legend", "data-update", allow_duplicate=True), + [Input("interval-component", "n_intervals")], + prevent_initial_call=True, ) # Run the app -if __name__ == '__main__': - app.run_server(debug=True, port=8051) \ No newline at end of file +if __name__ == "__main__": + app.run_server(debug=True, port=8051) diff --git a/plotly_examples/sensitivity_1.py b/plotly_examples/sensitivity_1.py index a4a509a..63e6815 100644 --- a/plotly_examples/sensitivity_1.py +++ b/plotly_examples/sensitivity_1.py @@ -1,13 +1,12 @@ """Interactive multi-column scatter plot interface with statistics.""" + import dash from dash import dcc, html -from dash.dependencies import Input, Output, State, MATCH, ALL +from dash.dependencies import Input, Output, State, ALL import plotly.graph_objects as go -import plotly.express as px import pandas as pd import numpy as np -from scipy import stats -from typing import Dict, Any +from typing import Any # # Debug Configuration # PYTHON_DEBUG = True # Controls Python-side logging @@ -20,26 +19,28 @@ # Debug Configuration PYTHON_DEBUG = True + def debug_log(message: str) -> None: """Python-side debug logging.""" if PYTHON_DEBUG: print(f"[PY] {message}") -def calculate_statistics(series1: pd.Series, series2: pd.Series) -> Dict[str, Any]: + +def calculate_statistics(series1: pd.Series, series2: pd.Series) -> dict[str, Any]: """Calculate statistics for a pair of series.""" try: # Drop NA values that exist in either series mask = ~(series1.isna() | series2.isna()) clean_s1 = series1[mask] clean_s2 = series2[mask] - + if len(clean_s1) < 2: # Need at least 2 points for most statistics return { "correlation": "N/A", "samples": len(clean_s1), "missing": len(series1) - len(clean_s1), "x_mean": f"{clean_s1.mean():.3f}" if len(clean_s1) > 0 else "N/A", - "y_mean": f"{clean_s2.mean():.3f}" if len(clean_s2) > 0 else "N/A" + "y_mean": f"{clean_s2.mean():.3f}" if len(clean_s2) > 0 else "N/A", } stats_dict = { @@ -49,35 +50,40 @@ def calculate_statistics(series1: pd.Series, series2: pd.Series) -> Dict[str, An "x_mean": f"{clean_s1.mean():.3f}", "y_mean": f"{clean_s2.mean():.3f}", "x_std": f"{clean_s1.std():.3f}", - "y_std": f"{clean_s2.std():.3f}" + "y_std": f"{clean_s2.std():.3f}", } - + # Calculate linear regression slope, intercept = np.polyfit(clean_s1, clean_s2, 1) stats_dict["regression"] = f"y = {slope:.3f}x + {intercept:.3f}" - + return stats_dict except Exception as e: if PYTHON_DEBUG: print(f"[PY] Error calculating statistics: {e}") return {"error": str(e)} + # Create sample data -df1 = pd.DataFrame({ - 'A': np.random.randn(100), - 'B': np.random.randn(100), - 'C': np.random.randn(100), - 'D': np.random.randn(100), - 'Category': np.random.choice(['X', 'Y', 'Z'], 100) -}) - -df2 = pd.DataFrame({ - 'W': np.random.randn(100), - 'X': np.random.randn(100), - 'Y': np.random.randn(100), - 'Z': np.random.randn(100), - 'Group': np.random.choice(['P', 'Q', 'R'], 100) -}) +df1 = pd.DataFrame( + { + "A": np.random.randn(100), + "B": np.random.randn(100), + "C": np.random.randn(100), + "D": np.random.randn(100), + "Category": np.random.choice(["X", "Y", "Z"], 100), + } +) + +df2 = pd.DataFrame( + { + "W": np.random.randn(100), + "X": np.random.randn(100), + "Y": np.random.randn(100), + "Z": np.random.randn(100), + "Group": np.random.choice(["P", "Q", "R"], 100), + } +) # # Initialize the Dash app # app = dash.Dash(__name__) @@ -86,43 +92,59 @@ def calculate_statistics(series1: pd.Series, series2: pd.Series) -> Dict[str, An # Styles with debug-friendly positioning dropdown_style = { - 'width': '100%', - 'marginBottom': '20px', - 'zIndex': 999, + "width": "100%", + "marginBottom": "20px", + "zIndex": 999, } info_panel_style = { - 'position': 'fixed', # Fixed positioning for hover panel - 'backgroundColor': 'white', - 'padding': '15px', - 'borderRadius': '5px', - 'boxShadow': '0 0 10px rgba(0,0,0,0.3)', - 'zIndex': 1000, - 'display': 'none', - 'minWidth': '200px', - 'maxWidth': '300px', - 'fontSize': '12px' + "position": "fixed", # Fixed positioning for hover panel + "backgroundColor": "white", + "padding": "15px", + "borderRadius": "5px", + "boxShadow": "0 0 10px rgba(0,0,0,0.3)", + "zIndex": 1000, + "display": "none", + "minWidth": "200px", + "maxWidth": "300px", + "fontSize": "12px", } color_picker_style = { - 'position': 'fixed', - 'top': '50%', - 'left': '50%', - 'transform': 'translate(-50%, -50%)', - 'backgroundColor': 'white', - 'padding': '20px', - 'borderRadius': '5px', - 'boxShadow': '0 0 10px rgba(0,0,0,0.3)', - 'zIndex': 1001, - 'display': 'none' + "position": "fixed", + "top": "50%", + "left": "50%", + "transform": "translate(-50%, -50%)", + "backgroundColor": "white", + "padding": "20px", + "borderRadius": "5px", + "boxShadow": "0 0 10px rgba(0,0,0,0.3)", + "zIndex": 1001, + "display": "none", } # Available colors COLORS = [ - '#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', - '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf', - '#aec7e8', '#ffbb78', '#98df8a', '#ff9896', '#c5b0d5', - '#c49c94', '#f7b6d2', '#c7c7c7', '#dbdb8d', '#9edae5' + "#1f77b4", + "#ff7f0e", + "#2ca02c", + "#d62728", + "#9467bd", + "#8c564b", + "#e377c2", + "#7f7f7f", + "#bcbd22", + "#17becf", + "#aec7e8", + "#ffbb78", + "#98df8a", + "#ff9896", + "#c5b0d5", + "#c49c94", + "#f7b6d2", + "#c7c7c7", + "#dbdb8d", + "#9edae5", ] # JavaScript code for hover handling @@ -204,111 +226,158 @@ def calculate_statistics(series1: pd.Series, series2: pd.Series) -> Dict[str, An """ # Define the layout -app.layout = html.Div([ - html.H1("DataFrame Column Comparison"), - - # Add the hover handling script - html.Script(hover_script), - - # Control panel for column selection - html.Div([ - html.Div([ - html.H3("Select X-axis Columns (DataFrame 1)"), - dcc.Dropdown( - id='df1-columns', - options=[{'label': col, 'value': col} for col in df1.columns if col != 'Category'], - value=[], - multi=True, - style=dropdown_style - ), - ], style={'width': '45%', 'display': 'inline-block', 'margin': '5px'}), - - html.Div([ - html.H3("Select Y-axis Columns (DataFrame 2)"), - dcc.Dropdown( - id='df2-columns', - options=[{'label': col, 'value': col} for col in df2.columns if col != 'Group'], - value=[], - multi=True, - style=dropdown_style - ), - ], style={'width': '45%', 'display': 'inline-block', 'margin': '5px'}), - ]), - - # Plot settings - # html.Div([ - # html.H3("Plot Settings", style={'marginBottom': '5px'}), - # dcc.Checklist( - # id='plot-settings', - # options=[ - # {'label': ' Show trend lines', 'value': 'trend'}, - # {'label': ' Show point labels', 'value': 'labels'} - # ], - # value=['trend'], - # style={'display': 'flex', 'gap': '20px'}, - # inputStyle={'marginRight': '5px'}, - # labelStyle={'display': 'flex', 'alignItems': 'center'} - # ) - # ], style={'margin': '10px'}), - - # Graph and custom legend - html.Div([ +app.layout = html.Div( + [ + html.H1("DataFrame Column Comparison"), + # Add the hover handling script + html.Script(hover_script), + # Control panel for column selection + html.Div( + [ + html.Div( + [ + html.H3("Select X-axis Columns (DataFrame 1)"), + dcc.Dropdown( + id="df1-columns", + options=[ + {"label": col, "value": col} + for col in df1.columns + if col != "Category" + ], + value=[], + multi=True, + style=dropdown_style, + ), + ], + style={"width": "45%", "display": "inline-block", "margin": "5px"}, + ), + html.Div( + [ + html.H3("Select Y-axis Columns (DataFrame 2)"), + dcc.Dropdown( + id="df2-columns", + options=[ + {"label": col, "value": col} + for col in df2.columns + if col != "Group" + ], + value=[], + multi=True, + style=dropdown_style, + ), + ], + style={"width": "45%", "display": "inline-block", "margin": "5px"}, + ), + ] + ), # Plot settings - html.Div([ - html.H3("Plot Settings", style={'marginBottom': '5px'}), - dcc.Checklist( - id='plot-settings', - options=[ - {'label': ' Show trend lines', 'value': 'trend'}, - {'label': ' Show point labels', 'value': 'labels'} - ], - value=['trend'], - style={'display': 'block', 'gap': '10px'}, # Changed from 'flex' to 'block' - inputStyle={'marginRight': '5px'}, - labelStyle={'display': 'block', 'marginBottom': '10px'} # Added marginBottom and changed to block - ) - ], style={'width': '10%', 'display': 'inline-block', 'verticalAlign': 'top'}), - - # Main plot - html.Div([ - dcc.Graph( - id='scatter-plot', - style={'height': '700px'} - ), - ], style={'width': '70%', 'display': 'inline-block'}), - - # Custom legend - html.Div([ - html.H3("Series"), - html.Div(id='custom-legend', style={ - 'overflowY': 'auto', - 'maxHeight': '600px' - }) - ], style={'width': '20%', 'display': 'inline-block', 'verticalAlign': 'top'}), - - ]), - - # Info panel (hidden by default) - html.Div(id='series-info-panel', style=info_panel_style), - - # Color picker panel (hidden by default) - html.Div([ - html.H3("Select Color"), + # html.Div([ + # html.H3("Plot Settings", style={'marginBottom': '5px'}), + # dcc.Checklist( + # id='plot-settings', + # options=[ + # {'label': ' Show trend lines', 'value': 'trend'}, + # {'label': ' Show point labels', 'value': 'labels'} + # ], + # value=['trend'], + # style={'display': 'flex', 'gap': '20px'}, + # inputStyle={'marginRight': '5px'}, + # labelStyle={'display': 'flex', 'alignItems': 'center'} + # ) + # ], style={'margin': '10px'}), + # Graph and custom legend html.Div( - [html.Button( - style={'backgroundColor': color, 'width': '30px', 'height': '30px', 'margin': '5px'}, - id={'type': 'color-option', 'index': i} - ) for i, color in enumerate(COLORS)], - style={'display': 'grid', 'gridTemplateColumns': 'repeat(5, 1fr)', 'gap': '5px'} + [ + # Plot settings + html.Div( + [ + html.H3("Plot Settings", style={"marginBottom": "5px"}), + dcc.Checklist( + id="plot-settings", + options=[ + {"label": " Show trend lines", "value": "trend"}, + {"label": " Show point labels", "value": "labels"}, + ], + value=["trend"], + style={ + "display": "block", + "gap": "10px", + }, # Changed from 'flex' to 'block' + inputStyle={"marginRight": "5px"}, + labelStyle={ + "display": "block", + "marginBottom": "10px", + }, # Added marginBottom and changed to block + ), + ], + style={ + "width": "10%", + "display": "inline-block", + "verticalAlign": "top", + }, + ), + # Main plot + html.Div( + [ + dcc.Graph(id="scatter-plot", style={"height": "700px"}), + ], + style={"width": "70%", "display": "inline-block"}, + ), + # Custom legend + html.Div( + [ + html.H3("Series"), + html.Div( + id="custom-legend", + style={"overflowY": "auto", "maxHeight": "600px"}, + ), + ], + style={ + "width": "20%", + "display": "inline-block", + "verticalAlign": "top", + }, + ), + ] ), - html.Button("Close", id='close-color-picker', style={'marginTop': '10px'}) - ], id='color-picker-panel', style=color_picker_style), - - # Store components - dcc.Store(id='series-colors'), - dcc.Store(id='series-data'), - dcc.Store(id='active-series') -]) + # Info panel (hidden by default) + html.Div(id="series-info-panel", style=info_panel_style), + # Color picker panel (hidden by default) + html.Div( + [ + html.H3("Select Color"), + html.Div( + [ + html.Button( + style={ + "backgroundColor": color, + "width": "30px", + "height": "30px", + "margin": "5px", + }, + id={"type": "color-option", "index": i}, + ) + for i, color in enumerate(COLORS) + ], + style={ + "display": "grid", + "gridTemplateColumns": "repeat(5, 1fr)", + "gap": "5px", + }, + ), + html.Button( + "Close", id="close-color-picker", style={"marginTop": "10px"} + ), + ], + id="color-picker-panel", + style=color_picker_style, + ), + # Store components + dcc.Store(id="series-colors"), + dcc.Store(id="series-data"), + dcc.Store(id="active-series"), + ] +) app.clientside_callback( """ @@ -357,17 +426,19 @@ def calculate_statistics(series1: pd.Series, series2: pd.Series) -> Dict[str, An return window.dash_clientside.no_update; } """, - Output('custom-legend', 'data-update'), - Input('custom-legend', 'children') + Output("custom-legend", "data-update"), + Input("custom-legend", "children"), ) + @app.callback( - [Output('custom-legend', 'children'), - Output('series-colors', 'data'), - Output('series-data', 'data')], - [Input('df1-columns', 'value'), - Input('df2-columns', 'value')], - [State('series-colors', 'data')] + [ + Output("custom-legend", "children"), + Output("series-colors", "data"), + Output("series-data", "data"), + ], + [Input("df1-columns", "value"), Input("df2-columns", "value")], + [State("series-colors", "data")], ) def update_legend(df1_cols, df2_cols, existing_colors): """Update custom legend with interactive elements.""" @@ -375,106 +446,128 @@ def update_legend(df1_cols, df2_cols, existing_colors): legend_items = [] color_data = existing_colors or {} series_stats = {} - + if not df1_cols or not df2_cols: debug_log("No columns selected") return [], color_data, {} - + for x_col in df1_cols: for y_col in df2_cols: - series_name = f'{x_col} vs {y_col}' + series_name = f"{x_col} vs {y_col}" debug_log(f"Processing series: {series_name}") - + if series_name not in color_data: color_data[series_name] = COLORS[len(color_data) % len(COLORS)] - + color = color_data[series_name] stats = calculate_statistics(df1[x_col], df2[y_col]) series_stats[series_name] = stats - - legend_items.append(html.Div([ - html.Button( - style={ - 'backgroundColor': color, - 'width': '20px', - 'height': '20px', - 'marginRight': '10px', - 'verticalAlign': 'middle', - 'cursor': 'pointer', - 'border': '1px solid #ddd' + + legend_items.append( + html.Div( + [ + html.Button( + style={ + "backgroundColor": color, + "width": "20px", + "height": "20px", + "marginRight": "10px", + "verticalAlign": "middle", + "cursor": "pointer", + "border": "1px solid #ddd", + }, + id={"type": "color-button", "index": series_name}, + ), + html.Span( + series_name, + style={ + "cursor": "default", + "userSelect": "none", + "display": "inline-block", + }, + ), + ], + className="legend-item", + id={"type": "legend-item", "index": series_name}, + **{ + "data-series": series_name, + "style": { + "margin": "10px", + "padding": "5px", + "borderRadius": "3px", + }, }, - id={'type': 'color-button', 'index': series_name} - ), - html.Span( - series_name, - style={ - 'cursor': 'default', - 'userSelect': 'none', - 'display': 'inline-block' - } ) - ], - className='legend-item', - id={'type': 'legend-item', 'index': series_name}, - **{ - 'data-series': series_name, - 'style': { - 'margin': '10px', - 'padding': '5px', - 'borderRadius': '3px', - } - })) - - color_data = {k: v for k, v in color_data.items() - if any(x in k for x in df1_cols) and any(y in k for y in df2_cols)} - + ) + + color_data = { + k: v + for k, v in color_data.items() + if any(x in k for x in df1_cols) and any(y in k for y in df2_cols) + } + debug_log(f"Created {len(legend_items)} legend items") return legend_items, color_data, series_stats + @app.callback( - [Output('series-info-panel', 'children'), - Output('series-info-panel', 'style')], - [Input({'type': 'legend-item', 'index': ALL}, 'mouseenter'), - Input({'type': 'legend-item', 'index': ALL}, 'mouseleave')], - [State('series-data', 'data'), - State('series-info-panel', 'style')] + [Output("series-info-panel", "children"), Output("series-info-panel", "style")], + [ + Input({"type": "legend-item", "index": ALL}, "mouseenter"), + Input({"type": "legend-item", "index": ALL}, "mouseleave"), + ], + [State("series-data", "data"), State("series-info-panel", "style")], ) def update_info_panel(mouseenter, mouseleave, series_data, current_style): """Update the info panel content and visibility.""" if not dash.callback_context.triggered: return dash.no_update, dash.no_update - + trigger = dash.callback_context.triggered[0] - + # Handle mouseleave - if '.mouseleave' in trigger['prop_id']: - return dash.no_update, dict(current_style, display='none') - + if ".mouseleave" in trigger["prop_id"]: + return dash.no_update, dict(current_style, display="none") + # Handle mouseenter - if '.mouseenter' in trigger['prop_id']: + if ".mouseenter" in trigger["prop_id"]: try: - series_name = eval(trigger['prop_id'].split('.')[0])['index'] + series_name = eval(trigger["prop_id"].split(".")[0])["index"] stats = series_data.get(series_name, {}) - - content = html.Div([ - html.H4(f"Statistics: {series_name}", - style={'marginTop': 0, 'marginBottom': '10px'}), - html.Table([ - html.Tr([ - html.Td(k, style={'padding': '3px', 'fontWeight': 'bold'}), - html.Td(str(v), style={'padding': '3px'}) - ]) for k, v in stats.items() - ], style={'borderCollapse': 'collapse'}) - ]) - - return content, dict(current_style, display='block') - + + content = html.Div( + [ + html.H4( + f"Statistics: {series_name}", + style={"marginTop": 0, "marginBottom": "10px"}, + ), + html.Table( + [ + html.Tr( + [ + html.Td( + k, + style={"padding": "3px", "fontWeight": "bold"}, + ), + html.Td(str(v), style={"padding": "3px"}), + ] + ) + for k, v in stats.items() + ], + style={"borderCollapse": "collapse"}, + ), + ] + ) + + return content, dict(current_style, display="block") + except Exception as e: debug_log(f"Error updating info panel: {e}") return dash.no_update, dash.no_update - + return dash.no_update, dash.no_update + # @app.callback( # [Output('color-picker-panel', 'style'), # Output('active-series', 'data')], @@ -487,19 +580,19 @@ def update_info_panel(mouseenter, mouseleave, series_data, current_style): # ctx = dash.callback_context # if not ctx.triggered: # return dict(color_picker_style, display='none'), None - + # triggered_id = ctx.triggered[0]['prop_id'] - + # if 'close-color-picker' in triggered_id or not any(button_clicks): # debug_log("Closing color picker") # return dict(color_picker_style, display='none'), None - + # if 'color-button' in triggered_id: # button_idx = next(i for i, c in enumerate(button_clicks) if c) # series_name = button_ids[button_idx]['index'] # debug_log(f"Opening color picker for {series_name}") # return dict(color_picker_style, display='block'), series_name - + # return dict(color_picker_style, display='none'), None # @app.callback( @@ -515,219 +608,243 @@ def update_info_panel(mouseenter, mouseleave, series_data, current_style): # ctx = dash.callback_context # if not ctx.triggered or not active_series or not current_colors: # return dash.no_update - + # triggered_id = ctx.triggered[0]['prop_id'] # if 'color-option' not in triggered_id: # return dash.no_update - + # color_idx = eval(triggered_id.split('.')[0])['index'] # current_colors[active_series] = COLORS[color_idx] # debug_log(f"Updated color for {active_series}") # return current_colors + @app.callback( - Output('scatter-plot', 'figure'), - [Input('df1-columns', 'value'), - Input('df2-columns', 'value'), - Input('plot-settings', 'value'), - Input('series-colors', 'data')] + Output("scatter-plot", "figure"), + [ + Input("df1-columns", "value"), + Input("df2-columns", "value"), + Input("plot-settings", "value"), + Input("series-colors", "data"), + ], ) def update_graph(df1_cols, df2_cols, settings, color_data): """Update the scatter plot based on selected columns.""" debug_log("Updating scatter plot") fig = go.Figure() - + if not df1_cols or not df2_cols or not color_data: fig.add_annotation( text="Please select columns from both dataframes", - xref="paper", yref="paper", - x=0.5, y=0.5, showarrow=False + xref="paper", + yref="paper", + x=0.5, + y=0.5, + showarrow=False, ) return fig - + for x_col in df1_cols: for y_col in df2_cols: - series_name = f'{x_col} vs {y_col}' + series_name = f"{x_col} vs {y_col}" color = color_data.get(series_name) if not color: # Skip if no color assigned continue - + # Add scatter plot - fig.add_trace(go.Scatter( - x=df1[x_col], - y=df2[y_col], - mode='markers', - name=series_name, - marker=dict( - color=color, - size=8, - opacity=0.6 - ), - showlegend=False # Using custom legend instead - )) - + fig.add_trace( + go.Scatter( + x=df1[x_col], + y=df2[y_col], + mode="markers", + name=series_name, + marker=dict(color=color, size=8, opacity=0.6), + showlegend=False, # Using custom legend instead + ) + ) + # Add trend line if requested - if 'trend' in settings: + if "trend" in settings: mask = ~(df1[x_col].isna() | df2[y_col].isna()) x = df1[x_col][mask] y = df2[y_col][mask] if len(x) > 1: z = np.polyfit(x, y, 1) p = np.poly1d(z) - - fig.add_trace(go.Scatter( - x=[x.min(), x.max()], - y=[p(x.min()), p(x.max())], - mode='lines', - name=f'Trend: {series_name}', - line=dict(color=color, dash='dash'), - showlegend=False - )) - + + fig.add_trace( + go.Scatter( + x=[x.min(), x.max()], + y=[p(x.min()), p(x.max())], + mode="lines", + name=f"Trend: {series_name}", + line=dict(color=color, dash="dash"), + showlegend=False, + ) + ) + fig.update_layout( - title='Column Comparisons', - plot_bgcolor='white', - paper_bgcolor='white', + title="Column Comparisons", + plot_bgcolor="white", + paper_bgcolor="white", showlegend=False, # Using custom legend xaxis=dict( - title='DataFrame 1 Columns', + title="DataFrame 1 Columns", showgrid=True, gridwidth=1, - gridcolor='LightGray', + gridcolor="LightGray", zeroline=True, zerolinewidth=2, - zerolinecolor='LightGray' + zerolinecolor="LightGray", ), yaxis=dict( - title='DataFrame 2 Columns', + title="DataFrame 2 Columns", showgrid=True, gridwidth=1, - gridcolor='LightGray', + gridcolor="LightGray", zeroline=True, zerolinewidth=2, - zerolinecolor='LightGray' + zerolinecolor="LightGray", ), height=700, - margin=dict(t=50, b=50, l=50, r=50) + margin=dict(t=50, b=50, l=50, r=50), ) - + debug_log("Scatter plot updated") return fig + """""" + @app.callback( - Output('series-colors', 'data', allow_duplicate=True), - [Input({'type': 'color-option', 'index': ALL}, 'n_clicks')], - [State({'type': 'color-option', 'index': ALL}, 'id'), - State('active-series', 'data'), - State('series-colors', 'data')], - prevent_initial_call=True + Output("series-colors", "data", allow_duplicate=True), + [Input({"type": "color-option", "index": ALL}, "n_clicks")], + [ + State({"type": "color-option", "index": ALL}, "id"), + State("active-series", "data"), + State("series-colors", "data"), + ], + prevent_initial_call=True, ) def update_series_color(color_clicks, color_ids, active_series, current_colors): """Update color when selecting from color picker.""" ctx = dash.callback_context if not ctx.triggered or not active_series or not current_colors: return dash.no_update - - triggered_id = ctx.triggered[0]['prop_id'] - if 'color-option' not in triggered_id: + + triggered_id = ctx.triggered[0]["prop_id"] + if "color-option" not in triggered_id: return dash.no_update - - color_idx = eval(triggered_id.split('.')[0])['index'] + + color_idx = eval(triggered_id.split(".")[0])["index"] current_colors[active_series] = COLORS[color_idx] debug_log(f"Updated color for {active_series} to {COLORS[color_idx]}") return current_colors + @app.callback( - [Output('color-picker-panel', 'style'), - Output('active-series', 'data')], - [Input({'type': 'color-button', 'index': ALL}, 'n_clicks'), - Input('close-color-picker', 'n_clicks'), - Input({'type': 'color-option', 'index': ALL}, 'n_clicks')], # Add this input - [State({'type': 'color-button', 'index': ALL}, 'id'), - State('color-picker-panel', 'style')] + [Output("color-picker-panel", "style"), Output("active-series", "data")], + [ + Input({"type": "color-button", "index": ALL}, "n_clicks"), + Input("close-color-picker", "n_clicks"), + Input({"type": "color-option", "index": ALL}, "n_clicks"), + ], # Add this input + [ + State({"type": "color-button", "index": ALL}, "id"), + State("color-picker-panel", "style"), + ], ) -def toggle_color_picker(button_clicks, close_clicks, color_option_clicks, button_ids, current_style): +def toggle_color_picker( + button_clicks, close_clicks, color_option_clicks, button_ids, current_style +): """Show/hide color picker when clicking color buttons.""" ctx = dash.callback_context if not ctx.triggered: - return dict(current_style, display='none'), None - - triggered_id = ctx.triggered[0]['prop_id'] - + return dict(current_style, display="none"), None + + triggered_id = ctx.triggered[0]["prop_id"] + # Close on color selection or close button click - if 'color-option' in triggered_id or 'close-color-picker' in triggered_id: + if "color-option" in triggered_id or "close-color-picker" in triggered_id: debug_log("Closing color picker after selection") - return dict(current_style, display='none'), None - + return dict(current_style, display="none"), None + # Open on color button click - if 'color-button' in triggered_id and any(button_clicks): + if "color-button" in triggered_id and any(button_clicks): button_idx = next(i for i, c in enumerate(button_clicks) if c) - series_name = button_ids[button_idx]['index'] + series_name = button_ids[button_idx]["index"] debug_log(f"Opening color picker for {series_name}") - return dict(current_style, display='block'), series_name - - return dict(current_style, display='none'), None + return dict(current_style, display="block"), series_name + + return dict(current_style, display="none"), None + # Update the legend immediately when colors change @app.callback( - Output('custom-legend', 'children', allow_duplicate=True), - [Input('series-colors', 'data')], - [State('df1-columns', 'value'), - State('df2-columns', 'value'), - State('series-data', 'data')], - prevent_initial_call=True + Output("custom-legend", "children", allow_duplicate=True), + [Input("series-colors", "data")], + [ + State("df1-columns", "value"), + State("df2-columns", "value"), + State("series-data", "data"), + ], + prevent_initial_call=True, ) def update_legend_colors(color_data, df1_cols, df2_cols, series_data): """Update legend when colors change.""" if not color_data or not df1_cols or not df2_cols: return dash.no_update - + debug_log("Updating legend colors") legend_items = [] - + for x_col in df1_cols: for y_col in df2_cols: - series_name = f'{x_col} vs {y_col}' + series_name = f"{x_col} vs {y_col}" color = color_data.get(series_name) if not color: continue - - legend_items.append(html.Div([ - html.Button( - style={ - 'backgroundColor': color, - 'width': '20px', - 'height': '20px', - 'marginRight': '10px', - 'verticalAlign': 'middle', - 'cursor': 'pointer', - 'border': '1px solid #ddd' + + legend_items.append( + html.Div( + [ + html.Button( + style={ + "backgroundColor": color, + "width": "20px", + "height": "20px", + "marginRight": "10px", + "verticalAlign": "middle", + "cursor": "pointer", + "border": "1px solid #ddd", + }, + id={"type": "color-button", "index": series_name}, + ), + html.Span( + series_name, + style={ + "cursor": "default", + "userSelect": "none", + "display": "inline-block", + }, + ), + ], + className="legend-item", + id={"type": "legend-item", "index": series_name}, + **{ + "data-series": series_name, + "style": { + "margin": "10px", + "padding": "5px", + "borderRadius": "3px", + }, }, - id={'type': 'color-button', 'index': series_name} - ), - html.Span( - series_name, - style={ - 'cursor': 'default', - 'userSelect': 'none', - 'display': 'inline-block' - } ) - ], - className='legend-item', - id={'type': 'legend-item', 'index': series_name}, - **{ - 'data-series': series_name, - 'style': { - 'margin': '10px', - 'padding': '5px', - 'borderRadius': '3px', - } - })) - + ) + return legend_items -if __name__ == '__main__': - app.run_server(debug=True, port=8050) \ No newline at end of file + +if __name__ == "__main__": + app.run_server(debug=True, port=8050) diff --git a/pyproject.toml b/pyproject.toml index ce0a3a6..012b0d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,105 +1,152 @@ [build-system] -requires = ["hatchling"] +requires = ["hatchling", "hatch-vcs"] build-backend = "hatchling.build" [project] -license-files = ["LICENSE"] +name = "trendify" +dynamic = ["version"] +description = "Tools for generating data products, storing, and interacting with them" +readme = "README.md" +requires-python = ">=3.11" dependencies = [ - "dash", - "filelock", - "flask", - "jinja2", - "pandas", - "plotly", - "pydantic", - "matplotlib", - "numpy", - "numpydantic", - "scipy", - "strenum", - "supervisor", - "waitress", - "grafana_api", - "streamlit", + "dash>=4.3.0", + "filelock>=3.29.4", + "flask>=3.1.3", + "grafana-api>=1.0.3", + "jinja2>=3.1.6", + "matplotlib>=3.11.0", + "numpy>=2.4.6", + "numpydantic>=1.10.0", + "pandas>=3.0.3", + "plotly>=6.8.0", + "pydantic>=2.13.4", + "scipy>=1.17.1", + "streamlit>=1.58.0", + "strenum>=0.4.15", + "supervisor>=4.3.0", + "waitress>=3.0.2", +] + +keywords = ["Data", "Products", "Process", "Post", "Database"] + +classifiers = [ + "Development Status :: 3 - Alpha", + # "Intended Audience :: Science/Research", + # "Topic :: Scientific/Engineering :: Mathematics", + "Typing :: Typed", + "Operating System :: OS Independent", + "Natural Language :: English", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] -name = "trendify" -version = "1.2.11" -requires-python = ">= 3.11" authors = [ - { name = "Talbot Knighton", email = "talbotknighton@gmail.com" }, - { name = "David Gable", email = "david@david-gable.com" }, + { name = "Talbot Knighton", email = "talbotknighton@gmail.com" }, + { name = "David Gable", email = "david@david-gable.com" }, ] maintainers = [ - { name = "Talbot Knighton", email = "talbotknighton@gmail.com" }, - { name = "David Gable", email = "david@david-gable.com" }, + { name = "Talbot Knighton", email = "talbotknighton@gmail.com" }, + { name = "David Gable", email = "david@david-gable.com" }, ] -description = "Tools for generating data products, storing, and interacting with them" -readme = "README.md" -keywords = ["Data", "Products", "Process", "Post", "Database"] -classifiers = [ - # How mature is this project? Common values are - # 3 - Alpha - # 4 - Beta - # 5 - Production/Stable - "Development Status :: 3 - Alpha", +license = { text = "MIT" } + +[tool.hatch.version] +source = "vcs" +fallback-version = "0.0.0" + +[tool.hatch.build.targets.wheel] +packages = ["src/trendify"] + +[tool.ruff] +exclude = ["typings"] + + +[tool.ruff.lint] +select = ["D", "RUF", "E", "F", "W", "UP"] # some suggest using "ALL" +ignore = [ + # modules + "ANN", # flake8-annotations + "COM", # flake8-commas + "C90", # mccabe complexity + "DJ", # django + "EXE", # flake8-executable + "T10", # debugger + "TID", # flake8-tidy-imports - # Specify the Python versions you support here. - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.11", + # specific rules + # "D100", # ignore missing docs + "D101", + "D102", + "D103", + "D104", + "D105", + "D106", + "D107", + "D200", + "D203", + "D205", + "D212", + "D400", + "D401", + "D404", + "D415", + "E402", # false positives for local imports + "E501", # line too long + "TRY003", # external messages in exceptions are too verbose + "TD002", + "TD003", + "FIX002", # too verbose descriptions of todos ] -[project.optional-dependencies] +[tool.pyright] +stubPath = "typings" +venvPath = ".." +venv = ".venv" +ignore = ["typings"] + +[tool.coverage.report] +exclude_also = ["if __name__ == .__main__.:", "@(abc\\.)?abstractmethod"] + +[dependency-groups] dev = [ - "mkdocs", - "black", - "pymdown-extensions", - "mkdocs-material", - "markdown-callouts", - "mdx-gh-links", - "mkdocs-click", - "markdown_include", - "mkdocs-glightbox", - "mkdocs-gen-files", - "mkdocs-section-index", - "mkdocs-autorefs", - "mkdocs-literate-nav", - "mkdocstrings", - "mkdocs-exclude", - "mkdocs-snippets", - "mkdocstrings-python", - "griffe-pydantic", - "pytest", - "pytest-asyncio", - "pytest-cov", - "mike", - "isort>=5.12.0", - "flake8>=6.0.0", - "mkdocs-material>=9.2.0", - "mkdocs-redirects>=1.0.0", - "hatchling>=1.11.0", + "black>=26.5.1", + "flake8>=7.3.0", + "griffe-pydantic>=1.3.1", + "hatchling>=1.30.1", + "isort>=8.0.1", + "markdown-callouts>=0.4.0", + "markdown-include>=0.8.1", + "mdx-gh-links>=0.4", + "mike>=2.2.0", + "mkdocs>=1.6.1", + "mkdocs-autorefs>=1.4.4", + "mkdocs-click>=0.9.0", + "mkdocs-exclude>=1.0.2", + "mkdocs-gen-files>=0.6.1", + "mkdocs-glightbox>=0.5.2", + "mkdocs-literate-nav>=0.6.3", + "mkdocs-material>=9.7.6", + "mkdocs-redirects>=1.2.3", + "mkdocs-section-index>=0.3.12", + "mkdocs-snippets>=1.3.2", + "mkdocstrings>=1.0.4", + "mkdocstrings-python>=2.0.5", + "pymdown-extensions>=11.0", + "pytest>=9.1.1", + "pytest-asyncio>=1.4.0", + "pytest-cov>=7.1.0", ] [project.urls] "Homepage" = "https://github.com/talbotknighton/trendify" -"Bug Tracker" = "https://github.com/talbotknighton/trendify/issues" "Documentation" = "https://talbotknighton.github.io/trendify/" -"Source Code" = "https://github.com/talbotknighton/trendify" +"Repository" = "https://github.com/talbotknighton/trendify" +"Issues" = "https://github.com/talbotknighton/trendify/issues" "PyPI" = "https://pypi.org/project/trendify/" [project.scripts] trendify_make_sample_data = "trendify.examples:make_sample_data" trendify = "trendify.CLI:trendify" -# trendify_server = "trendify.CLI:serve" - -[tool.setuptools] -include-package-data = true - -[tool.setuptools.package-data] -"trendify.assets" = ["*.svg"] - -[tool.pytest.ini_options] -testpaths = ["tests"] -python_files = "*.py" -asyncio_mode = "strict" -asyncio_default_fixture_loop_scope = "function" diff --git a/sample_hierarchical_data.py b/sample_hierarchical_data.py index d310e57..6ae0c08 100644 --- a/sample_hierarchical_data.py +++ b/sample_hierarchical_data.py @@ -4,8 +4,6 @@ """ import numpy as np -import pandas as pd -import os import sys from pathlib import Path @@ -16,7 +14,6 @@ from trendify.api.api import ( DataProductCollection, - Tags, Point2D, Trace2D, TableEntry, @@ -25,82 +22,86 @@ LineOrientation, Format2D, Pen, - Marker ) + def generate_sample_data(): """Generate a collection of data products with hierarchical tags.""" # First, create a list of data products data_products = [] - + # Define hierarchical tag categories categories = { "Performance": ["CPU", "Memory", "Disk", "Network"], "Analytics": ["Users", "Sessions", "Conversions", "Revenue"], "Infrastructure": ["Servers", "Databases", "Load Balancers", "Cache"], "Monitoring": ["Errors", "Latency", "Uptime", "Throughput"], - "Finance": ["Revenue", "Costs", "ROI", "Growth"] + "Finance": ["Revenue", "Costs", "ROI", "Growth"], } - + # Create Format2D objects for different plot types time_series_format = Format2D( title_ax="Time Series Data", label_x="Time (s)", label_y="Value", - title_legend="Metrics" + title_legend="Metrics", ) - + scatter_format = Format2D( title_ax="Correlation Analysis", label_x="X Value", label_y="Y Value", - title_legend="Data Points" + title_legend="Data Points", ) - + histogram_format = Format2D( title_ax="Distribution Analysis", label_x="Value", label_y="Frequency", - title_legend="Distributions" + title_legend="Distributions", ) - + # Generate data for each category for category, subcategories in categories.items(): for subcategory in subcategories: # Create a hierarchical tag tag_str = f"{category}/{subcategory}" - + # Add time series traces (1-3 per subcategory) for i in range(1, np.random.randint(2, 5)): x = np.linspace(0, 10, 100) noise = np.random.normal(0, 0.5, 100) amplitude = np.random.uniform(1, 5) frequency = np.random.uniform(0.5, 2) - + y = amplitude * np.sin(frequency * x) + noise - - data_products.append(Trace2D.from_xy( - x=x, - y=y, - pen=Pen(label=f"{subcategory} Metric {i}"), - format2d=time_series_format, - tags=[tag_str] - )) - + + data_products.append( + Trace2D.from_xy( + x=x, + y=y, + pen=Pen(label=f"{subcategory} Metric {i}"), + format2d=time_series_format, + tags=[tag_str], + ) + ) + # Add scatter points (for some subcategories) if np.random.random() > 0.3: # 70% chance of adding points num_points = np.random.randint(20, 100) x = np.random.normal(5, 2, num_points) y = 2 * x + np.random.normal(0, 3, num_points) - - data_products.append(Trace2D.from_xy( - x=x, - y=y, - pen=Pen(label=f"{subcategory} Data Points"), - format2d=scatter_format, - tags=[tag_str], - )) - + + data_products.append( + Trace2D.from_xy( + x=x, + y=y, + pen=Pen(label=f"{subcategory} Data Points"), + format2d=scatter_format, + tags=[tag_str], + ) + ) + # Add histogram data (for some subcategories) if np.random.random() > 0.5: # 50% chance of adding histogram # Generate some sample distribution data @@ -110,120 +111,129 @@ def generate_sample_data(): dist_type = "Normal" else: # Bimodal distribution - values = np.concatenate([ - np.random.normal(30, 10, 500), - np.random.normal(70, 10, 500) - ]) + values = np.concatenate( + [np.random.normal(30, 10, 500), np.random.normal(70, 10, 500)] + ) dist_type = "Bimodal" from trendify import HistogramStyle + for v in values: - data_products.append(HistogramEntry( - value=v, - style=HistogramStyle(label=f"{subcategory} {dist_type}"), - format2d=histogram_format, - tags=[tag_str], - )) - + data_products.append( + HistogramEntry( + value=v, + style=HistogramStyle(label=f"{subcategory} {dist_type}"), + format2d=histogram_format, + tags=[tag_str], + ) + ) + # Add table data (for some subcategories) if np.random.random() > 0.6: # 40% chance of adding table # Create a sample table with metrics metrics = ["Count", "Avg", "Min", "Max", "Std Dev"] features = [f"Feature {i}" for i in range(1, 4)] - + for metric in metrics: for feature in features: value = np.random.uniform(10, 100) - data_products.append(TableEntry( - row=metric, - col=feature, - value=value, - tags=[tag_str], - unit=None, - )) - + data_products.append( + TableEntry( + row=metric, + col=feature, + value=value, + tags=[tag_str], + unit=None, + ) + ) + # Add reference lines (for some subcategories) if np.random.random() > 0.7: # 30% chance of adding reference lines # Add horizontal threshold line threshold = np.random.uniform(1, 4) - data_products.append(AxLine( - value=threshold, - orientation=LineOrientation.HORIZONTAL, - pen=Pen(label=f"{subcategory} Threshold"), - tags=[tag_str] - )) - + data_products.append( + AxLine( + value=threshold, + orientation=LineOrientation.HORIZONTAL, + pen=Pen(label=f"{subcategory} Threshold"), + tags=[tag_str], + ) + ) + # Maybe add vertical reference if np.random.random() > 0.5: ref_x = np.random.uniform(3, 7) - data_products.append(AxLine( - value=ref_x, - orientation=LineOrientation.VERTICAL, - pen=Pen(label=f"{subcategory} Reference"), - tags=[tag_str] - )) - + data_products.append( + AxLine( + value=ref_x, + orientation=LineOrientation.VERTICAL, + pen=Pen(label=f"{subcategory} Reference"), + tags=[tag_str], + ) + ) + # Add some flat (non-hierarchical) tags as well for comparison flat_tags = ["Summary", "Overview", "Highlights", "Alerts"] - + for tag_name in flat_tags: # Add a couple of traces x = np.linspace(0, 10, 100) for i in range(2): y = np.random.normal(5, 2, 100) + i * 2 - data_products.append(Trace2D.from_xy( - x=x, - y=y, - pen=Pen(label=f"Metric {i+1}"), - format2d=time_series_format, - tags=[tag_name] - )) - + data_products.append( + Trace2D.from_xy( + x=x, + y=y, + pen=Pen(label=f"Metric {i + 1}"), + format2d=time_series_format, + tags=[tag_name], + ) + ) + # Add a table for row in ["Total", "Average", "Change"]: for col in ["Yesterday", "Today", "Weekly"]: value = np.random.uniform(100, 1000) - data_products.append(TableEntry( - row=row, - col=col, - value=value, - tags=[tag_name] - )) - + data_products.append( + TableEntry(row=row, col=col, value=value, tags=[tag_name]) + ) + # Create collection from data products collection = DataProductCollection(elements=data_products) - + return collection + def main(): """Main function to generate and display sample data.""" print("Generating sample hierarchical data for Trendify Plotly dashboard...") collection = generate_sample_data() - + # Print summary of what was generated tags = collection.get_tags() print(f"Generated {len(collection.elements)} data products across {len(tags)} tags") - + print("\nTag hierarchy:") for tag in sorted([str(t) for t in tags]): print(f" - {tag}") - + print("\nData product counts by type:") trace_count = len(collection.get_products(object_type=Trace2D).elements or []) point_count = len(collection.get_products(object_type=Point2D).elements or []) table_count = len(collection.get_products(object_type=TableEntry).elements or []) hist_count = len(collection.get_products(object_type=HistogramEntry).elements or []) axline_count = len(collection.get_products(object_type=AxLine).elements or []) - + print(f" - Traces: {trace_count}") print(f" - Points: {point_count}") print(f" - Tables: {table_count}") print(f" - Histograms: {hist_count}") print(f" - AxLines: {axline_count}") - + # Launch the Plotly dashboard print("\nLaunching Plotly dashboard...") app = collection.generate_plotly_dashboard(title="Hierarchical Tag Demo") app.run_server(debug=True) + if __name__ == "__main__": - main() \ No newline at end of file + main() diff --git a/scripts/gen_ref_pages.py b/scripts/gen_ref_pages.py index 20302a2..4e356a8 100644 --- a/scripts/gen_ref_pages.py +++ b/scripts/gen_ref_pages.py @@ -32,4 +32,4 @@ mkdocs_gen_files.set_edit_path(full_doc_path, path.relative_to(root)) with mkdocs_gen_files.open("reference/SUMMARY.md", "w") as nav_file: - nav_file.writelines(nav.build_literate_nav()) \ No newline at end of file + nav_file.writelines(nav.build_literate_nav()) diff --git a/src/.DS_Store b/src/.DS_Store deleted file mode 100644 index e5417baf4acd0652ecaf34a63e7d9493b72e8c85..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK!Ab)`3{BP^D!ue5c$tGgQ1AoBvYxyM{QzyPwuP=+L_u%!bsqc#zs8qIs9m-z zcoCHZGH*7M%w*rdW?S|jT zfZW}H7W9BSyMun--)g-WO>XMSZu0cK+q0_6a<;B#@R0qUFP5)oUwO~J;k{YzW)ZP1 z&Ui$=x5#x)D`frB$h0^<+2_;DF}+!it-Y#xH@j}XMqb6GTckfw z^wAk`2AqK{1M+`r1jA^U6tMzf4Fzf_TZ_RO4tp@a zXqXf=oY 1: with ProcessPoolExecutor( @@ -179,7 +179,7 @@ def map_callable( return result -def get_sorted_dirs(dirs: List[Path]): +def get_sorted_dirs(dirs: list[Path]): """ Sorts dirs numerically if possible, else alphabetically @@ -188,6 +188,7 @@ def get_sorted_dirs(dirs: List[Path]): Returns: (List[Path]): Sorted list of directories + """ dirs = list(dirs) try: @@ -199,7 +200,7 @@ def get_sorted_dirs(dirs: List[Path]): def make_products( product_generator: Callable[[Path], DataProductCollection] | None, - data_dirs: List[Path], + data_dirs: list[Path], n_procs: int = 1, data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, ): @@ -218,6 +219,7 @@ def make_products( If `n_procs > 1`, a [ProcessPoolExecutor][concurrent.futures.ProcessPoolExecutor] will be used to load and process directories and/or tags in parallel. data_products_fname (str): File name to be used for storing generated data products + """ sorted_dirs = get_sorted_dirs(dirs=data_dirs) @@ -235,7 +237,7 @@ def make_products( def sort_products( - data_dirs: List[Path], + data_dirs: list[Path], output_dir: Path, n_procs: int = 1, data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, @@ -247,10 +249,11 @@ def sort_products( data_dirs (List[Path]): Directories containing JSON data product files output_dir (Path): Directory to which sorted products will be written data_products_fname (str): File name in which the data products to be sorted are stored + """ sorted_data_dirs = get_sorted_dirs(dirs=data_dirs) - logger.info(f"Sorting data by tags") + logger.info("Sorting data by tags") output_dir.mkdir(parents=True, exist_ok=True) map_callable( @@ -261,7 +264,7 @@ def sort_products( n_procs=n_procs, ) - logger.info(f"Finished sorting by tags") + logger.info("Finished sorting by tags") # def make_grafana_dashboard( @@ -339,8 +342,8 @@ def make_tables_and_figures( no_histograms (bool): Whether or not to generate histograms of the [`HistogramEntry`][trendify.api.HistogramEntry] products using matplotlib. - """ + """ if not (no_tables and no_xy_plots and no_histograms): product_dirs = list(products_dir.glob("**/*/")) map_callable( @@ -362,7 +365,7 @@ def _mkdir(p: Path): def make_it_trendy( data_product_generator: ProductGenerator | None, - input_dirs: List[Path], + input_dirs: list[Path], output_dir: Path, n_procs: int = 1, dpi_static_plots: int = 500, @@ -401,6 +404,7 @@ def make_it_trendy( no_grafana_dashboard (bool): Suppresses generation of Grafana dashboard JSON definition file no_include_files (bool): Suppresses generation of include files for importing static assets to markdown or LaTeX reports data_products_fname (str): File name to be used for storing generated data products + """ input_dirs = [ Path(p).parent if Path(p).is_file() else Path(p) for p in list(input_dirs) diff --git a/src/trendify/api/base/data_product.py b/src/trendify/api/base/data_product.py index ce56666..080aa8b 100644 --- a/src/trendify/api/base/data_product.py +++ b/src/trendify/api/base/data_product.py @@ -1,7 +1,8 @@ from __future__ import annotations from pathlib import Path -from typing import Callable, List, Any +from typing import Any +from collections.abc import Callable import logging from pydantic import ( @@ -18,7 +19,7 @@ logger = logging.getLogger(__name__) -__all__ = ["DataProduct", "ProductList", "ProductGenerator"] +__all__ = ["DataProduct", "ProductGenerator", "ProductList"] _data_product_subclass_registry: dict[str, DataProduct] = {} @@ -32,6 +33,7 @@ class DataProduct(BaseModel): The product type is used to search for products from a [DataProductCollection][trendify.api.DataProductCollection]. tags (Tags): Tags to be used for sorting data. metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + """ tags: Tags @@ -48,6 +50,7 @@ def _remove_computed_fields(cls, data: dict[str, Any]) -> dict[str, Any]: Returns: (dict[str, Any]): Sanitized data to be passed to class constructor. + """ for f in cls.model_computed_fields: data.pop(f, None) @@ -61,6 +64,7 @@ def product_type(self) -> str: (str): Product type should be the same as the class name. The product type is used to search for products from a [DataProductCollection][trendify.api.DataProductCollection]. + """ return type(self).__name__ @@ -74,7 +78,7 @@ def __init_subclass__(cls, **kwargs: Any) -> None: model_config = ConfigDict(extra="allow") - def append_to_list(self, l: List): + def append_to_list(self, l: list): """ Appends self to list. @@ -83,6 +87,7 @@ def append_to_list(self, l: List): Returns: (Self): returns instance of `self` + """ l.append(self) return self @@ -95,6 +100,7 @@ def deserialize_child_classes(cls, key: str, **kwargs): Args: key (str): json key kwargs (dict): json entries stored under given key + """ type_key = "product_type" elements = kwargs.get(key, None) @@ -111,7 +117,7 @@ def set_metadata(self, new: dict[str, str]): return self -ProductList = List[SerializeAsAny[InstanceOf[DataProduct]]] +ProductList = list[SerializeAsAny[InstanceOf[DataProduct]]] """List of serializable [DataProduct][trendify.api.DataProduct] or child classes thereof""" ProductGenerator = Callable[[Path], ProductList] diff --git a/src/trendify/api/base/helpers.py b/src/trendify/api/base/helpers.py index 3fe8005..c167742 100644 --- a/src/trendify/api/base/helpers.py +++ b/src/trendify/api/base/helpers.py @@ -2,7 +2,8 @@ from enum import auto from strenum import StrEnum -from typing import Union, List, Tuple, TypeVar, Hashable +from typing import Union, TypeVar +from collections.abc import Hashable import logging from pydantic import BaseModel @@ -11,11 +12,11 @@ __all__ = [ "DATA_PRODUCTS_FNAME_DEFAULT", + "HashableBase", + "ProductType", "R", "Tag", "Tags", - "HashableBase", - "ProductType", ] DATA_PRODUCTS_FNAME_DEFAULT = "data_products.json" @@ -25,12 +26,12 @@ R = TypeVar("R") -Tag = Union[Tuple[Hashable, ...], Hashable] +Tag = Union[tuple[Hashable, ...], Hashable] """ Determines what types can be used to define a tag """ -Tags = List[Tag] +Tags = list[Tag] """ List of tags """ @@ -59,6 +60,7 @@ class ProductType(StrEnum): Point2D (str): class name TableEntry (str): class name HistogramEntry (str): class name + """ DataProduct = auto() diff --git a/src/trendify/api/base/pen.py b/src/trendify/api/base/pen.py index dc44fef..132c6e5 100644 --- a/src/trendify/api/base/pen.py +++ b/src/trendify/api/base/pen.py @@ -1,10 +1,8 @@ from __future__ import annotations -from typing import Optional, Tuple, Union from pydantic import ConfigDict -from matplotlib.colors import to_rgba, to_rgb -import numpy as np +from matplotlib.colors import to_rgba from trendify.api.base.helpers import HashableBase @@ -22,14 +20,15 @@ class Pen(HashableBase): linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)). zorder (float): Prioritization label (Union[str, None]): Legend label + """ - color: Tuple[float, float, float] | Tuple[float, float, float, float] | str = "k" + color: tuple[float, float, float] | tuple[float, float, float, float] | str = "k" size: float = 1 alpha: float = 1 zorder: float = 0 - linestyle: Union[str, Tuple[int, Tuple[int, ...]]] = "-" - label: Union[str, None] = None + linestyle: str | tuple[int, tuple[int, ...]] = "-" + label: str | None = None model_config = ConfigDict(extra="forbid") @@ -68,6 +67,7 @@ def rgba(self) -> str: Returns: str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 + """ # Handle different color input formats if isinstance(self.color, tuple): @@ -101,6 +101,7 @@ def get_contrast_color(self, background_luminance: float = 1.0) -> str: Returns: str: 'white' or 'black' + """ # Convert the pen's color to RGB (0-255 range) and get alpha if isinstance(self.color, tuple): diff --git a/src/trendify/api/formats/format2d.py b/src/trendify/api/formats/format2d.py index 81ecc1b..28bbde8 100644 --- a/src/trendify/api/formats/format2d.py +++ b/src/trendify/api/formats/format2d.py @@ -1,7 +1,8 @@ from __future__ import annotations from enum import StrEnum -from typing import TYPE_CHECKING, Iterable, Optional +from typing import TYPE_CHECKING +from collections.abc import Iterable import logging import numpy as np @@ -16,7 +17,7 @@ from trendify.api.plotting.plotting import PlotlyFigure logger = logging.getLogger(__name__) -__all__ = ["Format2D", "PlottableData2D", "XYData", "AxisScale"] +__all__ = ["AxisScale", "Format2D", "PlottableData2D", "XYData"] class AxisScale(StrEnum): @@ -45,13 +46,14 @@ class Format2D(HashableBase): scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4. figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8. + """ - title_fig: Optional[str] | None = None - legend: Optional[Legend] = Legend() - title_ax: Optional[str] | None = None - label_x: Optional[str] | None = None - label_y: Optional[str] | None = None + title_fig: str | None | None = None + legend: Legend | None = Legend() + title_ax: str | None | None = None + label_x: str | None | None = None + label_y: str | None | None = None lim_x_min: float | None = None lim_x_max: float | None = None lim_y_min: float | None = None @@ -75,6 +77,7 @@ def union_from_iterable(cls, format2ds: Iterable[Format2D]): Returns: (Format2D): Single format object from list of objects. + """ formats = list(set(format2ds) - {None}) @@ -127,15 +130,18 @@ class PlottableData2D(DataProduct): format2d (Format2D|None): Format to apply to plot tags (Tags): Tags to be used for sorting data. metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + """ format2d: Format2D | None = None def add_to_plotly(self, plotly_figure: PlotlyFigure): - """Add this data product to a plotly figure + """ + Add this data product to a plotly figure Args: plotly_figure (PlotlyFigure): Plotly figure to add data to + """ raise NotImplementedError("Subclasses must implement add_to_plotly") diff --git a/src/trendify/api/formats/table.py b/src/trendify/api/formats/table.py index db3ae51..877b296 100644 --- a/src/trendify/api/formats/table.py +++ b/src/trendify/api/formats/table.py @@ -27,6 +27,7 @@ class TableEntry(DataProduct): value (float | str): Value unit (str | None): Units for value metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + """ row: float | str @@ -42,6 +43,7 @@ def get_entry_dict(self): Returns: (dict[str, str | float]): Dictionary of entries to be used in creating a melted [DataFrame][pandas.DataFrame] + """ return { "row": self.row, @@ -61,10 +63,11 @@ def pivot_table(cls, melted: pd.DataFrame): Returns: (pd.DataFrame | None): pivoted DataFrame if pivot works else `None`. Pivot operation fails if row or column index pairs are repeated. + """ try: result = melted.pivot(index="row", columns="col", values="value") - except ValueError as e: + except ValueError: logger.debug(traceback.format_exc()) result = None return result @@ -80,5 +83,6 @@ def load_and_pivot(cls, path: Path): Returns: (pd.DataFrame | None): Pivoted data frame or elese `None` if pivot operation fails. + """ return cls.pivot_table(melted=pd.read_csv(path)) diff --git a/src/trendify/api/generator/data_product_collection.py b/src/trendify/api/generator/data_product_collection.py index bdf7131..dce647f 100644 --- a/src/trendify/api/generator/data_product_collection.py +++ b/src/trendify/api/generator/data_product_collection.py @@ -3,15 +3,15 @@ import os from itertools import chain from pathlib import Path -from typing import TYPE_CHECKING, Union, List, Iterable, Any, Callable, Tuple, Type +from typing import TYPE_CHECKING, Any +from collections.abc import Iterable import logging -import pandas as pd try: from typing import Self except: - from typing_extensions import Self + from typing import Self import dash from filelock import FileLock @@ -35,9 +35,9 @@ __all__ = [ "DataProductCollection", - "flatten", "ProductEntryMetadata", "ProductIndexMap", + "flatten", ] @@ -115,6 +115,7 @@ def _should_be_flattened(obj: Any): Returns: (bool): Whether or not to flatten object + """ return isinstance(obj, Iterable) and not isinstance(obj, (str, bytes, DataProduct)) @@ -128,6 +129,7 @@ def flatten(obj: Iterable): Returns: (Iterable): Flattned iterable + """ if not _should_be_flattened(obj): yield obj @@ -145,6 +147,7 @@ def atleast_1d(obj: Any) -> Iterable: Returns: (Iterable): Returns an iterable + """ if not _should_be_flattened(obj): return [obj] @@ -152,7 +155,7 @@ def atleast_1d(obj: Any) -> Iterable: return obj -def _squeeze(obj: Union[Iterable, Any]): +def _squeeze(obj: Iterable | Any): """ Returns a scalar if object is iterable of length 1 else returns object. @@ -161,6 +164,7 @@ def _squeeze(obj: Union[Iterable, Any]): Returns: (Any): Either iterable or scalar if possible + """ if _should_be_flattened(obj) and len(obj) == 1: return obj[0] @@ -176,6 +180,7 @@ class DataProductCollection(BaseModel): Attributes: elements (ProductList): A list of data products. + """ derived_from: Path | None = None @@ -186,7 +191,7 @@ def __init__(self, **kwargs: Any): super().__init__(**kwargs) @classmethod - def from_iterable(cls, *products: Tuple[ProductList, ...]): + def from_iterable(cls, *products: tuple[ProductList, ...]): """ Returns a new instance containing all of the products provided in the `*products` argument. @@ -195,10 +200,11 @@ def from_iterable(cls, *products: Tuple[ProductList, ...]): Returns: (cls): A data product collection containing all of the provided products in the `*products` argument. + """ return cls(elements=list(flatten(products))) - def get_tags(self, data_product_type: Type[DataProduct] | None = None) -> set: + def get_tags(self, data_product_type: type[DataProduct] | None = None) -> set: """ Gets the tags related to a given type of `DataProduct`. Parent classes will match all child class types. @@ -207,6 +213,7 @@ def get_tags(self, data_product_type: Type[DataProduct] | None = None) -> set: Returns: (set): set of tags applying to the given `data_product_type`. + """ tags = [] for e in flatten(self.elements): @@ -220,6 +227,7 @@ def add_products(self, *products: DataProduct): Args: products (Tuple[DataProduct|ProductList, ...]): Products or lists of products to be appended to collection elements. + """ self.elements.extend(flatten(products)) @@ -293,7 +301,7 @@ def collect_and_serve_plotly_dashboard( def drop_products( self, tag: Tag | None = None, - object_type: Type[R] | None = None, + object_type: type[R] | None = None, ) -> Self[R]: """ Removes products matching `tag` and/or `object_type` from collection elements. @@ -304,6 +312,7 @@ def drop_products( Returns: (DataProductCollection): A new collection from which matching elements have been dropped. + """ match_key = tag is None, object_type is None match match_key: @@ -319,7 +328,7 @@ def drop_products( case (False, True): # assert self.elements is not None return type(self)( - elements=[e for e in self.elements if not tag in e.tags] + elements=[e for e in self.elements if tag not in e.tags] ) case (False, False): # assert self.elements is not None @@ -334,7 +343,7 @@ def drop_products( raise ValueError("Something is wrong with match statement") def get_products( - self, tag: Tag | None = None, object_type: Type[R] | None = None + self, tag: Tag | None = None, object_type: type[R] | None = None ) -> Self[R]: """ Returns a new collection containing products matching `tag` and/or `object_type`. @@ -346,6 +355,7 @@ def get_products( Returns: (DataProductCollection): A new collection containing matching elements. + """ match_key = tag is None, object_type is None match match_key: @@ -383,6 +393,7 @@ def union(cls, *collections: DataProductCollection): Returns: (Type[Self]): A new data product collection containing all products from the provided `*collections`. + """ return cls(elements=list(flatten(chain(c.elements for c in collections)))) @@ -406,13 +417,14 @@ def collect_from_all_jsons( Returns: (Type[Self] | None): Data product collection if JSON files are found. Otherwise, returns None if no product JSON files were found. + """ if not recursive: - jsons: List[Path] = list( + jsons: list[Path] = list( flatten(chain(list(d.glob(data_products_filename)) for d in dirs)) ) else: - jsons: List[Path] = list( + jsons: list[Path] = list( flatten( chain(list(d.glob(f"**/{data_products_filename}")) for d in dirs) ) @@ -427,7 +439,7 @@ def collect_from_all_jsons( @classmethod def sort_by_tags( cls, - dirs_in: List[Path], + dirs_in: list[Path], dir_out: Path, data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, ): @@ -442,6 +454,7 @@ def sort_by_tags( dir_out (Path): Directory to which the sorted data products will be written into a nested folder structure generated according to the data tags. data_products_fname (str): Name of data products file + """ dirs_in = list(dirs_in) dirs_in.sort() @@ -470,6 +483,7 @@ def sort_by_tags_single_directory( dir_out (Path): Directory to which the sorted data products will be written into a nested folder structure generated according to the data tags. data_products_fname (str): Name of data products file + """ products_file = dir_in.joinpath(data_products_fname) if products_file.exists(): @@ -517,12 +531,11 @@ def process_collection( no_xy_plots (bool): Suppresses xy plot asset creation no_histograms (bool): Suppresses histogram asset creation dpi (int): Sets resolution of asset output - """ + """ collection = cls.collect_from_all_jsons(dir_in) if collection is not None: - for tag in collection.get_tags(): # tags = collection.get_tags() # try: @@ -533,7 +546,7 @@ def process_collection( format_2ds: list[Format2D] = [] if not no_tables: - table_entries: List[TableEntry] = collection.get_products( + table_entries: list[TableEntry] = collection.get_products( tag=tag, object_type=TableEntry, ).elements @@ -550,15 +563,15 @@ def process_collection( logger.info(f"Finished tables for {tag = }") if not no_xy_plots: - traces: List[Trace2D] = collection.get_products( + traces: list[Trace2D] = collection.get_products( tag=tag, object_type=Trace2D, ).elements - points: List[Point2D] = collection.get_products( + points: list[Point2D] = collection.get_products( tag=tag, object_type=Point2D, ).elements - axlines: List[AxLine] = collection.get_products( + axlines: list[AxLine] = collection.get_products( tag=tag, object_type=AxLine, ).elements @@ -595,7 +608,7 @@ def process_collection( logger.info(f"Finished xy plot for {tag = }") if not no_histograms: - histogram_entries: List[HistogramEntry] = collection.get_products( + histogram_entries: list[HistogramEntry] = collection.get_products( tag=tag, object_type=HistogramEntry, ).elements @@ -633,7 +646,7 @@ def process_collection( def process_tables_for_tag( self, tag: Tag, - in_dirs: List[Path], + in_dirs: list[Path], out_dir: Path, data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, ) -> TableBuilder: @@ -648,6 +661,7 @@ def process_tables_for_tag( Returns: TableBuilder: The TableBuilder instance with generated tables. + """ from trendify.api.generator.table_builder import TableBuilder @@ -658,14 +672,13 @@ def process_tables_for_tag( @classmethod def process_tag_for_streamlit( - cls, jsons: List[Path], tag: Tag + cls, jsons: list[Path], tag: Tag ) -> PlotlyFigure | None: collection = cls.union( *tuple([cls.model_validate_json(p.read_text()) for p in jsons]) ) if collection is not None: - plotly_figure: PlotlyFigure | None = None format_2ds: list[Format2D] = [] @@ -676,10 +689,10 @@ def process_tag_for_streamlit( tag=tag, object_type=HistogramEntry ).elements - traces: List[Trace2D] - points: List[Point2D] - axlines: List[AxLine] - hist_entries: List[HistogramEntry] + traces: list[Trace2D] + points: list[Point2D] + axlines: list[AxLine] + hist_entries: list[HistogramEntry] traces = [e for e in collection.elements if isinstance(e, Trace2D)] points = [e for e in collection.elements if isinstance(e, Point2D)] diff --git a/src/trendify/api/generator/data_product_generator.py b/src/trendify/api/generator/data_product_generator.py index 66595a2..507fb71 100644 --- a/src/trendify/api/generator/data_product_generator.py +++ b/src/trendify/api/generator/data_product_generator.py @@ -19,6 +19,7 @@ class DataProductGenerator: Args: processor (ProductGenerator): A callable that receives a working directory and returns a list of data products. + """ def __init__(self, processor: ProductGenerator): @@ -35,8 +36,8 @@ def process_and_save( Args: workdir (Path): working directory on which to run the processor method. data_products_fname (str): Name of data products file - """ + """ logger.info(f"Processing {workdir = } with {self._processor = }") collection = DataProductCollection.from_iterable(self._processor(workdir)) if collection.elements: diff --git a/src/trendify/api/generator/histogrammer.py b/src/trendify/api/generator/histogrammer.py index 4846aa6..aaea04f 100644 --- a/src/trendify/api/generator/histogrammer.py +++ b/src/trendify/api/generator/histogrammer.py @@ -1,11 +1,10 @@ from __future__ import annotations from pathlib import Path -from typing import List import logging # from trendify.api.data_product_collection import DataProductCollection -from trendify.api.base.helpers import Tag, DATA_PRODUCTS_FNAME_DEFAULT +from trendify.api.base.helpers import Tag from trendify.api.plotting.histogram import HistogramEntry from trendify.api.plotting.plotting import SingleAxisFigure, PlotlyFigure @@ -22,11 +21,12 @@ class Histogrammer: in_dirs (List[Path]): Directories from which the data products are to be loaded. out_dir (Path): Directory to which the generated histogram will be stored dpi (int): resolution of plot + """ def __init__( self, - in_dirs: List[Path], + in_dirs: list[Path], out_dir: Path, dpi: int, ): @@ -69,7 +69,7 @@ def __init__( def handle_histogram_entries( cls, tag: Tag, - histogram_entries: List[HistogramEntry], + histogram_entries: list[HistogramEntry], dir_out: Path, dpi: int, saf: SingleAxisFigure | None = None, @@ -82,6 +82,7 @@ def handle_histogram_entries( histogram_entries (List[HistogramEntry]): A list of [`HistogramEntry`][trendify.api.HistogramEntry]s dir_out (Path): Directory to which the generated histogram will be stored dpi (int): resolution of plot + """ if saf is None: saf = SingleAxisFigure.new(tag=tag) @@ -116,7 +117,7 @@ def handle_histogram_entries( def plotly_histogram( cls, tag: Tag, - histogram_entries: List[HistogramEntry], + histogram_entries: list[HistogramEntry], plotly_figure: PlotlyFigure | None = None, ) -> PlotlyFigure: if plotly_figure is None: diff --git a/src/trendify/api/generator/table_builder.py b/src/trendify/api/generator/table_builder.py index 6dc5db0..8dcd79d 100644 --- a/src/trendify/api/generator/table_builder.py +++ b/src/trendify/api/generator/table_builder.py @@ -1,7 +1,6 @@ from __future__ import annotations from pathlib import Path -from typing import List import logging import pandas as pd @@ -25,11 +24,12 @@ class TableBuilder: Args: in_dirs (List[Path]): directories from which to load data products out_dir (Path): directory in which tables should be saved + """ def __init__( self, - in_dirs: List[Path], + in_dirs: list[Path], out_dir: Path, ): self.in_dirs = in_dirs @@ -50,10 +50,11 @@ def load_table( Args: tag (Tag): product tag for which to collect and process. + """ logger.info(f"Making table for {tag = }") - table_entries: List[TableEntry] = [] + table_entries: list[TableEntry] = [] for subdir in self.in_dirs: collection = DataProductCollection.model_validate_json( subdir.joinpath(data_products_fname).read_text() @@ -70,7 +71,7 @@ def load_table( def process_table_entries( cls, tag: Tag, - table_entries: List[TableEntry], + table_entries: list[TableEntry], out_dir: Path, ): """ @@ -84,13 +85,14 @@ def process_table_entries( tag (Tag): product tag for which to collect and process. table_entries (List[TableEntry]): List of table entries out_dir (Path): Directory to which table CSV files should be saved + """ melted = pd.DataFrame([t.get_entry_dict() for t in table_entries]) pivot = TableEntry.pivot_table(melted=melted) save_path_partial = out_dir.joinpath(*tuple(atleast_1d(tag))) save_path_partial.parent.mkdir(exist_ok=True, parents=True) - logger.info(f"Saving to {str(save_path_partial)}_*.csv") + logger.info(f"Saving to {save_path_partial!s}_*.csv") melted.to_csv( save_path_partial.with_stem(save_path_partial.stem + "_melted").with_suffix( @@ -118,7 +120,7 @@ def process_table_entries( ) except Exception as e: logger.error( - f"Could not generate pivot table for {tag = }. Error: {str(e)}" + f"Could not generate pivot table for {tag = }. Error: {e!s}" ) @classmethod @@ -135,6 +137,7 @@ def get_stats_table( Returns: (pd.DataFrame): Dataframe having statistics (column headers) for each of the columns of the input `df`. The columns of `df` will be the row indices of the stats table. + """ # Try to convert to numeric, coerce errors to NaN numeric_df = df.apply(pd.to_numeric, errors="coerce") diff --git a/src/trendify/api/generator/xy_data_plotter.py b/src/trendify/api/generator/xy_data_plotter.py index bb47a16..78a993f 100644 --- a/src/trendify/api/generator/xy_data_plotter.py +++ b/src/trendify/api/generator/xy_data_plotter.py @@ -1,7 +1,6 @@ from __future__ import annotations from pathlib import Path -from typing import List import logging from trendify.api.generator.data_product_collection import ( @@ -29,11 +28,12 @@ class XYDataPlotter: in_dirs (List[Path]): Directories in which to search for data products from JSON files out_dir (Path): directory to which figure will be output dpi (int): Saved image resolution + """ def __init__( self, - in_dirs: List[Path], + in_dirs: list[Path], out_dir: Path, dpi: int = 500, ): @@ -56,6 +56,7 @@ def plot( Args: tag (Tag): data tag for which products are to be collected and plotted. data_products_fname (str): Data products file name + """ logger.info(f"Making xy plot for {tag = }") saf = SingleAxisFigure.new(tag=tag) @@ -64,10 +65,10 @@ def plot( collection = DataProductCollection.model_validate_json( subdir.joinpath(data_products_fname).read_text() ) - traces: List[Trace2D] = collection.get_products( + traces: list[Trace2D] = collection.get_products( tag=tag, object_type=Trace2D ).elements - points: List[Point2D] = collection.get_products( + points: list[Point2D] = collection.get_products( tag=tag, object_type=Point2D ).elements @@ -108,9 +109,9 @@ def plot( def handle_points_and_traces( cls, tag: Tag, - points: List[Point2D], - traces: List[Trace2D], - axlines: List[AxLine], # Add this parameter + points: list[Point2D], + traces: list[Trace2D], + axlines: list[AxLine], # Add this parameter dir_out: Path, dpi: int, saf: SingleAxisFigure | None = None, @@ -125,8 +126,8 @@ def handle_points_and_traces( axlines (List[AxLine]): List of axis lines to be plotted dir_out (Path): directory to output the plot dpi (int): resolution of plot - """ + """ if saf is None: saf = SingleAxisFigure.new(tag=tag) @@ -170,10 +171,10 @@ def handle_points_and_traces( def plotly_handle_points_and_traces( cls, tag: Tag, - points: List[Point2D], - traces: List[Trace2D], - axlines: List[AxLine], - hist_entries: List[HistogramEntry], + points: list[Point2D], + traces: list[Trace2D], + axlines: list[AxLine], + hist_entries: list[HistogramEntry], plotly_figure: PlotlyFigure | None = None, ) -> PlotlyFigure: if plotly_figure is None: diff --git a/src/trendify/api/plotting/axline.py b/src/trendify/api/plotting/axline.py index e2a7429..6bac333 100644 --- a/src/trendify/api/plotting/axline.py +++ b/src/trendify/api/plotting/axline.py @@ -10,17 +10,19 @@ from trendify.api.base.pen import Pen from trendify.api.plotting.plotting import PlotlyFigure -__all__ = ["LineOrientation", "AxLine"] +__all__ = ["AxLine", "LineOrientation"] logger = logging.getLogger(__name__) class LineOrientation(Enum): - """Defines orientation for axis lines + """ + Defines orientation for axis lines Attributes: HORIZONTAL (LineOrientation): Horizontal line VERTICAL (LineOrientation): Vertical line + """ HORIZONTAL = "horizontal" @@ -37,6 +39,7 @@ class AxLine(PlottableData2D): pen (Pen): Style and label information for drawing to matplotlib axes tags (Tags): Tags to be used for sorting data metadata (dict[str, str]): A dictionary of metadata + """ value: float @@ -51,6 +54,7 @@ def plot_to_ax(self, ax: Axes): Args: ax (Axes): axes to which line should be plotted + """ match self.orientation: case LineOrientation.HORIZONTAL: diff --git a/src/trendify/api/plotting/histogram.py b/src/trendify/api/plotting/histogram.py index f4e0dbe..45ecd3f 100644 --- a/src/trendify/api/plotting/histogram.py +++ b/src/trendify/api/plotting/histogram.py @@ -1,6 +1,5 @@ from __future__ import annotations -from typing import Tuple import logging from matplotlib.colors import to_rgba import plotly.graph_objects as go @@ -12,7 +11,7 @@ from trendify.api.base.helpers import HashableBase, Tags from trendify.api.plotting.plotting import PlotlyFigure -__all__ = ["HistogramStyle", "HistogramEntry"] +__all__ = ["HistogramEntry", "HistogramStyle"] logger = logging.getLogger(__name__) @@ -29,6 +28,7 @@ class HistogramStyle(HashableBase): alpha_face (float): Opacity of bar face linewidth (float): Line width of bar outline bins (int | list[int] | Tuple[int] | NDArray[Shape["*"], int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist]) + """ color: str = "k" @@ -38,12 +38,13 @@ class HistogramStyle(HashableBase): alpha_face: float = 0.3 linewidth: float = 2 zorder: int = 1 - bins: int | list[int] | Tuple[int] | NDArray[Shape["*"], int] | None = None + bins: int | list[int] | tuple[int] | NDArray[Shape["*"], int] | None = None def as_plot_kwargs(self): """ Returns: (dict): kwargs for matplotlib `hist` method + """ return { "facecolor": (self.color, self.alpha_face), @@ -62,6 +63,7 @@ def rgba_face(self) -> str: Returns: str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 + """ # Handle different color input formats if isinstance(self.color, tuple): @@ -88,6 +90,7 @@ def rgba_edge(self) -> str: Returns: str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 + """ # Handle different color input formats if isinstance(self.color, tuple): @@ -125,6 +128,7 @@ def get_face_contrast_color(self, background_luminance: float = 1.0) -> str: Returns: str: 'white' or 'black' + """ # Convert the pen's color to RGB (0-255 range) and get alpha if isinstance(self.color, tuple): @@ -167,6 +171,7 @@ class HistogramEntry(PlottableData2D): tags (Tags): Tags used to sort data products value (float | str): Value to be binned style (HistogramStyle): Style of histogram display + """ value: float | str diff --git a/src/trendify/api/plotting/plotting.py b/src/trendify/api/plotting/plotting.py index 8818a64..3955f60 100644 --- a/src/trendify/api/plotting/plotting.py +++ b/src/trendify/api/plotting/plotting.py @@ -8,19 +8,17 @@ import numpy as np import plotly.graph_objects as go -from plotly.subplots import make_subplots from trendify.api.formats.format2d import AxisScale, PlottableData2D try: from typing import Self, TYPE_CHECKING except: - from typing_extensions import Self, TYPE_CHECKING + from typing import Self, TYPE_CHECKING from pydantic import ConfigDict -from trendify.api.base.data_product import DataProduct -from trendify.api.base.helpers import HashableBase, Tag +from trendify.api.base.helpers import Tag if TYPE_CHECKING: from trendify.api.formats.format2d import Format2D, Grid @@ -28,7 +26,7 @@ from matplotlib.figure import Figure -__all__ = ["SingleAxisFigure", "PlotlyFigure"] +__all__ = ["PlotlyFigure", "SingleAxisFigure"] logger = logging.getLogger(__name__) @@ -42,6 +40,7 @@ class SingleAxisFigure: ax (Axes): Matplotlib axis to which data will be plotted fig (Figure): Matplotlib figure. tag (Tag): Figure tag. Not yet used. + """ model_config = ConfigDict(arbitrary_types_allowed=True) @@ -59,6 +58,7 @@ def new(cls, tag: Tag): Returns: (Type[Self]): New single axis figure + """ fig = plt.figure() ax = fig.add_subplot(1, 1, 1) @@ -74,6 +74,7 @@ def apply_format(self, format2d: Format2D): Args: format2d (Format2D): format information to apply to the single axis figure + """ if format2d.title_ax is not None: self.ax.set_title(format2d.title_ax) @@ -162,6 +163,7 @@ def savefig(self, path: Path, dpi: int = 500): Returns: (Self): Returns self + """ self.fig.savefig(path, dpi=dpi) return self @@ -190,6 +192,7 @@ def new(cls, tag: Tag): Returns: (Type[Self]): New single axis figure + """ fig = go.Figure() return cls(tag=tag, fig=fig) @@ -200,6 +203,7 @@ def apply_format(self, format2d: Format2D): Args: format2d (Format2D): format information to apply to the figure + """ layout_updates = {} @@ -263,7 +267,6 @@ def _log10(v: float | None): # Set legend if format2d.legend is not None: - layout_updates["showlegend"] = format2d.legend.visible layout_updates["legend"] = dict( title=format2d.legend.title, @@ -285,6 +288,7 @@ def apply_grid(self, grid: Grid): Args: grid (Grid): Grid configuration to apply + """ # Major grid @@ -323,13 +327,15 @@ def apply_grid(self, grid: Grid): self.fig.update_yaxes(**yaxis_updates) def add_data_product(self, product: PlottableData2D) -> Self: - """Add a data product to the figure + """ + Add a data product to the figure Args: product (PlottableData2D): Data product to add to figure Returns: Self: Returns self for method chaining + """ raise NotImplementedError() diff --git a/src/trendify/api/plotting/point.py b/src/trendify/api/plotting/point.py index 1c50486..8979722 100644 --- a/src/trendify/api/plotting/point.py +++ b/src/trendify/api/plotting/point.py @@ -28,6 +28,7 @@ class Point2D(XYData): Only the label information is used in Grafana. Eventually style information will be used in grafana. metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + """ x: float | str diff --git a/src/trendify/api/plotting/trace.py b/src/trendify/api/plotting/trace.py index 5b90af3..51f86a5 100644 --- a/src/trendify/api/plotting/trace.py +++ b/src/trendify/api/plotting/trace.py @@ -1,15 +1,14 @@ from __future__ import annotations -from typing import List import logging import plotly.graph_objects as go from trendify.api.plotting.plotting import PlotlyFigure try: - from typing import Self, TYPE_CHECKING + from typing import TYPE_CHECKING except: - from typing_extensions import Self, TYPE_CHECKING + from typing import TYPE_CHECKING import numpy as np from numpydantic import NDArray, Shape @@ -44,11 +43,12 @@ class Trace2D(XYData): Eventually style information will be used in grafana. tags (Tags): Tags to be used for sorting data. metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + """ model_config = ConfigDict(extra="forbid") - points: List[Point2D] + points: list[Point2D] pen: Pen = Pen() @property @@ -58,7 +58,9 @@ def x(self) -> NDArray[Shape["*"], float]: Returns: (NDArray[Shape["*"], float]): array of x values from `self.points` - '""" + ' + + """ return np.array([p.x for p in self.points]) @property @@ -68,6 +70,7 @@ def y(self) -> NDArray[Shape["*"], float]: Returns: (NDArray[Shape["*"], float]): array of y values from `self.points` + """ return np.array([p.y for p in self.points]) @@ -79,6 +82,7 @@ def propagate_format2d_and_pen(self, marker_symbol: str = ".") -> None: Args: marker_symbol (str): Valid matplotlib marker symbol + """ self.points = [ p.model_copy( @@ -109,8 +113,8 @@ def from_xy( y (NDArray[Shape["*"], float]): y values pen (Pen): Style and label for trace format2d (Format2D | None): Format to apply to plot - """ + """ return cls( tags=tags, points=[ @@ -133,6 +137,7 @@ def plot_to_ax(self, ax: Axes): Args: ax (Axes): axes to which xy data should be plotted + """ ax.plot(self.x, self.y, **self.pen.as_scatter_plot_kwargs()) diff --git a/src/trendify/api/styling/grid.py b/src/trendify/api/styling/grid.py index 7386569..593f092 100644 --- a/src/trendify/api/styling/grid.py +++ b/src/trendify/api/styling/grid.py @@ -1,10 +1,9 @@ from __future__ import annotations from enum import Enum, auto -from typing import Iterable, Optional, Tuple, Union +from collections.abc import Iterable import logging -import numpy as np from pydantic import ConfigDict from trendify.api.base.helpers import HashableBase @@ -29,6 +28,7 @@ class GridAxis(HashableBase): Attributes: show (bool): Whether to display this grid axis. pen (Pen): Style and label information for drawing to matplotlib axes. + """ show: bool = False @@ -51,6 +51,7 @@ class Grid(HashableBase): major (GridAxis): Configuration for major grid lines. minor (GridAxis): Configuration for minor grid lines. enable_minor_ticks (bool): Whether to enable minor ticks on the axes. + """ major: GridAxis = GridAxis(show=False) diff --git a/src/trendify/api/styling/legend.py b/src/trendify/api/styling/legend.py index f1b60e4..f51a5bb 100644 --- a/src/trendify/api/styling/legend.py +++ b/src/trendify/api/styling/legend.py @@ -4,7 +4,7 @@ from trendify.api.base.helpers import HashableBase -__all__ = ["LegendLocation", "Legend"] +__all__ = ["Legend", "LegendLocation"] class LegendLocation(StrEnum): @@ -65,6 +65,7 @@ class Legend(HashableBase): loc=LegendLocation.UPPER_CENTER bbox_to_anchor=(0.5, -0.02) ``` + """ visible: bool = True @@ -93,6 +94,7 @@ def plotly_location(self) -> dict: Returns: dict: Dictionary containing Plotly legend position parameters (x, y, xanchor, yanchor) + """ # Default position mappings for standard locations location_map = { diff --git a/src/trendify/api/styling/marker.py b/src/trendify/api/styling/marker.py index 9bdf763..f0c7b76 100644 --- a/src/trendify/api/styling/marker.py +++ b/src/trendify/api/styling/marker.py @@ -24,6 +24,7 @@ class Marker(HashableBase): zorder (float): Prioritization label (Union[str, None]): Legend label symbol (str): Matplotlib symbol string + """ color: str = "k" @@ -50,6 +51,7 @@ def as_scatter_plot_kwargs(self): """ Returns: (dict): dictionary of `kwargs` for [matplotlib scatter][matplotlib.axes.Axes.scatter] + """ return { "marker": self.symbol, @@ -88,6 +90,7 @@ def rgba(self) -> str: Returns: str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 + """ # Handle different color input formats if isinstance(self.color, tuple): @@ -117,6 +120,7 @@ def get_contrast_color(self, background_luminance: float = 1.0) -> str: Returns: str: 'white' or 'black' + """ # Convert the pen's color to RGB (0-255 range) and get alpha if isinstance(self.color, tuple): diff --git a/src/trendify/CLI.py b/src/trendify/cli.py similarity index 100% rename from src/trendify/CLI.py rename to src/trendify/cli.py diff --git a/src/trendify/examples.py b/src/trendify/examples.py index b84eef1..14eb9e3 100644 --- a/src/trendify/examples.py +++ b/src/trendify/examples.py @@ -12,12 +12,11 @@ # Common imports import numpy as np import pandas as pd -import matplotlib.pyplot as plt # Local imports import trendify -__all__ = ["make_example_data", "example_data_product_generator"] +__all__ = ["example_data_product_generator", "make_example_data"] class Channels(StrEnum): @@ -27,6 +26,7 @@ class Channels(StrEnum): wave1 (str): `'wave1'` wave2 (str): `'wave2'` wave3 (str): `'wave3'` + """ time = auto() @@ -42,6 +42,7 @@ def make_example_data(workdir: Path, n_folders: int = 10): Args: workdir (Path): Directory in which the sample data is to be generated n_folders (int): Number of sample data files to generate (in separate subfolders). + """ models_dir = workdir.joinpath("models") models_dir.mkdir(parents=True, exist_ok=True) @@ -97,6 +98,7 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: Args: workdir (Path): Directory containing sample data. + """ products = [] diff --git a/src/trendify/gallery.py b/src/trendify/gallery.py index e7f496f..e66b6f7 100644 --- a/src/trendify/gallery.py +++ b/src/trendify/gallery.py @@ -228,6 +228,7 @@ def run_trendify_commands(input_dir: str | Path, output_dir: str | Path): Args: input_dir (str | Path): Input directory containing data products output_dir (str | Path): Output directory for sorted products and assets + """ # Convert to Path objects input_dir = Path(input_dir).resolve() @@ -278,7 +279,7 @@ def run_trendify_commands(input_dir: str | Path, output_dir: str | Path): sys.exit(1) except Exception as e: print(f"Unexpected error executing command: {' '.join(cmd)}") - print(f"Error: {str(e)}") + print(f"Error: {e!s}") sys.exit(1) @@ -286,7 +287,6 @@ def make_gallery(output_dir: Path): """ Generates the gallery """ - # Create output directory output_dir.mkdir(exist_ok=True, parents=True) data_dir = output_dir.joinpath("data") diff --git a/src/trendify/local_server.py b/src/trendify/local_server.py index c83fca6..133d85d 100644 --- a/src/trendify/local_server.py +++ b/src/trendify/local_server.py @@ -5,8 +5,6 @@ # Standard impots from dataclasses import dataclass from pathlib import Path -import pandas as pd -from typing import Type # External imports from flask import Flask @@ -15,12 +13,11 @@ # Local imports from trendify.api import api -from flask import Flask __all__ = ["TrendifyProductServerLocal"] -def _to_product_type(type_name: str) -> Type: +def _to_product_type(type_name: str) -> type: """ Converts type name str to trendify type for searching data collection @@ -29,6 +26,7 @@ def _to_product_type(type_name: str) -> Type: Returns: (Type): Class type corresponding to given `type_name` + """ # breakpoint() product_type = api.ProductType[type_name] @@ -44,6 +42,7 @@ class ProductGetter: """ Attributes: trendy_dir (Path): Path for trendify + """ trendy_dir: Path @@ -76,8 +75,8 @@ def _get_data_products( | project "label", "x", "y" | pivot sum("y"), "x", "label" | project "label", "x", "y" - """ + """ # Interpret Product Type product_type = _to_product_type(type_name=str(product_type_name)) if product_type is None: diff --git a/src/trendify/plotly_dashboard.py b/src/trendify/plotly_dashboard.py index 63bb4f4..9908eff 100644 --- a/src/trendify/plotly_dashboard.py +++ b/src/trendify/plotly_dashboard.py @@ -4,16 +4,11 @@ import dash from dash import dcc, html, dash_table -from dash.dependencies import Input, Output, State, ALL +from dash.dependencies import Input, Output, State import plotly.graph_objects as go -from plotly.subplots import make_subplots import pandas as pd import numpy as np -from pathlib import Path -from typing import Dict, List, Any, Union, Optional, Tuple, Set -import warnings from collections import defaultdict -import os # Import from trendify # from trendify.api.API import ( @@ -70,6 +65,7 @@ def __init__(self, debug=False): Args: debug (bool): Whether to enable debug logging + """ self.debug = debug self.app = dash.Dash(__name__, suppress_callback_exceptions=True) @@ -93,6 +89,7 @@ def process_collection( Returns: dash.Dash: The configured Dash application + """ self.debug_log( f"Processing collection with {len(collection.elements or [])} elements" @@ -140,7 +137,7 @@ def process_collection( return self.app - def _create_tab_content(self, tag_str: str) -> List[html.Div]: + def _create_tab_content(self, tag_str: str) -> list[html.Div]: """Create content for a single tab.""" data = self.tag_data[tag_str] content = [] @@ -414,7 +411,7 @@ def _create_histogram_section(self, tag_str: str) -> html.Div: ) def _create_xy_figure( - self, tag_str: str, format2d: Optional[Format2D] = None + self, tag_str: str, format2d: Format2D | None = None ) -> go.Figure: """Create the XY plot figure.""" data = self.tag_data[tag_str] @@ -612,9 +609,9 @@ def _create_xy_figure( def _create_histogram_figure( self, tag_str: str, - histogram_groups: Dict[str, List[HistogramEntry]], + histogram_groups: dict[str, list[HistogramEntry]], num_bins: int, - options: List[str], + options: list[str], ) -> go.Figure: """Create the histogram figure.""" fig = go.Figure() @@ -757,7 +754,7 @@ def _create_histogram_figure( fig.update_layout(**layout_args) return fig - def _create_app_layout(self, title: str, tab_contents: List[Dict]) -> html.Div: + def _create_app_layout(self, title: str, tab_contents: list[dict]) -> html.Div: """Create the main application layout with category-based tag selection.""" if not tab_contents: return html.Div( @@ -993,6 +990,7 @@ def generate_plotly_dashboard( Returns: dash.Dash: The configured Dash application ready to run + """ generator = PlotlyDashboardGenerator(debug=debug) return generator.process_collection(collection, title) diff --git a/src/trendify/production_server.py b/src/trendify/production_server.py index a467bd9..0f9ca12 100644 --- a/src/trendify/production_server.py +++ b/src/trendify/production_server.py @@ -5,10 +5,9 @@ using the Waitress WSGI server. """ -import os import sys from pathlib import Path -from typing import Optional, Union +from typing import Union from trendify.api.api import DataProductCollection @@ -32,6 +31,7 @@ def run_production_server( Raises: ImportError: If Waitress is not installed + """ try: import waitress @@ -63,11 +63,11 @@ def run_production_server( def serve_from_data_dir( - data_dir: Union[str, Path], + data_dir: str | Path, host: str = "0.0.0.0", port: int = 8000, - title: Optional[str] = None, - tag: Optional[str] = None, + title: str | None = None, + tag: str | None = None, ) -> None: """ Serve a dashboard from a directory containing data products. @@ -78,6 +78,7 @@ def serve_from_data_dir( port: Port to listen on title: Optional title for the dashboard. If None, will use the directory name tag: Optional tag to filter data products by + """ from trendify.api.api import DataProductCollection diff --git a/src/trendify/streamlit.py b/src/trendify/streamlit.py index 30d7f34..a560a2f 100644 --- a/src/trendify/streamlit.py +++ b/src/trendify/streamlit.py @@ -2,9 +2,8 @@ from importlib.metadata import version from pathlib import Path import time -from typing import List, Sequence, Tuple +from collections.abc import Sequence -import pandas as pd import streamlit as st from trendify.api.generator.data_product_collection import DataProductCollection @@ -57,12 +56,12 @@ def make_streamlit(trendify_dir: Path): ) -def get_index_map_path(trendify_dir: Path, tag: Tuple[str, ...]) -> Path: +def get_index_map_path(trendify_dir: Path, tag: tuple[str, ...]) -> Path: products_dir = trendify_dir.joinpath("products") return products_dir.joinpath(*tag, "index_map") -def get_tags(trendify_dir: Path) -> Sequence[Tuple[str, ...]]: +def get_tags(trendify_dir: Path) -> Sequence[tuple[str, ...]]: products_dir = trendify_dir.joinpath("products") tags = [ p.parent.relative_to(products_dir).parts @@ -73,7 +72,7 @@ def get_tags(trendify_dir: Path) -> Sequence[Tuple[str, ...]]: def create_nested_expanders( - tags: Sequence[Tuple[str, ...]], current_level: int = 0 + tags: Sequence[tuple[str, ...]], current_level: int = 0 ) -> dict: # Group tags by their current level level_groups = {} @@ -93,9 +92,9 @@ def create_nested_expanders( def render_nested_expanders( - tags: Sequence[Tuple[str, ...]], + tags: Sequence[tuple[str, ...]], current_level: int = 0, - selected_tags: Tuple[str, ...] | None = None, + selected_tags: tuple[str, ...] | None = None, ): if selected_tags is None: selected_tags = None @@ -127,7 +126,7 @@ def render_nested_expanders( if group_info["complete"]: if st.button( button_text, - key=f"btn_{str('_').join(current_tag)}", # Use the full tag tuple as the key + key=f"btn_{'_'.join(current_tag)}", # Use the full tag tuple as the key type=button_type, ): st.session_state.selected_tags = current_tag @@ -141,7 +140,7 @@ def render_nested_expanders( if group_info["complete"]: if st.button( button_text, - key=f"btn_{str('_').join(current_tag)}", # Use the full tag tuple as the key + key=f"btn_{'_'.join(current_tag)}", # Use the full tag tuple as the key type=button_type, use_container_width=True, ): @@ -151,8 +150,8 @@ def render_nested_expanders( return st.session_state.get("selected_tags", None) -def make_sidebar(trendify_dir: Path) -> Tuple[str, ...] | None: - st.title(f"Trendify (v{version("trendify")})") +def make_sidebar(trendify_dir: Path) -> tuple[str, ...] | None: + st.title(f"Trendify (v{version('trendify')})") tags = get_tags(trendify_dir=trendify_dir) st.caption(f"Viewing {len(tags)} assets for {trendify_dir}") @@ -167,7 +166,7 @@ def make_sidebar(trendify_dir: Path) -> Tuple[str, ...] | None: @st.cache_data(show_time=True) -def process_tag(tag: Tuple[str, ...], trendify_dir: Path): +def process_tag(tag: tuple[str, ...], trendify_dir: Path): products_paths = list( trendify_dir.joinpath("products").joinpath(*tag).glob("*.json") ) @@ -175,10 +174,9 @@ def process_tag(tag: Tuple[str, ...], trendify_dir: Path): return DataProductCollection.process_tag_for_streamlit(products_paths, tag=tag) -def make_main_page(tag: Tuple[str, ...], trendify_dir: Path): +def make_main_page(tag: tuple[str, ...], trendify_dir: Path): """Display the main page content for the selected tag""" - - st.title(f"{" | ".join(tag)}") + st.title(f"{' | '.join(tag)}") # Process the tag for tables and plots proccessed_tag = process_tag(tag=tag, trendify_dir=trendify_dir) @@ -287,11 +285,12 @@ def make_dashboard(trendify_dir: str | Path): make_main_page(tag=selected_tag, trendify_dir=trendify_dir) with st.sidebar: - st.caption(f"Site built in {time.perf_counter()-start:.2f} seconds") + st.caption(f"Site built in {time.perf_counter() - start:.2f} seconds") def main(): - """To run use + """ + To run use streamlit run src/trendify/streamlit.py """ diff --git a/test.py b/test.py new file mode 100644 index 0000000..7af5c38 --- /dev/null +++ b/test.py @@ -0,0 +1,39 @@ +import matplotlib.pyplot as plt + +from dataclasses import dataclass + + +@dataclass +class Coordinate: + xyz = tuple[float, float, float] + + +def main(): + coords = [ + [(-1681, 52, -1274), (-2377, 62, -967), (2996, 67, 2797), (-238, 69, -211)], + [(2295, 73, -514), (1490, 70, -1091), (265, 60, -836), (-1061, 63, 217)], + [(-70, 63, -926), (2107, 60, 2934), (1223, 61, 1574), (-954, 74, 579)], + [(-2196, 58, -1390), (917, 77, -907), (1167, 70, -2741), (49, 51, 758)], + [(251, 54, -1118), (1858, 75, -2807), (-128, 52, 1605), (-2144, 60, 971)], + ] + flattened_list = [] + for sublist in coords: + for item in sublist: + flattened_list.append(item) + coords = flattened_list + + fig, ax = plt.subplots() + + for coord in coords: + ax.scatter(x=coord[0], y=coord[2]) + + min_x = min([x[0] for x in coords]) + max_x = max([x[0] for x in coords]) + min_z = min([x[2] for x in coords]) + max_z = max([x[2] for x in coords]) + fig.show() + breakpoint() + + +if __name__ == "__main__": + main() diff --git a/tests/unittests.py b/tests/unittests.py index 383ce36..d17f2e1 100644 --- a/tests/unittests.py +++ b/tests/unittests.py @@ -2,7 +2,6 @@ import numpy as np from pathlib import Path import tempfile -import json import matplotlib.pyplot as plt from trendify import ( Trace2D, diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..f97bd75 --- /dev/null +++ b/uv.lock @@ -0,0 +1,3211 @@ +version = 1 +revision = 3 +requires-python = ">=3.11" +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'win32'", + "python_full_version >= '3.14' and sys_platform == 'emscripten'", + "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version < '3.12' and sys_platform == 'win32'", + "python_full_version < '3.12' and sys_platform == 'emscripten'", + "python_full_version < '3.12' and sys_platform != 'emscripten' and sys_platform != 'win32'", +] + +[[package]] +name = "altair" +version = "6.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, + { name = "jsonschema" }, + { name = "narwhals" }, + { name = "packaging" }, + { name = "typing-extensions", marker = "python_full_version < '3.15'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/a1/5e6cc638a66da48cfc89a79c2f4810dfec00b63385f9b009ab1f069779bb/altair-6.2.2.tar.gz", hash = "sha256:a1ff9d9cfe81c75414641826312b9471780e19d39293ba0b012933f6b6cba0fe", size = 766606, upload-time = "2026-06-23T12:47:13.384Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/99/d6031f4f146298951c46b1bf1cc160c2a63f6e44b3c13a30054add100d5f/altair-6.2.2-py3-none-any.whl", hash = "sha256:94014f8ad8617c3cb163d1137359cd6db5ba134b9b46d93cfd8b609fd245a583", size = 797613, upload-time = "2026-06-23T12:47:11.451Z" }, +] + +[[package]] +name = "annotated-types" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload-time = "2024-05-20T21:33:25.928Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" }, +] + +[[package]] +name = "anyio" +version = "4.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3b/72/5562aabb8dd7181e8e860622a38bea08d17842b99ecd4c91f84ac95251b0/anyio-4.14.1.tar.gz", hash = "sha256:8d648a3544c1a700e3ff78615cd679e4c5c3f149904287e73687b2596963629e", size = 254831, upload-time = "2026-06-24T20:56:06.017Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/7b/90df4a0a816d98d6ea26f559d87836d494a2cf1fcf063be67df50a7bcc30/anyio-4.14.1-py3-none-any.whl", hash = "sha256:4e5533c5b8ff0a24f5d7a176cbe6877129cd183893f66b537f8f227d10527d72", size = 124875, upload-time = "2026-06-24T20:56:04.413Z" }, +] + +[[package]] +name = "attrs" +version = "26.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, +] + +[[package]] +name = "babel" +version = "2.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/b2/51899539b6ceeeb420d40ed3cd4b7a40519404f9baf3d4ac99dc413a834b/babel-2.18.0.tar.gz", hash = "sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d", size = 9959554, upload-time = "2026-02-01T12:30:56.078Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl", hash = "sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35", size = 10196845, upload-time = "2026-02-01T12:30:53.445Z" }, +] + +[[package]] +name = "backrefs" +version = "7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/a7/a7dd63622beef68cc0d3c3c36d472e143dd95443d5ebf14cd1a5b4dfbf11/backrefs-7.0.tar.gz", hash = "sha256:4989bb9e1e99eb23647c7160ed51fb21d0b41b5d200f2d3017da41e023097e82", size = 7012453, upload-time = "2026-04-28T16:28:04.215Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/39/39a31d7eae729ea14ed10c3ccef79371197177b9355a86cb3525709e8502/backrefs-7.0-py310-none-any.whl", hash = "sha256:b57cd227ea556b0aed3dc9b8da4628db4eabc0402c6d7fcfc69283a93955f7e9", size = 380824, upload-time = "2026-04-28T16:27:55.647Z" }, + { url = "https://files.pythonhosted.org/packages/c9/b5/9302644225ba7dfa934a2ff2b9c7bb85701313a90dddb3dfaf693fa5bae2/backrefs-7.0-py311-none-any.whl", hash = "sha256:a0fa7360c63509e9e077e174ef4e6d3c21c8db94189b9d957289ae6d794b9475", size = 392626, upload-time = "2026-04-28T16:27:57.42Z" }, + { url = "https://files.pythonhosted.org/packages/36/da/87912ddec6e06feffbaa3d7aa18fc6352bee2e8f1fee185d7d1690f8f4e8/backrefs-7.0-py312-none-any.whl", hash = "sha256:ca42ce6a49ace3d75684dfa9937f3373902a63284ecb385ce36d15e5dcb41c12", size = 398537, upload-time = "2026-04-28T16:27:58.913Z" }, + { url = "https://files.pythonhosted.org/packages/00/bb/90ba423612b6aa0adccc6b1874bcd4a9b44b660c0c16f346611e00f64ac3/backrefs-7.0-py313-none-any.whl", hash = "sha256:f2c52955d631b9e1ac4cd56209f0a3a946d592b98e7790e77699339ae01c102a", size = 400491, upload-time = "2026-04-28T16:28:00.928Z" }, + { url = "https://files.pythonhosted.org/packages/3e/5c/fb93d3092640a24dfb7bd7727a24016d7c01774ca013e60efd3f683c8002/backrefs-7.0-py314-none-any.whl", hash = "sha256:a6448b28180e3ca01134c9cf09dcebafad8531072e09903c5451748a05f24bc9", size = 412349, upload-time = "2026-04-28T16:28:02.412Z" }, +] + +[[package]] +name = "black" +version = "26.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "mypy-extensions" }, + { name = "packaging" }, + { name = "pathspec" }, + { name = "platformdirs" }, + { name = "pytokens" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/37/5628dd55bf2b34257fc7603f0fe97c40e3aaf24265f416a9c85c95ca1436/black-26.5.1.tar.gz", hash = "sha256:dd321f668053961824bcc1be1cc1df748b2d7e4fa28086b08331e577b0100a73", size = 679439, upload-time = "2026-05-18T16:53:36.107Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/96/3c3e09f09f44a37aac36b178a279cd19aa7001bd796187a7b162a294c81f/black-26.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:96ae2c733b2aabdd9986e2c5df628ff3473676cd1c5faded1ff496cf6d74083c", size = 1970639, upload-time = "2026-05-18T17:05:11.461Z" }, + { url = "https://files.pythonhosted.org/packages/83/ea/5ad117b9ee3ecd933c712bcbae610006e5b7cc9f41c526cd7ed3b6c4124c/black-26.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0e48b87e03bf109288e55cfceadcfa15ff5470aca2851a851950ed2926f450d7", size = 1792130, upload-time = "2026-05-18T17:05:12.983Z" }, + { url = "https://files.pythonhosted.org/packages/06/3a/7c448bc623fcdfa96672531beb5a616ea5e64f6975955254d7731ffb0ad9/black-26.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5119fa92ae61f786e8c3662fd60aece1d0a2dd5cca5d0c79417a95e7a4272a59", size = 1846134, upload-time = "2026-05-18T17:05:14.506Z" }, + { url = "https://files.pythonhosted.org/packages/a1/5b/0b39b3a5917f0657ac014ad2edb58c139553a478adfe7f817abf1622ff6e/black-26.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:30d3c14661f2792e9142cce3eeeb1cbc175b3eb5f733be0c8eeb99651e52b0c3", size = 1478883, upload-time = "2026-05-18T17:05:16.542Z" }, + { url = "https://files.pythonhosted.org/packages/4c/48/dc222692e0f95030db1bbfb6c857e76858bad09058221ea7aae815255327/black-26.5.1-cp311-cp311-win_arm64.whl", hash = "sha256:1ef92b76f7733f282fd096ea406200b5a286c42947412b0eaff3a74e3616cefe", size = 1277776, upload-time = "2026-05-18T17:05:18.029Z" }, + { url = "https://files.pythonhosted.org/packages/24/99/7744b906703228264ef73bdd534df88ec1ef3de45c4e78f6d31b9e32d0c9/black-26.5.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4ad6fa01f941920f54f2bbb35f3df7673428a0ef98a0b0840c2eaef3b110efa8", size = 2012518, upload-time = "2026-05-18T17:05:20.108Z" }, + { url = "https://files.pythonhosted.org/packages/b7/c0/c5a3b1636dfd09c42534f2b3cf33506814f6d3e066fb0879ffa16c1ae860/black-26.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3915f256e75a2d7cf88d8953d37f780455dc586cc72dee059c528fe77f581217", size = 1816016, upload-time = "2026-05-18T17:05:21.84Z" }, + { url = "https://files.pythonhosted.org/packages/1f/0e/36044316b65ca471d3bb6d3703fd06fb50c6b727c3562f6a5a3153634f88/black-26.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d98d4137277c75dfb898ec8d846c4fd68ba1e9cf77f95e2865c203dc18f4c3d", size = 1884150, upload-time = "2026-05-18T17:05:23.546Z" }, + { url = "https://files.pythonhosted.org/packages/b3/33/dafc5808c2af43672912111d7c3354af1615f7e2be3bed7a878461abbe4d/black-26.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:a1dca32d9f1784af512a13410ec204c6f7f0aa9797a111c42e1c03449821c264", size = 1486825, upload-time = "2026-05-18T17:05:25.004Z" }, + { url = "https://files.pythonhosted.org/packages/82/14/b965ee6ad2a311f28bdbf692def3ee9848d2ae289dab28b27657fcee3e78/black-26.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:1037d5ac7b7b310b2632ad867ec8d0e4c4819dcdb0b820f63135da746a24e418", size = 1288646, upload-time = "2026-05-18T17:05:26.477Z" }, + { url = "https://files.pythonhosted.org/packages/3f/5c/c384363980e11e25ca6b93205949bb331fbf35f4e0dbec376dfa6326cec8/black-26.5.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2b36cf2ddf5566e205f6535f782a62194a184d33e175b64ae8c40b1737522be3", size = 2009020, upload-time = "2026-05-18T17:05:28.132Z" }, + { url = "https://files.pythonhosted.org/packages/0b/df/9f31c5e0babbfed77d505fc5d120beb98b21b33feaeded3924ea941fe360/black-26.5.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1f7ea64ebfa01b50f693508fc39f875e264446d3b097088f84f203b9d09618a0", size = 1813335, upload-time = "2026-05-18T17:05:31.266Z" }, + { url = "https://files.pythonhosted.org/packages/fb/24/8e7b9a2fa61b0afd82209efe937557d180a1fa055bd7f6161eb9defc3719/black-26.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecb3e624844c798144e9bd986954e0adc81d8911a1f30f375e1252fe26e8c294", size = 1881614, upload-time = "2026-05-18T17:05:32.718Z" }, + { url = "https://files.pythonhosted.org/packages/49/ad/b4e0d9365ba8ac34f6bbab62a4b1b2dd5d618fac3fa1b8db968c844201b5/black-26.5.1-cp313-cp313-win_amd64.whl", hash = "sha256:e1a26503279b6b310669fb0b219c39e4820b77e8189fe80f522bb511f247db0a", size = 1488925, upload-time = "2026-05-18T17:05:34.259Z" }, + { url = "https://files.pythonhosted.org/packages/a1/4b/652b859bf5df88a751c30451b09338f7fd26a77d1271c666992f836b7711/black-26.5.1-cp313-cp313-win_arm64.whl", hash = "sha256:5c34b25da232ead53a6f335b76dbea124f4d152ad568b9080d6f944bc2b34b52", size = 1289883, upload-time = "2026-05-18T17:05:36.019Z" }, + { url = "https://files.pythonhosted.org/packages/a6/16/a8da8eb208c51c7f4ce74609a45d0dcc6d8a2141e45e81ee5289d1bb0d59/black-26.5.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:e88976690a64b0af98312ca958415849cb42423423c5f2ee74af4b49a97a2168", size = 2004800, upload-time = "2026-05-18T17:05:38.182Z" }, + { url = "https://files.pythonhosted.org/packages/11/8a/a479296a19e383b70a725882a6cf3d786540601ff03cabbaaf1cce864c5a/black-26.5.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:32d5ea7f6c8bdfa6e648326ebca1f02b0764e2a029edc6f8dce2627e19d468c3", size = 1815576, upload-time = "2026-05-18T17:05:40.309Z" }, + { url = "https://files.pythonhosted.org/packages/81/6b/cfaf3d39f25132c156a068f6b805576c9103a84086019507c70e1911ee7d/black-26.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ea8d16dc41655aa113cd64665e7219446cd7e4ff2248d7178eaa905190c86b18", size = 1877927, upload-time = "2026-05-18T17:05:42.463Z" }, + { url = "https://files.pythonhosted.org/packages/66/76/302e313964bcff7e28df329d39f84f5270095730d85ff0acc260610a0d82/black-26.5.1-cp314-cp314-win_amd64.whl", hash = "sha256:577f21094ea469ef92ec1adaf2c9441a226d2144d01a5be2fa823cecf6543e50", size = 1511860, upload-time = "2026-05-18T17:05:43.943Z" }, + { url = "https://files.pythonhosted.org/packages/27/4e/a3827e35e0e567f9f9ee59e2a0ab979267dca98718f25547ca8c6733afd4/black-26.5.1-cp314-cp314-win_arm64.whl", hash = "sha256:ed1a20af114c301a0269bf01163d51dbef72737fd65f850001e7cbe7f3c7abae", size = 1316632, upload-time = "2026-05-18T17:05:45.521Z" }, + { url = "https://files.pythonhosted.org/packages/94/51/f975cae76d44274cc2868dc9040ac5d58d464784610234455b4e7b19c6ef/black-26.5.1-py3-none-any.whl", hash = "sha256:4ed7f7da04046d2e488437170797d3b4a4ad83906683bcb7dfc68b673bbce5e2", size = 213693, upload-time = "2026-05-18T16:53:33.964Z" }, +] + +[[package]] +name = "blinker" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/21/28/9b3f50ce0e048515135495f198351908d99540d69bfdc8c1d15b73dc55ce/blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf", size = 22460, upload-time = "2024-11-08T17:25:47.436Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/cb/f2ad4230dc2eb1a74edf38f1a38b9b52277f75bef262d8908e60d957e13c/blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc", size = 8458, upload-time = "2024-11-08T17:25:46.184Z" }, +] + +[[package]] +name = "cachetools" +version = "7.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f4/8b/0d3945a13955303b81272f759a0331e54c5c793da455e6f5706b89d2639c/cachetools-7.1.4.tar.gz", hash = "sha256:437f55a4e0c1b01a4f3077cc470e6991d47430970e36fbcb77e2be0df4fc1cd6", size = 40085, upload-time = "2026-05-21T22:40:43.376Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8c/7b/1fc1c09cc0756cf25861a3be10565915953876da48bb228fb9a672b20a42/cachetools-7.1.4-py3-none-any.whl", hash = "sha256:323dc4127934744db5b54eb4924482d7edafbf9554e820d1531c2e08c0e4ef54", size = 16761, upload-time = "2026-05-21T22:40:41.845Z" }, +] + +[[package]] +name = "certifi" +version = "2026.6.17" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c9/c7/424b75da314c1045981bd9777432fad05a9e0c69daa4ed7e308bbaffe405/certifi-2026.6.17.tar.gz", hash = "sha256:024c88eeec92ca068db80f02b8b07c9cef7b9fe261d1d535abfd5abd6f6af432", size = 134594, upload-time = "2026-06-17T10:31:07.894Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/2f/c5464532e965badff2f4c4c1a3a83f5697f0d7c407ed0cda44aaa99bb451/certifi-2026.6.17-py3-none-any.whl", hash = "sha256:2227dcbaafe0d2f59279d1762ddddc37783ed4354594f194ffc31d20f41fc3db", size = 133289, upload-time = "2026-06-17T10:31:06.348Z" }, +] + +[[package]] +name = "cffi" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe", size = 184344, upload-time = "2025-09-08T23:22:26.456Z" }, + { url = "https://files.pythonhosted.org/packages/4f/8b/f0e4c441227ba756aafbe78f117485b25bb26b1c059d01f137fa6d14896b/cffi-2.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c", size = 180560, upload-time = "2025-09-08T23:22:28.197Z" }, + { url = "https://files.pythonhosted.org/packages/b1/b7/1200d354378ef52ec227395d95c2576330fd22a869f7a70e88e1447eb234/cffi-2.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92", size = 209613, upload-time = "2025-09-08T23:22:29.475Z" }, + { url = "https://files.pythonhosted.org/packages/b8/56/6033f5e86e8cc9bb629f0077ba71679508bdf54a9a5e112a3c0b91870332/cffi-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93", size = 216476, upload-time = "2025-09-08T23:22:31.063Z" }, + { url = "https://files.pythonhosted.org/packages/dc/7f/55fecd70f7ece178db2f26128ec41430d8720f2d12ca97bf8f0a628207d5/cffi-2.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:6824f87845e3396029f3820c206e459ccc91760e8fa24422f8b0c3d1731cbec5", size = 203374, upload-time = "2025-09-08T23:22:32.507Z" }, + { url = "https://files.pythonhosted.org/packages/84/ef/a7b77c8bdc0f77adc3b46888f1ad54be8f3b7821697a7b89126e829e676a/cffi-2.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9de40a7b0323d889cf8d23d1ef214f565ab154443c42737dfe52ff82cf857664", size = 202597, upload-time = "2025-09-08T23:22:34.132Z" }, + { url = "https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26", size = 215574, upload-time = "2025-09-08T23:22:35.443Z" }, + { url = "https://files.pythonhosted.org/packages/44/64/58f6255b62b101093d5df22dcb752596066c7e89dd725e0afaed242a61be/cffi-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9", size = 218971, upload-time = "2025-09-08T23:22:36.805Z" }, + { url = "https://files.pythonhosted.org/packages/ab/49/fa72cebe2fd8a55fbe14956f9970fe8eb1ac59e5df042f603ef7c8ba0adc/cffi-2.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414", size = 211972, upload-time = "2025-09-08T23:22:38.436Z" }, + { url = "https://files.pythonhosted.org/packages/0b/28/dd0967a76aab36731b6ebfe64dec4e981aff7e0608f60c2d46b46982607d/cffi-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743", size = 217078, upload-time = "2025-09-08T23:22:39.776Z" }, + { url = "https://files.pythonhosted.org/packages/2b/c0/015b25184413d7ab0a410775fdb4a50fca20f5589b5dab1dbbfa3baad8ce/cffi-2.0.0-cp311-cp311-win32.whl", hash = "sha256:c649e3a33450ec82378822b3dad03cc228b8f5963c0c12fc3b1e0ab940f768a5", size = 172076, upload-time = "2025-09-08T23:22:40.95Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8f/dc5531155e7070361eb1b7e4c1a9d896d0cb21c49f807a6c03fd63fc877e/cffi-2.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:66f011380d0e49ed280c789fbd08ff0d40968ee7b665575489afa95c98196ab5", size = 182820, upload-time = "2025-09-08T23:22:42.463Z" }, + { url = "https://files.pythonhosted.org/packages/95/5c/1b493356429f9aecfd56bc171285a4c4ac8697f76e9bbbbb105e537853a1/cffi-2.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:c6638687455baf640e37344fe26d37c404db8b80d037c3d29f58fe8d1c3b194d", size = 177635, upload-time = "2025-09-08T23:22:43.623Z" }, + { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271, upload-time = "2025-09-08T23:22:44.795Z" }, + { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048, upload-time = "2025-09-08T23:22:45.938Z" }, + { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload-time = "2025-09-08T23:22:47.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload-time = "2025-09-08T23:22:48.677Z" }, + { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983, upload-time = "2025-09-08T23:22:50.06Z" }, + { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519, upload-time = "2025-09-08T23:22:51.364Z" }, + { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload-time = "2025-09-08T23:22:52.902Z" }, + { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload-time = "2025-09-08T23:22:54.518Z" }, + { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload-time = "2025-09-08T23:22:55.867Z" }, + { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932, upload-time = "2025-09-08T23:22:57.188Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557, upload-time = "2025-09-08T23:22:58.351Z" }, + { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762, upload-time = "2025-09-08T23:22:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230, upload-time = "2025-09-08T23:23:00.879Z" }, + { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043, upload-time = "2025-09-08T23:23:02.231Z" }, + { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload-time = "2025-09-08T23:23:03.472Z" }, + { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload-time = "2025-09-08T23:23:04.792Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948, upload-time = "2025-09-08T23:23:06.127Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422, upload-time = "2025-09-08T23:23:07.753Z" }, + { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload-time = "2025-09-08T23:23:09.648Z" }, + { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload-time = "2025-09-08T23:23:10.928Z" }, + { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload-time = "2025-09-08T23:23:12.42Z" }, + { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload-time = "2025-09-08T23:23:14.32Z" }, + { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload-time = "2025-09-08T23:23:15.535Z" }, + { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload-time = "2025-09-08T23:23:16.761Z" }, + { url = "https://files.pythonhosted.org/packages/92/c4/3ce07396253a83250ee98564f8d7e9789fab8e58858f35d07a9a2c78de9f/cffi-2.0.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5", size = 185320, upload-time = "2025-09-08T23:23:18.087Z" }, + { url = "https://files.pythonhosted.org/packages/59/dd/27e9fa567a23931c838c6b02d0764611c62290062a6d4e8ff7863daf9730/cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13", size = 181487, upload-time = "2025-09-08T23:23:19.622Z" }, + { url = "https://files.pythonhosted.org/packages/d6/43/0e822876f87ea8a4ef95442c3d766a06a51fc5298823f884ef87aaad168c/cffi-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b", size = 220049, upload-time = "2025-09-08T23:23:20.853Z" }, + { url = "https://files.pythonhosted.org/packages/b4/89/76799151d9c2d2d1ead63c2429da9ea9d7aac304603de0c6e8764e6e8e70/cffi-2.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c", size = 207793, upload-time = "2025-09-08T23:23:22.08Z" }, + { url = "https://files.pythonhosted.org/packages/bb/dd/3465b14bb9e24ee24cb88c9e3730f6de63111fffe513492bf8c808a3547e/cffi-2.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef", size = 206300, upload-time = "2025-09-08T23:23:23.314Z" }, + { url = "https://files.pythonhosted.org/packages/47/d9/d83e293854571c877a92da46fdec39158f8d7e68da75bf73581225d28e90/cffi-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775", size = 219244, upload-time = "2025-09-08T23:23:24.541Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0f/1f177e3683aead2bb00f7679a16451d302c436b5cbf2505f0ea8146ef59e/cffi-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205", size = 222828, upload-time = "2025-09-08T23:23:26.143Z" }, + { url = "https://files.pythonhosted.org/packages/c6/0f/cafacebd4b040e3119dcb32fed8bdef8dfe94da653155f9d0b9dc660166e/cffi-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1", size = 220926, upload-time = "2025-09-08T23:23:27.873Z" }, + { url = "https://files.pythonhosted.org/packages/3e/aa/df335faa45b395396fcbc03de2dfcab242cd61a9900e914fe682a59170b1/cffi-2.0.0-cp314-cp314-win32.whl", hash = "sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f", size = 175328, upload-time = "2025-09-08T23:23:44.61Z" }, + { url = "https://files.pythonhosted.org/packages/bb/92/882c2d30831744296ce713f0feb4c1cd30f346ef747b530b5318715cc367/cffi-2.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25", size = 185650, upload-time = "2025-09-08T23:23:45.848Z" }, + { url = "https://files.pythonhosted.org/packages/9f/2c/98ece204b9d35a7366b5b2c6539c350313ca13932143e79dc133ba757104/cffi-2.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad", size = 180687, upload-time = "2025-09-08T23:23:47.105Z" }, + { url = "https://files.pythonhosted.org/packages/3e/61/c768e4d548bfa607abcda77423448df8c471f25dbe64fb2ef6d555eae006/cffi-2.0.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9", size = 188773, upload-time = "2025-09-08T23:23:29.347Z" }, + { url = "https://files.pythonhosted.org/packages/2c/ea/5f76bce7cf6fcd0ab1a1058b5af899bfbef198bea4d5686da88471ea0336/cffi-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d", size = 185013, upload-time = "2025-09-08T23:23:30.63Z" }, + { url = "https://files.pythonhosted.org/packages/be/b4/c56878d0d1755cf9caa54ba71e5d049479c52f9e4afc230f06822162ab2f/cffi-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c", size = 221593, upload-time = "2025-09-08T23:23:31.91Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0d/eb704606dfe8033e7128df5e90fee946bbcb64a04fcdaa97321309004000/cffi-2.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8", size = 209354, upload-time = "2025-09-08T23:23:33.214Z" }, + { url = "https://files.pythonhosted.org/packages/d8/19/3c435d727b368ca475fb8742ab97c9cb13a0de600ce86f62eab7fa3eea60/cffi-2.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc", size = 208480, upload-time = "2025-09-08T23:23:34.495Z" }, + { url = "https://files.pythonhosted.org/packages/d0/44/681604464ed9541673e486521497406fadcc15b5217c3e326b061696899a/cffi-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592", size = 221584, upload-time = "2025-09-08T23:23:36.096Z" }, + { url = "https://files.pythonhosted.org/packages/25/8e/342a504ff018a2825d395d44d63a767dd8ebc927ebda557fecdaca3ac33a/cffi-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512", size = 224443, upload-time = "2025-09-08T23:23:37.328Z" }, + { url = "https://files.pythonhosted.org/packages/e1/5e/b666bacbbc60fbf415ba9988324a132c9a7a0448a9a8f125074671c0f2c3/cffi-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4", size = 223437, upload-time = "2025-09-08T23:23:38.945Z" }, + { url = "https://files.pythonhosted.org/packages/a0/1d/ec1a60bd1a10daa292d3cd6bb0b359a81607154fb8165f3ec95fe003b85c/cffi-2.0.0-cp314-cp314t-win32.whl", hash = "sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e", size = 180487, upload-time = "2025-09-08T23:23:40.423Z" }, + { url = "https://files.pythonhosted.org/packages/bf/41/4c1168c74fac325c0c8156f04b6749c8b6a8f405bbf91413ba088359f60d/cffi-2.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6", size = 191726, upload-time = "2025-09-08T23:23:41.742Z" }, + { url = "https://files.pythonhosted.org/packages/ae/3a/dbeec9d1ee0844c679f6bb5d6ad4e9f198b1224f4e7a32825f47f6192b0c/cffi-2.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9", size = 184195, upload-time = "2025-09-08T23:23:43.004Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/d7/b5b7020a0565c2e9fa8c09f4b5fa6232feb326b8c20081ccded47ea368fd/charset_normalizer-3.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7641bb8895e77f921102f72833904dcd9901df5d6d72a2ab8f31d04b7e51e4e7", size = 309705, upload-time = "2026-04-02T09:26:02.191Z" }, + { url = "https://files.pythonhosted.org/packages/5a/53/58c29116c340e5456724ecd2fff4196d236b98f3da97b404bc5e51ac3493/charset_normalizer-3.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:202389074300232baeb53ae2569a60901f7efadd4245cf3a3bf0617d60b439d7", size = 206419, upload-time = "2026-04-02T09:26:03.583Z" }, + { url = "https://files.pythonhosted.org/packages/b2/02/e8146dc6591a37a00e5144c63f29fb7c97a734ea8a111190783c0e60ab63/charset_normalizer-3.4.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:30b8d1d8c52a48c2c5690e152c169b673487a2a58de1ec7393196753063fcd5e", size = 227901, upload-time = "2026-04-02T09:26:04.738Z" }, + { url = "https://files.pythonhosted.org/packages/fb/73/77486c4cd58f1267bf17db420e930c9afa1b3be3fe8c8b8ebbebc9624359/charset_normalizer-3.4.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:532bc9bf33a68613fd7d65e4b1c71a6a38d7d42604ecf239c77392e9b4e8998c", size = 222742, upload-time = "2026-04-02T09:26:06.36Z" }, + { url = "https://files.pythonhosted.org/packages/a1/fa/f74eb381a7d94ded44739e9d94de18dc5edc9c17fb8c11f0a6890696c0a9/charset_normalizer-3.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2fe249cb4651fd12605b7288b24751d8bfd46d35f12a20b1ba33dea122e690df", size = 214061, upload-time = "2026-04-02T09:26:08.347Z" }, + { url = "https://files.pythonhosted.org/packages/dc/92/42bd3cefcf7687253fb86694b45f37b733c97f59af3724f356fa92b8c344/charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:65bcd23054beab4d166035cabbc868a09c1a49d1efe458fe8e4361215df40265", size = 199239, upload-time = "2026-04-02T09:26:09.823Z" }, + { url = "https://files.pythonhosted.org/packages/4c/3d/069e7184e2aa3b3cddc700e3dd267413dc259854adc3380421c805c6a17d/charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:08e721811161356f97b4059a9ba7bafb23ea5ee2255402c42881c214e173c6b4", size = 210173, upload-time = "2026-04-02T09:26:10.953Z" }, + { url = "https://files.pythonhosted.org/packages/62/51/9d56feb5f2e7074c46f93e0ebdbe61f0848ee246e2f0d89f8e20b89ebb8f/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e060d01aec0a910bdccb8be71faf34e7799ce36950f8294c8bf612cba65a2c9e", size = 209841, upload-time = "2026-04-02T09:26:12.142Z" }, + { url = "https://files.pythonhosted.org/packages/d2/59/893d8f99cc4c837dda1fe2f1139079703deb9f321aabcb032355de13b6c7/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:38c0109396c4cfc574d502df99742a45c72c08eff0a36158b6f04000043dbf38", size = 200304, upload-time = "2026-04-02T09:26:13.711Z" }, + { url = "https://files.pythonhosted.org/packages/7d/1d/ee6f3be3464247578d1ed5c46de545ccc3d3ff933695395c402c21fa6b77/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1c2a768fdd44ee4a9339a9b0b130049139b8ce3c01d2ce09f67f5a68048d477c", size = 229455, upload-time = "2026-04-02T09:26:14.941Z" }, + { url = "https://files.pythonhosted.org/packages/54/bb/8fb0a946296ea96a488928bdce8ef99023998c48e4713af533e9bb98ef07/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:1a87ca9d5df6fe460483d9a5bbf2b18f620cbed41b432e2bddb686228282d10b", size = 210036, upload-time = "2026-04-02T09:26:16.478Z" }, + { url = "https://files.pythonhosted.org/packages/9a/bc/015b2387f913749f82afd4fcba07846d05b6d784dd16123cb66860e0237d/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:d635aab80466bc95771bb78d5370e74d36d1fe31467b6b29b8b57b2a3cd7d22c", size = 224739, upload-time = "2026-04-02T09:26:17.751Z" }, + { url = "https://files.pythonhosted.org/packages/17/ab/63133691f56baae417493cba6b7c641571a2130eb7bceba6773367ab9ec5/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ae196f021b5e7c78e918242d217db021ed2a6ace2bc6ae94c0fc596221c7f58d", size = 216277, upload-time = "2026-04-02T09:26:18.981Z" }, + { url = "https://files.pythonhosted.org/packages/06/6d/3be70e827977f20db77c12a97e6a9f973631a45b8d186c084527e53e77a4/charset_normalizer-3.4.7-cp311-cp311-win32.whl", hash = "sha256:adb2597b428735679446b46c8badf467b4ca5f5056aae4d51a19f9570301b1ad", size = 147819, upload-time = "2026-04-02T09:26:20.295Z" }, + { url = "https://files.pythonhosted.org/packages/20/d9/5f67790f06b735d7c7637171bbfd89882ad67201891b7275e51116ed8207/charset_normalizer-3.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:8e385e4267ab76874ae30db04c627faaaf0b509e1ccc11a95b3fc3e83f855c00", size = 159281, upload-time = "2026-04-02T09:26:21.74Z" }, + { url = "https://files.pythonhosted.org/packages/ca/83/6413f36c5a34afead88ce6f66684d943d91f233d76dd083798f9602b75ae/charset_normalizer-3.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:d4a48e5b3c2a489fae013b7589308a40146ee081f6f509e047e0e096084ceca1", size = 147843, upload-time = "2026-04-02T09:26:22.901Z" }, + { url = "https://files.pythonhosted.org/packages/0c/eb/4fc8d0a7110eb5fc9cc161723a34a8a6c200ce3b4fbf681bc86feee22308/charset_normalizer-3.4.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46", size = 311328, upload-time = "2026-04-02T09:26:24.331Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e3/0fadc706008ac9d7b9b5be6dc767c05f9d3e5df51744ce4cc9605de7b9f4/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2", size = 208061, upload-time = "2026-04-02T09:26:25.568Z" }, + { url = "https://files.pythonhosted.org/packages/42/f0/3dd1045c47f4a4604df85ec18ad093912ae1344ac706993aff91d38773a2/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b", size = 229031, upload-time = "2026-04-02T09:26:26.865Z" }, + { url = "https://files.pythonhosted.org/packages/dc/67/675a46eb016118a2fbde5a277a5d15f4f69d5f3f5f338e5ee2f8948fcf43/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a", size = 225239, upload-time = "2026-04-02T09:26:28.044Z" }, + { url = "https://files.pythonhosted.org/packages/4b/f8/d0118a2f5f23b02cd166fa385c60f9b0d4f9194f574e2b31cef350ad7223/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116", size = 216589, upload-time = "2026-04-02T09:26:29.239Z" }, + { url = "https://files.pythonhosted.org/packages/b1/f1/6d2b0b261b6c4ceef0fcb0d17a01cc5bc53586c2d4796fa04b5c540bc13d/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb", size = 202733, upload-time = "2026-04-02T09:26:30.5Z" }, + { url = "https://files.pythonhosted.org/packages/6f/c0/7b1f943f7e87cc3db9626ba17807d042c38645f0a1d4415c7a14afb5591f/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1", size = 212652, upload-time = "2026-04-02T09:26:31.709Z" }, + { url = "https://files.pythonhosted.org/packages/38/dd/5a9ab159fe45c6e72079398f277b7d2b523e7f716acc489726115a910097/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15", size = 211229, upload-time = "2026-04-02T09:26:33.282Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ff/531a1cad5ca855d1c1a8b69cb71abfd6d85c0291580146fda7c82857caa1/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5", size = 203552, upload-time = "2026-04-02T09:26:34.845Z" }, + { url = "https://files.pythonhosted.org/packages/c1/4c/a5fb52d528a8ca41f7598cb619409ece30a169fbdf9cdce592e53b46c3a6/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d", size = 230806, upload-time = "2026-04-02T09:26:36.152Z" }, + { url = "https://files.pythonhosted.org/packages/59/7a/071feed8124111a32b316b33ae4de83d36923039ef8cf48120266844285b/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7", size = 212316, upload-time = "2026-04-02T09:26:37.672Z" }, + { url = "https://files.pythonhosted.org/packages/fd/35/f7dba3994312d7ba508e041eaac39a36b120f32d4c8662b8814dab876431/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464", size = 227274, upload-time = "2026-04-02T09:26:38.93Z" }, + { url = "https://files.pythonhosted.org/packages/8a/2d/a572df5c9204ab7688ec1edc895a73ebded3b023bb07364710b05dd1c9be/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49", size = 218468, upload-time = "2026-04-02T09:26:40.17Z" }, + { url = "https://files.pythonhosted.org/packages/86/eb/890922a8b03a568ca2f336c36585a4713c55d4d67bf0f0c78924be6315ca/charset_normalizer-3.4.7-cp312-cp312-win32.whl", hash = "sha256:2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c", size = 148460, upload-time = "2026-04-02T09:26:41.416Z" }, + { url = "https://files.pythonhosted.org/packages/35/d9/0e7dffa06c5ab081f75b1b786f0aefc88365825dfcd0ac544bdb7b2b6853/charset_normalizer-3.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6", size = 159330, upload-time = "2026-04-02T09:26:42.554Z" }, + { url = "https://files.pythonhosted.org/packages/9e/5d/481bcc2a7c88ea6b0878c299547843b2521ccbc40980cb406267088bc701/charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d", size = 147828, upload-time = "2026-04-02T09:26:44.075Z" }, + { url = "https://files.pythonhosted.org/packages/c1/3b/66777e39d3ae1ddc77ee606be4ec6d8cbd4c801f65e5a1b6f2b11b8346dd/charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063", size = 309627, upload-time = "2026-04-02T09:26:45.198Z" }, + { url = "https://files.pythonhosted.org/packages/2e/4e/b7f84e617b4854ade48a1b7915c8ccfadeba444d2a18c291f696e37f0d3b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c", size = 207008, upload-time = "2026-04-02T09:26:46.824Z" }, + { url = "https://files.pythonhosted.org/packages/c4/bb/ec73c0257c9e11b268f018f068f5d00aa0ef8c8b09f7753ebd5f2880e248/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66", size = 228303, upload-time = "2026-04-02T09:26:48.397Z" }, + { url = "https://files.pythonhosted.org/packages/85/fb/32d1f5033484494619f701e719429c69b766bfc4dbc61aa9e9c8c166528b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18", size = 224282, upload-time = "2026-04-02T09:26:49.684Z" }, + { url = "https://files.pythonhosted.org/packages/fa/07/330e3a0dda4c404d6da83b327270906e9654a24f6c546dc886a0eb0ffb23/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd", size = 215595, upload-time = "2026-04-02T09:26:50.915Z" }, + { url = "https://files.pythonhosted.org/packages/e3/7c/fc890655786e423f02556e0216d4b8c6bcb6bdfa890160dc66bf52dee468/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215", size = 201986, upload-time = "2026-04-02T09:26:52.197Z" }, + { url = "https://files.pythonhosted.org/packages/d8/97/bfb18b3db2aed3b90cf54dc292ad79fdd5ad65c4eae454099475cbeadd0d/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859", size = 211711, upload-time = "2026-04-02T09:26:53.49Z" }, + { url = "https://files.pythonhosted.org/packages/6f/a5/a581c13798546a7fd557c82614a5c65a13df2157e9ad6373166d2a3e645d/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8", size = 210036, upload-time = "2026-04-02T09:26:54.975Z" }, + { url = "https://files.pythonhosted.org/packages/8c/bf/b3ab5bcb478e4193d517644b0fb2bf5497fbceeaa7a1bc0f4d5b50953861/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5", size = 202998, upload-time = "2026-04-02T09:26:56.303Z" }, + { url = "https://files.pythonhosted.org/packages/e7/4e/23efd79b65d314fa320ec6017b4b5834d5c12a58ba4610aa353af2e2f577/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832", size = 230056, upload-time = "2026-04-02T09:26:57.554Z" }, + { url = "https://files.pythonhosted.org/packages/b9/9f/1e1941bc3f0e01df116e68dc37a55c4d249df5e6fa77f008841aef68264f/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6", size = 211537, upload-time = "2026-04-02T09:26:58.843Z" }, + { url = "https://files.pythonhosted.org/packages/80/0f/088cbb3020d44428964a6c97fe1edfb1b9550396bf6d278330281e8b709c/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48", size = 226176, upload-time = "2026-04-02T09:27:00.437Z" }, + { url = "https://files.pythonhosted.org/packages/6a/9f/130394f9bbe06f4f63e22641d32fc9b202b7e251c9aef4db044324dac493/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a", size = 217723, upload-time = "2026-04-02T09:27:02.021Z" }, + { url = "https://files.pythonhosted.org/packages/73/55/c469897448a06e49f8fa03f6caae97074fde823f432a98f979cc42b90e69/charset_normalizer-3.4.7-cp313-cp313-win32.whl", hash = "sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e", size = 148085, upload-time = "2026-04-02T09:27:03.192Z" }, + { url = "https://files.pythonhosted.org/packages/5d/78/1b74c5bbb3f99b77a1715c91b3e0b5bdb6fe302d95ace4f5b1bec37b0167/charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110", size = 158819, upload-time = "2026-04-02T09:27:04.454Z" }, + { url = "https://files.pythonhosted.org/packages/68/86/46bd42279d323deb8687c4a5a811fd548cb7d1de10cf6535d099877a9a9f/charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b", size = 147915, upload-time = "2026-04-02T09:27:05.971Z" }, + { url = "https://files.pythonhosted.org/packages/97/c8/c67cb8c70e19ef1960b97b22ed2a1567711de46c4ddf19799923adc836c2/charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0", size = 309234, upload-time = "2026-04-02T09:27:07.194Z" }, + { url = "https://files.pythonhosted.org/packages/99/85/c091fdee33f20de70d6c8b522743b6f831a2f1cd3ff86de4c6a827c48a76/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1c2aed2e5e41f24ea8ef1590b8e848a79b56f3a5564a65ceec43c9d692dc7d8a", size = 208042, upload-time = "2026-04-02T09:27:08.749Z" }, + { url = "https://files.pythonhosted.org/packages/87/1c/ab2ce611b984d2fd5d86a5a8a19c1ae26acac6bad967da4967562c75114d/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:54523e136b8948060c0fa0bc7b1b50c32c186f2fceee897a495406bb6e311d2b", size = 228706, upload-time = "2026-04-02T09:27:09.951Z" }, + { url = "https://files.pythonhosted.org/packages/a8/29/2b1d2cb00bf085f59d29eb773ce58ec2d325430f8c216804a0a5cd83cbca/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:715479b9a2802ecac752a3b0efa2b0b60285cf962ee38414211abdfccc233b41", size = 224727, upload-time = "2026-04-02T09:27:11.175Z" }, + { url = "https://files.pythonhosted.org/packages/47/5c/032c2d5a07fe4d4855fea851209cca2b6f03ebeb6d4e3afdb3358386a684/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e", size = 215882, upload-time = "2026-04-02T09:27:12.446Z" }, + { url = "https://files.pythonhosted.org/packages/2c/c2/356065d5a8b78ed04499cae5f339f091946a6a74f91e03476c33f0ab7100/charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:c45e9440fb78f8ddabcf714b68f936737a121355bf59f3907f4e17721b9d1aae", size = 200860, upload-time = "2026-04-02T09:27:13.721Z" }, + { url = "https://files.pythonhosted.org/packages/0c/cd/a32a84217ced5039f53b29f460962abb2d4420def55afabe45b1c3c7483d/charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3534e7dcbdcf757da6b85a0bbf5b6868786d5982dd959b065e65481644817a18", size = 211564, upload-time = "2026-04-02T09:27:15.272Z" }, + { url = "https://files.pythonhosted.org/packages/44/86/58e6f13ce26cc3b8f4a36b94a0f22ae2f00a72534520f4ae6857c4b81f89/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e8ac484bf18ce6975760921bb6148041faa8fef0547200386ea0b52b5d27bf7b", size = 211276, upload-time = "2026-04-02T09:27:16.834Z" }, + { url = "https://files.pythonhosted.org/packages/8f/fe/d17c32dc72e17e155e06883efa84514ca375f8a528ba2546bee73fc4df81/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:a5fe03b42827c13cdccd08e6c0247b6a6d4b5e3cdc53fd1749f5896adcdc2356", size = 201238, upload-time = "2026-04-02T09:27:18.229Z" }, + { url = "https://files.pythonhosted.org/packages/6a/29/f33daa50b06525a237451cdb6c69da366c381a3dadcd833fa5676bc468b3/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:2d6eb928e13016cea4f1f21d1e10c1cebd5a421bc57ddf5b1142ae3f86824fab", size = 230189, upload-time = "2026-04-02T09:27:19.445Z" }, + { url = "https://files.pythonhosted.org/packages/b6/6e/52c84015394a6a0bdcd435210a7e944c5f94ea1055f5cc5d56c5fe368e7b/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:e74327fb75de8986940def6e8dee4f127cc9752bee7355bb323cc5b2659b6d46", size = 211352, upload-time = "2026-04-02T09:27:20.79Z" }, + { url = "https://files.pythonhosted.org/packages/8c/d7/4353be581b373033fb9198bf1da3cf8f09c1082561e8e922aa7b39bf9fe8/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d6038d37043bced98a66e68d3aa2b6a35505dc01328cd65217cefe82f25def44", size = 227024, upload-time = "2026-04-02T09:27:22.063Z" }, + { url = "https://files.pythonhosted.org/packages/30/45/99d18aa925bd1740098ccd3060e238e21115fffbfdcb8f3ece837d0ace6c/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7579e913a5339fb8fa133f6bbcfd8e6749696206cf05acdbdca71a1b436d8e72", size = 217869, upload-time = "2026-04-02T09:27:23.486Z" }, + { url = "https://files.pythonhosted.org/packages/5c/05/5ee478aa53f4bb7996482153d4bfe1b89e0f087f0ab6b294fcf92d595873/charset_normalizer-3.4.7-cp314-cp314-win32.whl", hash = "sha256:5b77459df20e08151cd6f8b9ef8ef1f961ef73d85c21a555c7eed5b79410ec10", size = 148541, upload-time = "2026-04-02T09:27:25.146Z" }, + { url = "https://files.pythonhosted.org/packages/48/77/72dcb0921b2ce86420b2d79d454c7022bf5be40202a2a07906b9f2a35c97/charset_normalizer-3.4.7-cp314-cp314-win_amd64.whl", hash = "sha256:92a0a01ead5e668468e952e4238cccd7c537364eb7d851ab144ab6627dbbe12f", size = 159634, upload-time = "2026-04-02T09:27:26.642Z" }, + { url = "https://files.pythonhosted.org/packages/c6/a3/c2369911cd72f02386e4e340770f6e158c7980267da16af8f668217abaa0/charset_normalizer-3.4.7-cp314-cp314-win_arm64.whl", hash = "sha256:67f6279d125ca0046a7fd386d01b311c6363844deac3e5b069b514ba3e63c246", size = 148384, upload-time = "2026-04-02T09:27:28.271Z" }, + { url = "https://files.pythonhosted.org/packages/94/09/7e8a7f73d24dba1f0035fbbf014d2c36828fc1bf9c88f84093e57d315935/charset_normalizer-3.4.7-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:effc3f449787117233702311a1b7d8f59cba9ced946ba727bdc329ec69028e24", size = 330133, upload-time = "2026-04-02T09:27:29.474Z" }, + { url = "https://files.pythonhosted.org/packages/8d/da/96975ddb11f8e977f706f45cddd8540fd8242f71ecdb5d18a80723dcf62c/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fbccdc05410c9ee21bbf16a35f4c1d16123dcdeb8a1d38f33654fa21d0234f79", size = 216257, upload-time = "2026-04-02T09:27:30.793Z" }, + { url = "https://files.pythonhosted.org/packages/e5/e8/1d63bf8ef2d388e95c64b2098f45f84758f6d102a087552da1485912637b/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:733784b6d6def852c814bce5f318d25da2ee65dd4839a0718641c696e09a2960", size = 234851, upload-time = "2026-04-02T09:27:32.44Z" }, + { url = "https://files.pythonhosted.org/packages/9b/40/e5ff04233e70da2681fa43969ad6f66ca5611d7e669be0246c4c7aaf6dc8/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a89c23ef8d2c6b27fd200a42aa4ac72786e7c60d40efdc76e6011260b6e949c4", size = 233393, upload-time = "2026-04-02T09:27:34.03Z" }, + { url = "https://files.pythonhosted.org/packages/be/c1/06c6c49d5a5450f76899992f1ee40b41d076aee9279b49cf9974d2f313d5/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c114670c45346afedc0d947faf3c7f701051d2518b943679c8ff88befe14f8e", size = 223251, upload-time = "2026-04-02T09:27:35.369Z" }, + { url = "https://files.pythonhosted.org/packages/2b/9f/f2ff16fb050946169e3e1f82134d107e5d4ae72647ec8a1b1446c148480f/charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:a180c5e59792af262bf263b21a3c49353f25945d8d9f70628e73de370d55e1e1", size = 206609, upload-time = "2026-04-02T09:27:36.661Z" }, + { url = "https://files.pythonhosted.org/packages/69/d5/a527c0cd8d64d2eab7459784fb4169a0ac76e5a6fc5237337982fd61347e/charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3c9a494bc5ec77d43cea229c4f6db1e4d8fe7e1bbffa8b6f0f0032430ff8ab44", size = 220014, upload-time = "2026-04-02T09:27:38.019Z" }, + { url = "https://files.pythonhosted.org/packages/7e/80/8a7b8104a3e203074dc9aa2c613d4b726c0e136bad1cc734594b02867972/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8d828b6667a32a728a1ad1d93957cdf37489c57b97ae6c4de2860fa749b8fc1e", size = 218979, upload-time = "2026-04-02T09:27:39.37Z" }, + { url = "https://files.pythonhosted.org/packages/02/9a/b759b503d507f375b2b5c153e4d2ee0a75aa215b7f2489cf314f4541f2c0/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:cf1493cd8607bec4d8a7b9b004e699fcf8f9103a9284cc94962cb73d20f9d4a3", size = 209238, upload-time = "2026-04-02T09:27:40.722Z" }, + { url = "https://files.pythonhosted.org/packages/c2/4e/0f3f5d47b86bdb79256e7290b26ac847a2832d9a4033f7eb2cd4bcf4bb5b/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0c96c3b819b5c3e9e165495db84d41914d6894d55181d2d108cc1a69bfc9cce0", size = 236110, upload-time = "2026-04-02T09:27:42.33Z" }, + { url = "https://files.pythonhosted.org/packages/96/23/bce28734eb3ed2c91dcf93abeb8a5cf393a7b2749725030bb630e554fdd8/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:752a45dc4a6934060b3b0dab47e04edc3326575f82be64bc4fc293914566503e", size = 219824, upload-time = "2026-04-02T09:27:43.924Z" }, + { url = "https://files.pythonhosted.org/packages/2c/6f/6e897c6984cc4d41af319b077f2f600fc8214eb2fe2d6bcb79141b882400/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:8778f0c7a52e56f75d12dae53ae320fae900a8b9b4164b981b9c5ce059cd1fcb", size = 233103, upload-time = "2026-04-02T09:27:45.348Z" }, + { url = "https://files.pythonhosted.org/packages/76/22/ef7bd0fe480a0ae9b656189ec00744b60933f68b4f42a7bb06589f6f576a/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ce3412fbe1e31eb81ea42f4169ed94861c56e643189e1e75f0041f3fe7020abe", size = 225194, upload-time = "2026-04-02T09:27:46.706Z" }, + { url = "https://files.pythonhosted.org/packages/c5/a7/0e0ab3e0b5bc1219bd80a6a0d4d72ca74d9250cb2382b7c699c147e06017/charset_normalizer-3.4.7-cp314-cp314t-win32.whl", hash = "sha256:c03a41a8784091e67a39648f70c5f97b5b6a37f216896d44d2cdcb82615339a0", size = 159827, upload-time = "2026-04-02T09:27:48.053Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1d/29d32e0fb40864b1f878c7f5a0b343ae676c6e2b271a2d55cc3a152391da/charset_normalizer-3.4.7-cp314-cp314t-win_amd64.whl", hash = "sha256:03853ed82eeebbce3c2abfdbc98c96dc205f32a79627688ac9a27370ea61a49c", size = 174168, upload-time = "2026-04-02T09:27:49.795Z" }, + { url = "https://files.pythonhosted.org/packages/de/32/d92444ad05c7a6e41fb2036749777c163baf7a0301a040cb672d6b2b1ae9/charset_normalizer-3.4.7-cp314-cp314t-win_arm64.whl", hash = "sha256:c35abb8bfff0185efac5878da64c45dafd2b37fb0383add1be155a763c1f083d", size = 153018, upload-time = "2026-04-02T09:27:51.116Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, +] + +[[package]] +name = "click" +version = "8.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/76/d4/81420972a676e8ffea40450d8c8c92943e7218a78fe9b64359836cc9876b/click-8.4.2.tar.gz", hash = "sha256:9a6cea6e60b17ebe0a44c5cc636d94f09bd66142c1cd7d8b4cd731c4917a15f6", size = 338000, upload-time = "2026-06-24T17:45:15.148Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/e2/79c688af8b210d232694e31e59da9f6ec747bae31c3f5946e4e9b98860d5/click-8.4.2-py3-none-any.whl", hash = "sha256:e6f9f66136c816745b9d65817da91d61d957fb16e02e4dcd0552553c5a197b76", size = 119243, upload-time = "2026-06-24T17:45:13.73Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "contourpy" +version = "1.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/2e/c4390a31919d8a78b90e8ecf87cd4b4c4f05a5b48d05ec17db8e5404c6f4/contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1", size = 288773, upload-time = "2025-07-26T12:01:02.277Z" }, + { url = "https://files.pythonhosted.org/packages/0d/44/c4b0b6095fef4dc9c420e041799591e3b63e9619e3044f7f4f6c21c0ab24/contourpy-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381", size = 270149, upload-time = "2025-07-26T12:01:04.072Z" }, + { url = "https://files.pythonhosted.org/packages/30/2e/dd4ced42fefac8470661d7cb7e264808425e6c5d56d175291e93890cce09/contourpy-1.3.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7", size = 329222, upload-time = "2025-07-26T12:01:05.688Z" }, + { url = "https://files.pythonhosted.org/packages/f2/74/cc6ec2548e3d276c71389ea4802a774b7aa3558223b7bade3f25787fafc2/contourpy-1.3.3-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1", size = 377234, upload-time = "2025-07-26T12:01:07.054Z" }, + { url = "https://files.pythonhosted.org/packages/03/b3/64ef723029f917410f75c09da54254c5f9ea90ef89b143ccadb09df14c15/contourpy-1.3.3-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a", size = 380555, upload-time = "2025-07-26T12:01:08.801Z" }, + { url = "https://files.pythonhosted.org/packages/5f/4b/6157f24ca425b89fe2eb7e7be642375711ab671135be21e6faa100f7448c/contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db", size = 355238, upload-time = "2025-07-26T12:01:10.319Z" }, + { url = "https://files.pythonhosted.org/packages/98/56/f914f0dd678480708a04cfd2206e7c382533249bc5001eb9f58aa693e200/contourpy-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620", size = 1326218, upload-time = "2025-07-26T12:01:12.659Z" }, + { url = "https://files.pythonhosted.org/packages/fb/d7/4a972334a0c971acd5172389671113ae82aa7527073980c38d5868ff1161/contourpy-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f", size = 1392867, upload-time = "2025-07-26T12:01:15.533Z" }, + { url = "https://files.pythonhosted.org/packages/75/3e/f2cc6cd56dc8cff46b1a56232eabc6feea52720083ea71ab15523daab796/contourpy-1.3.3-cp311-cp311-win32.whl", hash = "sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff", size = 183677, upload-time = "2025-07-26T12:01:17.088Z" }, + { url = "https://files.pythonhosted.org/packages/98/4b/9bd370b004b5c9d8045c6c33cf65bae018b27aca550a3f657cdc99acdbd8/contourpy-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42", size = 225234, upload-time = "2025-07-26T12:01:18.256Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b6/71771e02c2e004450c12b1120a5f488cad2e4d5b590b1af8bad060360fe4/contourpy-1.3.3-cp311-cp311-win_arm64.whl", hash = "sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470", size = 193123, upload-time = "2025-07-26T12:01:19.848Z" }, + { url = "https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb", size = 293419, upload-time = "2025-07-26T12:01:21.16Z" }, + { url = "https://files.pythonhosted.org/packages/53/3e/405b59cfa13021a56bba395a6b3aca8cec012b45bf177b0eaf7a202cde2c/contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6", size = 273979, upload-time = "2025-07-26T12:01:22.448Z" }, + { url = "https://files.pythonhosted.org/packages/d4/1c/a12359b9b2ca3a845e8f7f9ac08bdf776114eb931392fcad91743e2ea17b/contourpy-1.3.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7", size = 332653, upload-time = "2025-07-26T12:01:24.155Z" }, + { url = "https://files.pythonhosted.org/packages/63/12/897aeebfb475b7748ea67b61e045accdfcf0d971f8a588b67108ed7f5512/contourpy-1.3.3-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b2e8faa0ed68cb29af51edd8e24798bb661eac3bd9f65420c1887b6ca89987c8", size = 379536, upload-time = "2025-07-26T12:01:25.91Z" }, + { url = "https://files.pythonhosted.org/packages/43/8a/a8c584b82deb248930ce069e71576fc09bd7174bbd35183b7943fb1064fd/contourpy-1.3.3-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea", size = 384397, upload-time = "2025-07-26T12:01:27.152Z" }, + { url = "https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1", size = 362601, upload-time = "2025-07-26T12:01:28.808Z" }, + { url = "https://files.pythonhosted.org/packages/05/0a/a3fe3be3ee2dceb3e615ebb4df97ae6f3828aa915d3e10549ce016302bd1/contourpy-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7", size = 1331288, upload-time = "2025-07-26T12:01:31.198Z" }, + { url = "https://files.pythonhosted.org/packages/33/1d/acad9bd4e97f13f3e2b18a3977fe1b4a37ecf3d38d815333980c6c72e963/contourpy-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411", size = 1403386, upload-time = "2025-07-26T12:01:33.947Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8f/5847f44a7fddf859704217a99a23a4f6417b10e5ab1256a179264561540e/contourpy-1.3.3-cp312-cp312-win32.whl", hash = "sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69", size = 185018, upload-time = "2025-07-26T12:01:35.64Z" }, + { url = "https://files.pythonhosted.org/packages/19/e8/6026ed58a64563186a9ee3f29f41261fd1828f527dd93d33b60feca63352/contourpy-1.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b", size = 226567, upload-time = "2025-07-26T12:01:36.804Z" }, + { url = "https://files.pythonhosted.org/packages/d1/e2/f05240d2c39a1ed228d8328a78b6f44cd695f7ef47beb3e684cf93604f86/contourpy-1.3.3-cp312-cp312-win_arm64.whl", hash = "sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc", size = 193655, upload-time = "2025-07-26T12:01:37.999Z" }, + { url = "https://files.pythonhosted.org/packages/68/35/0167aad910bbdb9599272bd96d01a9ec6852f36b9455cf2ca67bd4cc2d23/contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5", size = 293257, upload-time = "2025-07-26T12:01:39.367Z" }, + { url = "https://files.pythonhosted.org/packages/96/e4/7adcd9c8362745b2210728f209bfbcf7d91ba868a2c5f40d8b58f54c509b/contourpy-1.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1", size = 274034, upload-time = "2025-07-26T12:01:40.645Z" }, + { url = "https://files.pythonhosted.org/packages/73/23/90e31ceeed1de63058a02cb04b12f2de4b40e3bef5e082a7c18d9c8ae281/contourpy-1.3.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286", size = 334672, upload-time = "2025-07-26T12:01:41.942Z" }, + { url = "https://files.pythonhosted.org/packages/ed/93/b43d8acbe67392e659e1d984700e79eb67e2acb2bd7f62012b583a7f1b55/contourpy-1.3.3-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5", size = 381234, upload-time = "2025-07-26T12:01:43.499Z" }, + { url = "https://files.pythonhosted.org/packages/46/3b/bec82a3ea06f66711520f75a40c8fc0b113b2a75edb36aa633eb11c4f50f/contourpy-1.3.3-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67", size = 385169, upload-time = "2025-07-26T12:01:45.219Z" }, + { url = "https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9", size = 362859, upload-time = "2025-07-26T12:01:46.519Z" }, + { url = "https://files.pythonhosted.org/packages/33/71/e2a7945b7de4e58af42d708a219f3b2f4cff7386e6b6ab0a0fa0033c49a9/contourpy-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659", size = 1332062, upload-time = "2025-07-26T12:01:48.964Z" }, + { url = "https://files.pythonhosted.org/packages/12/fc/4e87ac754220ccc0e807284f88e943d6d43b43843614f0a8afa469801db0/contourpy-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7", size = 1403932, upload-time = "2025-07-26T12:01:51.979Z" }, + { url = "https://files.pythonhosted.org/packages/a6/2e/adc197a37443f934594112222ac1aa7dc9a98faf9c3842884df9a9d8751d/contourpy-1.3.3-cp313-cp313-win32.whl", hash = "sha256:b20c7c9a3bf701366556e1b1984ed2d0cedf999903c51311417cf5f591d8c78d", size = 185024, upload-time = "2025-07-26T12:01:53.245Z" }, + { url = "https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263", size = 226578, upload-time = "2025-07-26T12:01:54.422Z" }, + { url = "https://files.pythonhosted.org/packages/8a/9a/2f6024a0c5995243cd63afdeb3651c984f0d2bc727fd98066d40e141ad73/contourpy-1.3.3-cp313-cp313-win_arm64.whl", hash = "sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9", size = 193524, upload-time = "2025-07-26T12:01:55.73Z" }, + { url = "https://files.pythonhosted.org/packages/c0/b3/f8a1a86bd3298513f500e5b1f5fd92b69896449f6cab6a146a5d52715479/contourpy-1.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d", size = 306730, upload-time = "2025-07-26T12:01:57.051Z" }, + { url = "https://files.pythonhosted.org/packages/3f/11/4780db94ae62fc0c2053909b65dc3246bd7cecfc4f8a20d957ad43aa4ad8/contourpy-1.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216", size = 287897, upload-time = "2025-07-26T12:01:58.663Z" }, + { url = "https://files.pythonhosted.org/packages/ae/15/e59f5f3ffdd6f3d4daa3e47114c53daabcb18574a26c21f03dc9e4e42ff0/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e4e6b05a45525357e382909a4c1600444e2a45b4795163d3b22669285591c1ae", size = 326751, upload-time = "2025-07-26T12:02:00.343Z" }, + { url = "https://files.pythonhosted.org/packages/0f/81/03b45cfad088e4770b1dcf72ea78d3802d04200009fb364d18a493857210/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ab3074b48c4e2cf1a960e6bbeb7f04566bf36b1861d5c9d4d8ac04b82e38ba20", size = 375486, upload-time = "2025-07-26T12:02:02.128Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ba/49923366492ffbdd4486e970d421b289a670ae8cf539c1ea9a09822b371a/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99", size = 388106, upload-time = "2025-07-26T12:02:03.615Z" }, + { url = "https://files.pythonhosted.org/packages/9f/52/5b00ea89525f8f143651f9f03a0df371d3cbd2fccd21ca9b768c7a6500c2/contourpy-1.3.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b", size = 352548, upload-time = "2025-07-26T12:02:05.165Z" }, + { url = "https://files.pythonhosted.org/packages/32/1d/a209ec1a3a3452d490f6b14dd92e72280c99ae3d1e73da74f8277d4ee08f/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a", size = 1322297, upload-time = "2025-07-26T12:02:07.379Z" }, + { url = "https://files.pythonhosted.org/packages/bc/9e/46f0e8ebdd884ca0e8877e46a3f4e633f6c9c8c4f3f6e72be3fe075994aa/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e", size = 1391023, upload-time = "2025-07-26T12:02:10.171Z" }, + { url = "https://files.pythonhosted.org/packages/b9/70/f308384a3ae9cd2209e0849f33c913f658d3326900d0ff5d378d6a1422d2/contourpy-1.3.3-cp313-cp313t-win32.whl", hash = "sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3", size = 196157, upload-time = "2025-07-26T12:02:11.488Z" }, + { url = "https://files.pythonhosted.org/packages/b2/dd/880f890a6663b84d9e34a6f88cded89d78f0091e0045a284427cb6b18521/contourpy-1.3.3-cp313-cp313t-win_amd64.whl", hash = "sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8", size = 240570, upload-time = "2025-07-26T12:02:12.754Z" }, + { url = "https://files.pythonhosted.org/packages/80/99/2adc7d8ffead633234817ef8e9a87115c8a11927a94478f6bb3d3f4d4f7d/contourpy-1.3.3-cp313-cp313t-win_arm64.whl", hash = "sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301", size = 199713, upload-time = "2025-07-26T12:02:14.4Z" }, + { url = "https://files.pythonhosted.org/packages/72/8b/4546f3ab60f78c514ffb7d01a0bd743f90de36f0019d1be84d0a708a580a/contourpy-1.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a", size = 292189, upload-time = "2025-07-26T12:02:16.095Z" }, + { url = "https://files.pythonhosted.org/packages/fd/e1/3542a9cb596cadd76fcef413f19c79216e002623158befe6daa03dbfa88c/contourpy-1.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77", size = 273251, upload-time = "2025-07-26T12:02:17.524Z" }, + { url = "https://files.pythonhosted.org/packages/b1/71/f93e1e9471d189f79d0ce2497007731c1e6bf9ef6d1d61b911430c3db4e5/contourpy-1.3.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5", size = 335810, upload-time = "2025-07-26T12:02:18.9Z" }, + { url = "https://files.pythonhosted.org/packages/91/f9/e35f4c1c93f9275d4e38681a80506b5510e9327350c51f8d4a5a724d178c/contourpy-1.3.3-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4", size = 382871, upload-time = "2025-07-26T12:02:20.418Z" }, + { url = "https://files.pythonhosted.org/packages/b5/71/47b512f936f66a0a900d81c396a7e60d73419868fba959c61efed7a8ab46/contourpy-1.3.3-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:afe5a512f31ee6bd7d0dda52ec9864c984ca3d66664444f2d72e0dc4eb832e36", size = 386264, upload-time = "2025-07-26T12:02:21.916Z" }, + { url = "https://files.pythonhosted.org/packages/04/5f/9ff93450ba96b09c7c2b3f81c94de31c89f92292f1380261bd7195bea4ea/contourpy-1.3.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3", size = 363819, upload-time = "2025-07-26T12:02:23.759Z" }, + { url = "https://files.pythonhosted.org/packages/3e/a6/0b185d4cc480ee494945cde102cb0149ae830b5fa17bf855b95f2e70ad13/contourpy-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b", size = 1333650, upload-time = "2025-07-26T12:02:26.181Z" }, + { url = "https://files.pythonhosted.org/packages/43/d7/afdc95580ca56f30fbcd3060250f66cedbde69b4547028863abd8aa3b47e/contourpy-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36", size = 1404833, upload-time = "2025-07-26T12:02:28.782Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/366af18a6d386f41132a48f033cbd2102e9b0cf6345d35ff0826cd984566/contourpy-1.3.3-cp314-cp314-win32.whl", hash = "sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d", size = 189692, upload-time = "2025-07-26T12:02:30.128Z" }, + { url = "https://files.pythonhosted.org/packages/7d/c2/57f54b03d0f22d4044b8afb9ca0e184f8b1afd57b4f735c2fa70883dc601/contourpy-1.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd", size = 232424, upload-time = "2025-07-26T12:02:31.395Z" }, + { url = "https://files.pythonhosted.org/packages/18/79/a9416650df9b525737ab521aa181ccc42d56016d2123ddcb7b58e926a42c/contourpy-1.3.3-cp314-cp314-win_arm64.whl", hash = "sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339", size = 198300, upload-time = "2025-07-26T12:02:32.956Z" }, + { url = "https://files.pythonhosted.org/packages/1f/42/38c159a7d0f2b7b9c04c64ab317042bb6952b713ba875c1681529a2932fe/contourpy-1.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772", size = 306769, upload-time = "2025-07-26T12:02:34.2Z" }, + { url = "https://files.pythonhosted.org/packages/c3/6c/26a8205f24bca10974e77460de68d3d7c63e282e23782f1239f226fcae6f/contourpy-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77", size = 287892, upload-time = "2025-07-26T12:02:35.807Z" }, + { url = "https://files.pythonhosted.org/packages/66/06/8a475c8ab718ebfd7925661747dbb3c3ee9c82ac834ccb3570be49d129f4/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d304906ecc71672e9c89e87c4675dc5c2645e1f4269a5063b99b0bb29f232d13", size = 326748, upload-time = "2025-07-26T12:02:37.193Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a3/c5ca9f010a44c223f098fccd8b158bb1cb287378a31ac141f04730dc49be/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe", size = 375554, upload-time = "2025-07-26T12:02:38.894Z" }, + { url = "https://files.pythonhosted.org/packages/80/5b/68bd33ae63fac658a4145088c1e894405e07584a316738710b636c6d0333/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f", size = 388118, upload-time = "2025-07-26T12:02:40.642Z" }, + { url = "https://files.pythonhosted.org/packages/40/52/4c285a6435940ae25d7410a6c36bda5145839bc3f0beb20c707cda18b9d2/contourpy-1.3.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7301b89040075c30e5768810bc96a8e8d78085b47d8be6e4c3f5a0b4ed478a0", size = 352555, upload-time = "2025-07-26T12:02:42.25Z" }, + { url = "https://files.pythonhosted.org/packages/24/ee/3e81e1dd174f5c7fefe50e85d0892de05ca4e26ef1c9a59c2a57e43b865a/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4", size = 1322295, upload-time = "2025-07-26T12:02:44.668Z" }, + { url = "https://files.pythonhosted.org/packages/3c/b2/6d913d4d04e14379de429057cd169e5e00f6c2af3bb13e1710bcbdb5da12/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f", size = 1391027, upload-time = "2025-07-26T12:02:47.09Z" }, + { url = "https://files.pythonhosted.org/packages/93/8a/68a4ec5c55a2971213d29a9374913f7e9f18581945a7a31d1a39b5d2dfe5/contourpy-1.3.3-cp314-cp314t-win32.whl", hash = "sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae", size = 202428, upload-time = "2025-07-26T12:02:48.691Z" }, + { url = "https://files.pythonhosted.org/packages/fa/96/fd9f641ffedc4fa3ace923af73b9d07e869496c9cc7a459103e6e978992f/contourpy-1.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc", size = 250331, upload-time = "2025-07-26T12:02:50.137Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8c/469afb6465b853afff216f9528ffda78a915ff880ed58813ba4faf4ba0b6/contourpy-1.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b", size = 203831, upload-time = "2025-07-26T12:02:51.449Z" }, + { url = "https://files.pythonhosted.org/packages/a5/29/8dcfe16f0107943fa92388c23f6e05cff0ba58058c4c95b00280d4c75a14/contourpy-1.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497", size = 278809, upload-time = "2025-07-26T12:02:52.74Z" }, + { url = "https://files.pythonhosted.org/packages/85/a9/8b37ef4f7dafeb335daee3c8254645ef5725be4d9c6aa70b50ec46ef2f7e/contourpy-1.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8", size = 261593, upload-time = "2025-07-26T12:02:54.037Z" }, + { url = "https://files.pythonhosted.org/packages/0a/59/ebfb8c677c75605cc27f7122c90313fd2f375ff3c8d19a1694bda74aaa63/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e", size = 302202, upload-time = "2025-07-26T12:02:55.947Z" }, + { url = "https://files.pythonhosted.org/packages/3c/37/21972a15834d90bfbfb009b9d004779bd5a07a0ec0234e5ba8f64d5736f4/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989", size = 329207, upload-time = "2025-07-26T12:02:57.468Z" }, + { url = "https://files.pythonhosted.org/packages/0c/58/bd257695f39d05594ca4ad60df5bcb7e32247f9951fd09a9b8edb82d1daa/contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77", size = 225315, upload-time = "2025-07-26T12:02:58.801Z" }, +] + +[[package]] +name = "coverage" +version = "7.14.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b4/91/0a7c28934e50d8ac9a7b117712d176f2953c3170bccced5eaacfa3e96175/coverage-7.14.3.tar.gz", hash = "sha256:1a7563a443f3d53fdeb040ec8c9f7466aed7ca3dc5891aa09d3ca3625fa4387f", size = 924398, upload-time = "2026-06-22T23:10:25.584Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/24/efb17eb94018dd3415d0e8a76a4786a866e8964aa9c50f033399d23939c2/coverage-7.14.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e574801e1d643561594aa021206c46d80b257e9853087090ba97bed8b0a509d3", size = 220501, upload-time = "2026-06-22T23:08:02.182Z" }, + { url = "https://files.pythonhosted.org/packages/76/93/32f1bfca6cdd34259c8af42820a034b7a28dfb44969a13ed38c17e0ba5b0/coverage-7.14.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f82b6bb7d75a2613e85d07cefa3a8c973d0544a8993337f6e2728e4a1e94c305", size = 221008, upload-time = "2026-06-22T23:08:03.701Z" }, + { url = "https://files.pythonhosted.org/packages/eb/88/0d0f974855ff905d15a64f7873d00bdc4182e2736267486c6634f4af293c/coverage-7.14.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:a2335ea5fed26af2e831094964fa3f8fae60b45f7e37fcc2d3b615b2add3ad87", size = 251420, upload-time = "2026-06-22T23:08:05.211Z" }, + { url = "https://files.pythonhosted.org/packages/39/7f/117dd2ec65e4140576f8ef991d88220f9b806769f7a8c20e0550c0f924e2/coverage-7.14.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fbb8c3a98e779013786ae01d229662aeacbc77100efbd3f2f245219ace5af700", size = 253331, upload-time = "2026-06-22T23:08:06.672Z" }, + { url = "https://files.pythonhosted.org/packages/87/55/f0bd6d6538e3f16829fb8a44b6c0d2fe9da638bbfdd6a20f8b5da8f4fa81/coverage-7.14.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ac082660de8f429ba0ea363595abb838998570b9a7546777c60f413ab902bbde", size = 255441, upload-time = "2026-06-22T23:08:08.208Z" }, + { url = "https://files.pythonhosted.org/packages/1e/98/aa71f7879019c846a8a9662579ea4484b0202cf1e252ffeed647075e7eca/coverage-7.14.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8ac012839ff7e396030f1e94e10553a431d14e4de2ab65cb3acb72bbd5628ca2", size = 257398, upload-time = "2026-06-22T23:08:09.749Z" }, + { url = "https://files.pythonhosted.org/packages/f3/4f/5fd367e59844190f5965015d7bee899e67a89d13eb2760118479bf836f2f/coverage-7.14.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5952f8c1bda2a5347154450379316e6dfa4d934d62ca35f6784451e6f55074fb", size = 251558, upload-time = "2026-06-22T23:08:11.37Z" }, + { url = "https://files.pythonhosted.org/packages/8f/de/5383a6ee5a6376701fe07d980fa8e4a66c0c377fead16712720340d701a3/coverage-7.14.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8cf0f2509acb4619e2471a1951089054dd58ebea7a912066d2ea56dd4c24ca4a", size = 253134, upload-time = "2026-06-22T23:08:13.04Z" }, + { url = "https://files.pythonhosted.org/packages/01/99/09542b1a99f788e3daec7f0fadc288821e71aca9ea298d51bfa1ba79fed5/coverage-7.14.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2e41fd3aab806770008279a93879b0924b16247e09ab537c043d08bbca53b4ab", size = 251195, upload-time = "2026-06-22T23:08:14.606Z" }, + { url = "https://files.pythonhosted.org/packages/02/9d/722fe8c13f0fbb064491b9e8656e56a606286792e5068c47ca1042e773e8/coverage-7.14.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f0a47095963cfe054e0df178daca95aec21e680d6076da807c3add28dfe920f7", size = 254959, upload-time = "2026-06-22T23:08:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/fb/58/943627179ff1d82da9e54d0a5b0bb907bb19cf19515599ccd921de50b469/coverage-7.14.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:a090cbf9521e78ffdb2fcf448b72902afe9f5923ff6a12d5c0d0120200348af9", size = 250914, upload-time = "2026-06-22T23:08:18.03Z" }, + { url = "https://files.pythonhosted.org/packages/a5/d4/803efcbf9ae5567454a0c71e983589529448e2704ee0da2dc0163d482f18/coverage-7.14.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4d310baf69a4fbe8a098ce727e4808a34866ac718a6f759ae659cbd3221358bc", size = 251824, upload-time = "2026-06-22T23:08:19.704Z" }, + { url = "https://files.pythonhosted.org/packages/32/79/3f78ea9563132746eed5cecb75d2e576f9d8fec45a47242b5ae0950b82a3/coverage-7.14.3-cp311-cp311-win32.whl", hash = "sha256:74fdd718d88fe144f4579b8747873a07ec3f04cb837d5faec5a25d9e22fa31a8", size = 222594, upload-time = "2026-06-22T23:08:21.311Z" }, + { url = "https://files.pythonhosted.org/packages/85/22/9ebbc5a2ab42ac5d0eea1f48648629e1de9bbe41ec243ed6b93d55a5a53f/coverage-7.14.3-cp311-cp311-win_amd64.whl", hash = "sha256:cc96aa922e21d4bc5d5ed3c915cef27dfcbc13686f47d5e378d647fbfba655a2", size = 223073, upload-time = "2026-06-22T23:08:23.318Z" }, + { url = "https://files.pythonhosted.org/packages/71/af/69d5fcc16cb555153f99cec5467922f226be0369f7335a9506856d2a7bd0/coverage-7.14.3-cp311-cp311-win_arm64.whl", hash = "sha256:c66f9f9d4f1e9712eb9b1de5310f881d4e2188cfcba5065e1a8490f38687f2c4", size = 222617, upload-time = "2026-06-22T23:08:25.054Z" }, + { url = "https://files.pythonhosted.org/packages/bd/b0/8a911f6ffe6974dac4df95b468ab9a2899d0e59f0f99a489afeec39f00bc/coverage-7.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3d74ff26299c4879ce3a4d826f9d3d4d556fd285fde7bbce3c0ef5a8ab1cec24", size = 220672, upload-time = "2026-06-22T23:08:26.621Z" }, + { url = "https://files.pythonhosted.org/packages/36/16/0fc0cb52538783dbbae0934b834f5a58fd5354380ee6cad4a07b15dc845d/coverage-7.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:96150a9cf3468ea20f0bc5d0e21b3df8972c31480ef90fa7614b773cc6429665", size = 221035, upload-time = "2026-06-22T23:08:28.372Z" }, + { url = "https://files.pythonhosted.org/packages/77/e2/421ccfbb48335ac49e93301478cf5d623b0c2bf1c0cadd8e2b2fc6c0c710/coverage-7.14.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:27d07a46500ba23515b838dbcf52512026af04090755cf6cc64166d88c9b9a1a", size = 252540, upload-time = "2026-06-22T23:08:30.226Z" }, + { url = "https://files.pythonhosted.org/packages/06/c2/05b8c890097c61a7f4406b35396b997a635200ded0339eda83dfbe526c5f/coverage-7.14.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:621e13c6108234d7960aaf5762ab5c3c00f33c30c15af06dcbff0c73bf112727", size = 255274, upload-time = "2026-06-22T23:08:31.876Z" }, + { url = "https://files.pythonhosted.org/packages/dc/be/b6d9efe447f8ba3c3c854195f326bd64c54b907d936cd2fdebf8767ec72e/coverage-7.14.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4b60ca6d8af70473491a15a343cbabab2e8f9ea66a4376e81c7aa24876a6f977", size = 256389, upload-time = "2026-06-22T23:08:33.843Z" }, + { url = "https://files.pythonhosted.org/packages/d4/3c/f26e50acc429e608bc534ac06f0a3c169019c798178ec5e9de3dbc0df9c9/coverage-7.14.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c90a7cdd5e380e1ce02f19792e2ac2fbfbf177e35a27e69fd3e873b30d895c0c", size = 258648, upload-time = "2026-06-22T23:08:35.481Z" }, + { url = "https://files.pythonhosted.org/packages/9e/a2/01c1fabf816c8e1dae197e258edf878a3d3ddc86fbda34b76e5794277d8f/coverage-7.14.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5d788e5fd55347eef06ca0732c77d04a264de67e8ff24631270cdff3767a60cf", size = 252949, upload-time = "2026-06-22T23:08:37.562Z" }, + { url = "https://files.pythonhosted.org/packages/89/c6/941166dd79c31fd44a13063780ae8d552eee0089a0a0930b9bdb7df554ed/coverage-7.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:62c7f79db2851c95ef020e5d28b97afde3daf9f7febcd35b53e05638f729063f", size = 254310, upload-time = "2026-06-22T23:08:39.174Z" }, + { url = "https://files.pythonhosted.org/packages/10/31/80b1fd028201a961033ce95be3cd1e39e521b3762e6b4a1ac1616cb291e7/coverage-7.14.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:90f7608aeb5d9b60b523b9fb2a4ee1973867cc4865a3f26fe6c7577073b70205", size = 252453, upload-time = "2026-06-22T23:08:40.84Z" }, + { url = "https://files.pythonhosted.org/packages/5f/85/c3d9addd94c4b524f3f4af0232075f5fe7170ce99a1386edff803e5934db/coverage-7.14.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:1e3b91f9c4740aeb571ecf82e5e8d8e4ab62d34fcb5a5d4e5baa38c6f7d2857c", size = 256522, upload-time = "2026-06-22T23:08:42.494Z" }, + { url = "https://files.pythonhosted.org/packages/91/14/e5a0575f73795af3a7a9ae13dadf812e17d32422896839987dc3f86947e1/coverage-7.14.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:c946099774a7699de03cbd0ff0a64e21aed4525eed9d959adde4afe6d15758ef", size = 252023, upload-time = "2026-06-22T23:08:44.243Z" }, + { url = "https://files.pythonhosted.org/packages/38/9b/9652ee531937ce3b8a63a8896885b2b4a2d56adc30e53c9540c666286d88/coverage-7.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:16b206e521feb8b7133a45754643dead0538489cf8b783b90cf5f4e3299625fd", size = 253893, upload-time = "2026-06-22T23:08:46.113Z" }, + { url = "https://files.pythonhosted.org/packages/b1/05/42678841c8c38e4b08bdfc48269f5a16dfbf5806000fe6a89b4cece3c691/coverage-7.14.3-cp312-cp312-win32.whl", hash = "sha256:ea3169c7116eb6cdf7608c6c7da9ecfcb3da40688e3a510fac2d1d2bafd6dc35", size = 222734, upload-time = "2026-06-22T23:08:47.858Z" }, + { url = "https://files.pythonhosted.org/packages/df/87/07a4fcee55177a25f1b52331a8e92cf4f2c53b1a9c75ce2981fd59c684ad/coverage-7.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:7ea52fc08f007bcc494d4bb3df3851e95843d881860ba38fe2c64dc100db5e7d", size = 223266, upload-time = "2026-06-22T23:08:49.494Z" }, + { url = "https://files.pythonhosted.org/packages/aa/34/2b8b66a989282ea7b370beb49f50bab29470dc30bb0b03935b6b802782f7/coverage-7.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:8cec0ad652ec57790970d817490105bd917d783c2f7b38d6b58a0ca312e1a336", size = 222655, upload-time = "2026-06-22T23:08:51.766Z" }, + { url = "https://files.pythonhosted.org/packages/a9/83/7fefbf5df23ed2b7f489907564a7b34b9b07098128e12e0fdfa92626e456/coverage-7.14.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:47968988b367990ae4ab17523790c38cd125e02c6bfd379b6022be2d40bdc38c", size = 220699, upload-time = "2026-06-22T23:08:53.522Z" }, + { url = "https://files.pythonhosted.org/packages/31/e6/38c3653ff6d56d704b29241362387ca824e38e15b76fdcb7096538195790/coverage-7.14.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0ee68f5c34812780f3a7063382c0a9fcbb99985b7ddcdcaa626e4f3fb2e0783a", size = 221068, upload-time = "2026-06-22T23:08:55.571Z" }, + { url = "https://files.pythonhosted.org/packages/20/86/4f5c45d51c5cd10a128933f0fd235393c9146abbfd2ce2dfa68b3267ead3/coverage-7.14.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:fa9e5c6857a7e80fa22ace5cf3550ae392bbfc322f1d8dd2d2d5a8be38cec027", size = 252060, upload-time = "2026-06-22T23:08:57.464Z" }, + { url = "https://files.pythonhosted.org/packages/82/50/dfce42eff2cecabcd5a9bbad5489449c87db3415f408d23ffee417ce01f6/coverage-7.14.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:98a0859b0e98e43e1178a9402e19c8127766b14f7109a374d976e5a62c0e5c73", size = 254657, upload-time = "2026-06-22T23:08:59.453Z" }, + { url = "https://files.pythonhosted.org/packages/ba/d2/639ceb1bc8038fd0d66768278d5dc22df3391918b8278c2a21aa2602a531/coverage-7.14.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:69918344541ed9c8368566c2adc03c0e33d4550d7faa87d1b35e49b6a3286ea9", size = 255892, upload-time = "2026-06-22T23:09:01.291Z" }, + { url = "https://files.pythonhosted.org/packages/8b/96/002094a10e113512500dc1e10430a449417e17b0f90f7d496bcb820208b7/coverage-7.14.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b7f300ac92cd4b570724c8ffbbd0c130fee298d2447f41d5a3abf58976fae1de", size = 258026, upload-time = "2026-06-22T23:09:03.017Z" }, + { url = "https://files.pythonhosted.org/packages/0b/ec/286a5d2fad9c4bee59bd724feeb7d5bf8303c6c9200b51d1dd945a9c72b0/coverage-7.14.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:11a7ec9f97ab950f4c5af62229befc7faf208fdbc0116d3902d7e306cf2c5abd", size = 252285, upload-time = "2026-06-22T23:09:04.773Z" }, + { url = "https://files.pythonhosted.org/packages/d9/7d/a17753a0b12dd48d0d50f5fab079ad99d3be1eac790494d89f3a417ca0b9/coverage-7.14.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a571bd889cd36c5922ce8e42e059f9d37d02301531d11374afa4c87a578625d5", size = 254023, upload-time = "2026-06-22T23:09:06.513Z" }, + { url = "https://files.pythonhosted.org/packages/86/ef/a76c6ceba6a2c313f905310abf2701d534cada22d372db11731831e9e209/coverage-7.14.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:de76caefc8deabb0dd1678b6a980be97d14c8d87e213ac194dbf8b09e96d63fb", size = 251989, upload-time = "2026-06-22T23:09:08.382Z" }, + { url = "https://files.pythonhosted.org/packages/d9/39/353013a75fec0fb49f7553519f9d52b4441e902e5178c93f38eb6c07cedb/coverage-7.14.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:d20a15c622194234161535459affa8f7905830391c9ccfa060d495dbfe3a1c7f", size = 256144, upload-time = "2026-06-22T23:09:10.369Z" }, + { url = "https://files.pythonhosted.org/packages/29/0e/613878555d734def11c5b20a2701a15cb3781b9e9ea749da27c5f436e928/coverage-7.14.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:b488bd4b23397db62e7a9459129d01ff06a846582a732efd24834b24a6ada498", size = 251808, upload-time = "2026-06-22T23:09:12.057Z" }, + { url = "https://files.pythonhosted.org/packages/af/76/359c058c9cfdcf1e8b107663881225b03b364a320017eda24a2a66e55102/coverage-7.14.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a3693b4153394d265f44fb855fdc80e72403024d4d6f91c4871b334d028e4e0", size = 253579, upload-time = "2026-06-22T23:09:13.858Z" }, + { url = "https://files.pythonhosted.org/packages/1d/d9/4ba2f060933a30ebe363cef9f67a365b0a317e580c0d5d9169d56a73ef1c/coverage-7.14.3-cp313-cp313-win32.whl", hash = "sha256:338b19131ab1a6b767b462bfcbaa692e7ae22f24463e39d49b02a83410ff6b37", size = 222741, upload-time = "2026-06-22T23:09:15.636Z" }, + { url = "https://files.pythonhosted.org/packages/76/e8/196ebc25d8f34c06d43a6e9c8513c9266ef8dbf3b5672beb1a00cf5e29fa/coverage-7.14.3-cp313-cp313-win_amd64.whl", hash = "sha256:b3d77f7f196abdef7e01415de1bce09f216189e83e58159cfeef2b92d0464994", size = 223283, upload-time = "2026-06-22T23:09:17.478Z" }, + { url = "https://files.pythonhosted.org/packages/7c/af/51d2aac6417523a286f10fb25f09eb9518a84df9f1151e93ff6871f34849/coverage-7.14.3-cp313-cp313-win_arm64.whl", hash = "sha256:e6230e688c7c3e65cedd41a774eb4ec221adc6bfee13768231015b702d5e4150", size = 222678, upload-time = "2026-06-22T23:09:19.7Z" }, + { url = "https://files.pythonhosted.org/packages/61/56/14e3b97facbfa1304dd19e676e26599ad359f04714bed32f7f1c5a88efdc/coverage-7.14.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:605ab2b566a22bd94834529d66d295c364aba84afd3e5498285c7a524017b1fc", size = 220741, upload-time = "2026-06-22T23:09:21.616Z" }, + { url = "https://files.pythonhosted.org/packages/12/1d/db378b5cca433b90b893f26dab728b280ddd89f272a1fdfed4aeaa05c686/coverage-7.14.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:a3c2134809e80fac091bfed18a6991b5a5eb5df5ae32b17ac4f4f99864b73dd7", size = 221068, upload-time = "2026-06-22T23:09:23.452Z" }, + { url = "https://files.pythonhosted.org/packages/47/f0/3f8421b20d9c4fcd39be9a8ca3c3fda8bc204b44efbd09fede153afd3e2f/coverage-7.14.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:c02efd507227bde9969cab0db8f48890eb3b5dcad6afac57a4792df4133543ce", size = 252117, upload-time = "2026-06-22T23:09:25.458Z" }, + { url = "https://files.pythonhosted.org/packages/27/ca/59ea35fb99743549ec8b37eff141ece4431fea590c89e536ed8032ef45cf/coverage-7.14.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:1bb93c2aa61d2a5b38f1526546d95cf4132cb681e541a337bf8dfd092be816e5", size = 254622, upload-time = "2026-06-22T23:09:27.523Z" }, + { url = "https://files.pythonhosted.org/packages/c8/25/ec6de51ae7493b92a1cf74d1b763121c29636759167e2a593ba4db5881e4/coverage-7.14.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f502e948e03e866538048bba081c075caaa62e5bda6ea5b7432e45f587eb462a", size = 255968, upload-time = "2026-06-22T23:09:29.43Z" }, + { url = "https://files.pythonhosted.org/packages/5d/05/c8bfc77823f42b4664fb25842f13b567022f6f84a4c83c8ecbb16734b7cb/coverage-7.14.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9973ef2463f8e6cfb61a6324126bb3e17d67a85f22f58d856e583ea2e3ca6501", size = 258284, upload-time = "2026-06-22T23:09:31.397Z" }, + { url = "https://files.pythonhosted.org/packages/f6/15/1d1b242027124a32b26ef01f82018b8c4ef34ef174aa6aeba7b1eeef48e8/coverage-7.14.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9be4e7d4c5ca0427889f8f9d614bd630c2be741b1de7699bca3b2b6c0e41003e", size = 252143, upload-time = "2026-06-22T23:09:33.256Z" }, + { url = "https://files.pythonhosted.org/packages/74/b6/d2a9842fd2a5d7d27f1ac851c043a734a494ad75402c5331db3da79ed691/coverage-7.14.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a574912f3bde4b0619f6e97d01aa590b70998859244793769eb3a6df78ee56d3", size = 253976, upload-time = "2026-06-22T23:09:35.351Z" }, + { url = "https://files.pythonhosted.org/packages/fd/30/e1600ddf7e226db5558bb5323d2186fff00f505c4b764643ec89ce5d8175/coverage-7.14.3-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:e343fb086c9cd780b38622fea7c369acd64c1a0724312149b5d769c387a2b1f5", size = 251942, upload-time = "2026-06-22T23:09:37.313Z" }, + { url = "https://files.pythonhosted.org/packages/d9/2c/9159de64f9dd648e324328d588a44cfab1e331eb5259ce1141afe2a92dfb/coverage-7.14.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:3c68df8e61f1e09633fefc7538297145623957a048534368c9d212782aa5e845", size = 256220, upload-time = "2026-06-22T23:09:39.165Z" }, + { url = "https://files.pythonhosted.org/packages/91/67/b7f536cc2c124f48e91b22fbb741d2261f4e3d310faf6f76007f47566e5d/coverage-7.14.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:3e5b550a128419373c2f6cec28a244207013ef15f5cbcff6a5ca09d1dfaaf027", size = 251756, upload-time = "2026-06-22T23:09:41.056Z" }, + { url = "https://files.pythonhosted.org/packages/dd/ec/f3718038e2d4860c715a55428377ca7f6c75872caf98cabd982e1d76967d/coverage-7.14.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2bfc4dd0a912329eccc7484a7d0b2a38032b38c40663b1e1ac595f10c457954b", size = 253413, upload-time = "2026-06-22T23:09:43.306Z" }, + { url = "https://files.pythonhosted.org/packages/b8/a5/91f11efeef89b3cc9b30461128db15b0511ef813ab889a7b7ab636b3a497/coverage-7.14.3-cp314-cp314-win32.whl", hash = "sha256:0423d64c013057a06e70f070f073cec4b0cbc7d2b27f3c7007292f2ff1d52965", size = 222946, upload-time = "2026-06-22T23:09:45.261Z" }, + { url = "https://files.pythonhosted.org/packages/58/fd/98ac9f524d9ec378de831c034dbdeb544ca7ef7d2d9c9996daf232a037fd/coverage-7.14.3-cp314-cp314-win_amd64.whl", hash = "sha256:92c22e19ce64ca3f2ad751f16f14df1468b4c231bd6af97185063a9c292a0cb3", size = 223436, upload-time = "2026-06-22T23:09:47.177Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a0/7cd612d650a772a0ae80144443406bf61981c896c3d57c9e6e79fb2cdbd1/coverage-7.14.3-cp314-cp314-win_arm64.whl", hash = "sha256:41de778bd41780586e2b04912079c73089ab5d839624e28db3bdb26de638da92", size = 222861, upload-time = "2026-06-22T23:09:49.384Z" }, + { url = "https://files.pythonhosted.org/packages/55/57/017353fab573779c0d00448e47d102edd36c792f7b6f233a4d89a7a08384/coverage-7.14.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:8427f370ca67db4c975d2a26acfc0e5783ca0b52444dbc50278ace0f35445949", size = 221474, upload-time = "2026-06-22T23:09:51.417Z" }, + { url = "https://files.pythonhosted.org/packages/69/92/90cf1f1a5c468a9c1b7ba2716e0e205293ad9b02f5f573a6de4318b15ba1/coverage-7.14.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d8e88f335544a47e22ae2e45b344772925ec65166555c958720d5ed971880891", size = 221738, upload-time = "2026-06-22T23:09:53.487Z" }, + { url = "https://files.pythonhosted.org/packages/a4/c0/4df964fa539f8399fd7679c09c472d73744de334686fd3f01e3a2465ce4e/coverage-7.14.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:beaab199b9e5ceaf5a225e16a9d4df136f2a1eae0a5c20de1e277c8a5225f388", size = 263101, upload-time = "2026-06-22T23:09:55.895Z" }, + { url = "https://files.pythonhosted.org/packages/06/76/e5d33b2576ae3bf2be2058cd1cae57774b61e400f2c3c58f3783dc2ffb4a/coverage-7.14.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b3ff255799f5a1676c71c1c32ec01fd043aa09d57b3d95764b24992757184784", size = 265225, upload-time = "2026-06-22T23:09:57.904Z" }, + { url = "https://files.pythonhosted.org/packages/61/d2/e52419afe391a39ba27fdefaf0737d8e34bf03faef6ab3b3006545bbd0d0/coverage-7.14.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:878832eaac515b62decfa76965aed558775f86bf1fc8cca76993c0c84ae31aed", size = 267643, upload-time = "2026-06-22T23:09:59.938Z" }, + { url = "https://files.pythonhosted.org/packages/58/7a/f2625d8d5006b6b20fba5afaef00b24a763fe96476ea798a3076cbc1f84e/coverage-7.14.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:611e62cb9386096d81b63e0a05330750268617231e7bd598e1fe77482a2c58a5", size = 268762, upload-time = "2026-06-22T23:10:01.943Z" }, + { url = "https://files.pythonhosted.org/packages/7d/bf/908024006bba57127354d74e938954b9c3cd765cc2e0412dc9c37b415cda/coverage-7.14.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:02c41de2a88011b893050fc9830267d927a50a215f7ad5ec17349db7090ccf26", size = 262208, upload-time = "2026-06-22T23:10:03.954Z" }, + { url = "https://files.pythonhosted.org/packages/34/a0/d4f9296441b909817442fdb26bd77a698f08272ec683a7394b00eb2e47a0/coverage-7.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:526ce9721116af23b1065089f0b75046fe521e7772ab94b641cd66b7a0421889", size = 265096, upload-time = "2026-06-22T23:10:05.936Z" }, + { url = "https://files.pythonhosted.org/packages/e8/da/4ae4f3f4e477b56a4ce1e5c48a35eff38a94b50130ce5bdc897024741cfc/coverage-7.14.3-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:e4ed44705ca4bead6fc977a8b741f2145608289b33c8a9b42a95d0f15aedbf4d", size = 262699, upload-time = "2026-06-22T23:10:07.973Z" }, + { url = "https://files.pythonhosted.org/packages/d8/7a/6927148073ff32856d78baa77b4ddc07a9be7e90020f9db0661c4ca523a1/coverage-7.14.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:2415902f385a23dcc4ccd26e0ba803249a169af6a930c003a4c715eeb9a5444e", size = 266433, upload-time = "2026-06-22T23:10:10.145Z" }, + { url = "https://files.pythonhosted.org/packages/f7/a7/774f658dbe9c4c3f5daa86a87e0459ac3832e4e3cc67affe078547f727b9/coverage-7.14.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:b75ee850fc2d7c831e883220c445b035f2224de2ba6103f1e56dbd237ab913f7", size = 261547, upload-time = "2026-06-22T23:10:12.191Z" }, + { url = "https://files.pythonhosted.org/packages/3d/14/a0c18c0376c43cbf973f43ef6ca20019c950597180e6396232f7b6a27102/coverage-7.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:dc9b4e35e7c3920e925ba7f14886fd5fbe481232754624e832ddba66c7535635", size = 263859, upload-time = "2026-06-22T23:10:14.492Z" }, + { url = "https://files.pythonhosted.org/packages/10/ac/43a3d0f460af524b131a6191805bc5d18b806ab4e828fbf82e8c8c3af446/coverage-7.14.3-cp314-cp314t-win32.whl", hash = "sha256:7b27c822a8161afbe48e99f1adfb098d270ae7e0f7d7b0555ce110529bdb69cc", size = 223250, upload-time = "2026-06-22T23:10:16.758Z" }, + { url = "https://files.pythonhosted.org/packages/3f/5f/d5e5c56b0712e96ce8f69fe7dbf229ff938b437bc50862743c8a0d2cea84/coverage-7.14.3-cp314-cp314t-win_amd64.whl", hash = "sha256:39e1dbbb6ff2c338e0196a482558a792a1de3aa64261196f5cdb3da016ad9cda", size = 224082, upload-time = "2026-06-22T23:10:19.23Z" }, + { url = "https://files.pythonhosted.org/packages/62/35/947cbd5be1d3bcbbdc43d6791de8a56c6501903311d42915ae06a82815f0/coverage-7.14.3-cp314-cp314t-win_arm64.whl", hash = "sha256:68520c90babfa2d560eca6d497921ed3a4f469623bd709733124491b2aa8ef3f", size = 223400, upload-time = "2026-06-22T23:10:21.24Z" }, + { url = "https://files.pythonhosted.org/packages/eb/e3/a0aa32bfa3a081951f60a23bc0e7b512891ef0eecda1153cf1d8ba36c6b1/coverage-7.14.3-py3-none-any.whl", hash = "sha256:fb7e18afb6e903c1a92401a2f0501ac277dca527bb9ca6fe1f691a8a0026a0e8", size = 212469, upload-time = "2026-06-22T23:10:23.405Z" }, +] + +[package.optional-dependencies] +toml = [ + { name = "tomli", marker = "python_full_version <= '3.11'" }, +] + +[[package]] +name = "cryptography" +version = "49.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1f/99/d1c90d6041656cc6ee229dc99cd67fd0cd5aec3c5f7d72fffc27cc750054/cryptography-49.0.0.tar.gz", hash = "sha256:f89660a348f4f78a92366240a61404e337586ef7f5909a2fef59ca88ef505493", size = 854345, upload-time = "2026-06-12T20:02:30.512Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/22/adf66990e63584a68dfb50c24f48a125c07b1699899381c8151e63ed458c/cryptography-49.0.0-cp311-abi3-macosx_11_0_arm64.whl", hash = "sha256:966fe0e9c67490071f14c0d2b1cb2dfb3023c5ce39457343931415f08382f2db", size = 4032100, upload-time = "2026-06-12T20:02:32.143Z" }, + { url = "https://files.pythonhosted.org/packages/09/41/3797cfaf69cae04a13ee78ebd83f0678d9c02b4779d21ce24445326f1a69/cryptography-49.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:36d1709f992593689b45bda411498d62c6e365f2ca00b84657d4dadd24de16db", size = 4692978, upload-time = "2026-06-12T20:01:21.305Z" }, + { url = "https://files.pythonhosted.org/packages/e6/8b/43011f7ebe515a8aa20d61f290a326cd890c2e738e16e59eaff8d9c3a412/cryptography-49.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0e959b578856a3924bc0cbb710fc12c387b9412a951389f3ca61704a9e25f325", size = 4716422, upload-time = "2026-06-12T20:01:48.566Z" }, + { url = "https://files.pythonhosted.org/packages/4a/91/01ce7303a4579e6d3a6abef01bd322848e9ea7a219adcabc5048b9033571/cryptography-49.0.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:53ecee2e23f7169b6117e99fc8a944e5e50f79e69758a83b52a00cb98ab2b2d2", size = 4700503, upload-time = "2026-06-12T20:02:47.091Z" }, + { url = "https://files.pythonhosted.org/packages/62/99/a2c95cf8293f07491e9e27c20cc4dcd18176d944e674679adeb1d0173fd6/cryptography-49.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:2eda353d8a27bcbcaa4cbed18994a74ab4d19a2ca897db188ea269ab9b71419b", size = 5309779, upload-time = "2026-06-12T20:02:08.987Z" }, + { url = "https://files.pythonhosted.org/packages/20/2c/0622f20ff02b2ef32558733443805dc82fd4c275be01b2d19d14676f3a1b/cryptography-49.0.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:2afe9051da7ae7bd5905da5a949280c7d2bb75682e188f650a9d0f2756b834c6", size = 4749683, upload-time = "2026-06-12T20:02:03.335Z" }, + { url = "https://files.pythonhosted.org/packages/a3/5b/c5246635d5fd3b64e0d45ae10e99fd32fe9676a79915ccfe5a61ba9af1a5/cryptography-49.0.0-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:0b82e28ee398a386f0807bba7884d30f25218855690f45115831bcce5d90822c", size = 4337874, upload-time = "2026-06-12T20:02:54.323Z" }, + { url = "https://files.pythonhosted.org/packages/6d/88/05563c7fe2e914e87d1a536d06fe83e66b4e1d95cb593e05aea375531da8/cryptography-49.0.0-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:ccac2bfebc306b862133e3bb71f3f6ee8bb525240089b2d952e4144b3a6d5da7", size = 4700283, upload-time = "2026-06-12T20:01:34.822Z" }, + { url = "https://files.pythonhosted.org/packages/c4/b6/d7696e4e890d6ae1469935164c9e5215c557671cb78d6e3f458ccceaa632/cryptography-49.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:d0527ce944105f257f605a827d6ebead966c752038b6e8656abb9c5edee6fc68", size = 5265844, upload-time = "2026-06-12T20:01:24.09Z" }, + { url = "https://files.pythonhosted.org/packages/a9/3c/f3ad17eecc1a57b0ba236dc01f90e783c51f4a2f35f64777cc4f47a184b2/cryptography-49.0.0-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:cbc77da8c523d5abd028635ba850a6966fcee2c82e2bf65a41d1d8afe0f98be9", size = 4749290, upload-time = "2026-06-12T20:01:30.848Z" }, + { url = "https://files.pythonhosted.org/packages/4f/01/339573cf1023163a400b0b5d16f6d507de413b9f60be6fd1b77feeaf6737/cryptography-49.0.0-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:b87e65d263b3e5d3bb92a57e2a6638e2f31110fa7aa890c7b2dbba42248d0a3f", size = 4834612, upload-time = "2026-06-12T20:01:29.246Z" }, + { url = "https://files.pythonhosted.org/packages/71/fd/577302e213a1be9468f92d1afef66fcf1ef83d516819d9992ca547f592bd/cryptography-49.0.0-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:66ec79c3904820572d7e987abdf304281f141d37ad9a489b8e97066e7b9b6459", size = 4980804, upload-time = "2026-06-12T20:01:42.853Z" }, + { url = "https://files.pythonhosted.org/packages/1f/09/f42b1d190c5ba75f72062a387f8030d1d75f6ab035788f1d9c4b01de6525/cryptography-49.0.0-cp311-abi3-win_amd64.whl", hash = "sha256:e5dfc1e64de5677cec922ffa8da89c546d0415bf6efdf081842e5d44c84e1f0e", size = 3810026, upload-time = "2026-06-12T20:02:39.262Z" }, + { url = "https://files.pythonhosted.org/packages/ec/9e/db72b3ae7fc9cfad53e630e56c6ae83b9b6ff0bf3718ffb8012d20b3aabf/cryptography-49.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:73a205dce83953d131a4aa1e0fd917a2fd1c5b1eef251e9d7152efefcbf5caf7", size = 4013892, upload-time = "2026-06-12T20:02:10.735Z" }, + { url = "https://files.pythonhosted.org/packages/86/12/c48a424f38db03027be9f7ed5c7dc5de9933dbee992865f98b13727a009d/cryptography-49.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:196ecd6a36e4e9aa10270393bb98d8df88fccee0bf1e5128b91ae4eb4375896d", size = 4678835, upload-time = "2026-06-12T20:02:48.743Z" }, + { url = "https://files.pythonhosted.org/packages/68/28/8a3ad4653662c93fc44dc4e5d8fd374c25c42e07b34bbfbadf49cf57a5a8/cryptography-49.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7abcee80084cda3f7691f3eb1ce480d8df49cec637b429aa35986c1de71738aa", size = 4697239, upload-time = "2026-06-12T20:02:56.03Z" }, + { url = "https://files.pythonhosted.org/packages/a8/b2/2193fc74f81aee4f9b62733133b73b5176718932ed8f2e4b03fa040480a6/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:4ae387c9cb68ea569ca17e490d66d8142b81c3cc814bf179974b7d146e490bbb", size = 4685593, upload-time = "2026-06-12T20:02:50.666Z" }, + { url = "https://files.pythonhosted.org/packages/47/f1/1d3eaa243bfc5de4a187b22aa8c048b3e4980bfbe830ac46e6bac2e66947/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_ppc64le.whl", hash = "sha256:f37d847238971164fdbc68ade6f6574aecc9c0af714190e2083429ff68f4ce9d", size = 5289961, upload-time = "2026-06-12T20:01:46.468Z" }, + { url = "https://files.pythonhosted.org/packages/58/39/2d51306721330c486495853eda1c567880ff036de15a14c4b74f399934af/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:c2bc30226390d60ea19d9f82b19db005fe0452154a23c1c410c12ea801e43561", size = 4731145, upload-time = "2026-06-12T20:02:16.832Z" }, + { url = "https://files.pythonhosted.org/packages/17/50/983e838c7fd0d87fd8c969bcdd328edaf5f756e38df5281637424c155873/cryptography-49.0.0-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:07cab27cc7b7e0fd28e5e26bb9eeedde5c135c868b46de4a27845abe94af6122", size = 4321719, upload-time = "2026-06-12T20:02:52.611Z" }, + { url = "https://files.pythonhosted.org/packages/a7/f5/8f571d7e27c55bce9f76f026143bcb1e040a4233149ecca0bea5fa5dd5f7/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl", hash = "sha256:b20133d204d2bb56ba047642199603876c872026ca53e79c35b83772ab2cc505", size = 4685209, upload-time = "2026-06-12T20:02:07.282Z" }, + { url = "https://files.pythonhosted.org/packages/e7/84/0e27016a6fc5a0886f797018b26aa42f40c09a82332bff77822a451deaaa/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_ppc64le.whl", hash = "sha256:b970c6da94d5bb18629db453d14f2a1300f6bf59b61e9b82377931ef95504866", size = 5246285, upload-time = "2026-06-12T20:01:32.439Z" }, + { url = "https://files.pythonhosted.org/packages/11/2d/5e1fb307cb5931881516b464c98774b3f2c36b5d4bb9a2830253cf553cad/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl", hash = "sha256:d8ecde755e2e91bf773fc94e8c9d730cd7f2007004cb492263a794ec3899a1c8", size = 4730441, upload-time = "2026-06-12T20:02:01.469Z" }, + { url = "https://files.pythonhosted.org/packages/e4/c0/bff5a02ee731d207d6a1ed51732549d8c53d2bc8da1d10ec6f2844201d68/cryptography-49.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e3fb64c420688e5319ae25113a354015abbd8dffbfbc41781a1ea66fc7622ac3", size = 4815869, upload-time = "2026-06-12T20:01:36.574Z" }, + { url = "https://files.pythonhosted.org/packages/b9/26/814681d14248d95d73d5c3eea0c39a94eb8302df966f670a2c60de90974b/cryptography-49.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:32703d93296f5c1f4b53349ad3a250c2cae0fdecd3a3dd5d47e616d8d616af27", size = 4960948, upload-time = "2026-06-12T20:02:18.688Z" }, + { url = "https://files.pythonhosted.org/packages/4c/fe/93ecac273d3738939d023612ad12cca9a3740a5345d69fda04134c43fd96/cryptography-49.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:33cd0565932807baddb67b96dbee92f2c374b5c89dee09fd74079aeb8c8dba61", size = 3799153, upload-time = "2026-06-12T20:01:39.059Z" }, + { url = "https://files.pythonhosted.org/packages/19/2a/5bb823f5bedcf80718cea7fbc95ec5515cca3769633c4b01a32be7f30e7c/cryptography-49.0.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:ec5e529fb80935c94fe7b729f9972b50e351a0e6b50aa294fd5cabb109fcc29a", size = 4025947, upload-time = "2026-06-12T20:01:25.745Z" }, + { url = "https://files.pythonhosted.org/packages/3d/df/40577043ca124e17012f408ddddaeb213b856336ac82ddb3bc915f39e29f/cryptography-49.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f78ff2c9ed8dc2d036b0f4d640e22522213d047c1b14e61205a7e55c80a494d4", size = 4692429, upload-time = "2026-06-12T20:01:53.628Z" }, + { url = "https://files.pythonhosted.org/packages/2c/99/2d13299eb3dd27b02dcfaafcc91d6b5cb3329f7cbd6d8f51921acd566c1a/cryptography-49.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:35b151772baff2c74cba7fa290ceaff4c3b11c0c881eb93eb5dbc05a7cfbba18", size = 4700968, upload-time = "2026-06-12T20:02:45.383Z" }, + { url = "https://files.pythonhosted.org/packages/a5/4d/9c0cd02f95e2602dd5e563da149ee0830abef3537be8b34dc56281ebe27a/cryptography-49.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:0f21641cf4b30fca7aee061ced0ec7ad7b073518088b7c9969a297c0ae796c69", size = 4697758, upload-time = "2026-06-12T20:01:41.13Z" }, + { url = "https://files.pythonhosted.org/packages/24/01/186c825898477d77e2324d5360fefe622ff1d8d1963ec0554e2cada8ec77/cryptography-49.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:9e82dcc8e56052715fb18b2429e3bca4823b1629136a2084fc45a9a5cecb9b64", size = 5298863, upload-time = "2026-06-12T20:02:24.579Z" }, + { url = "https://files.pythonhosted.org/packages/b8/7b/62cbbab75d0659865bf0273790031544a0b16c8072d258f9428dcd8190dc/cryptography-49.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6f2debedf9ca60cf1d5bd466475638af5130f89965605cd818484d19987d3a21", size = 4735983, upload-time = "2026-06-12T20:01:50.14Z" }, + { url = "https://files.pythonhosted.org/packages/6c/72/3e798c064bc39e471008075d0f9bc9daf77a80879c092e4a8e170c585ed4/cryptography-49.0.0-cp39-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:8c25ceb16df5b9435f3f6a9829204985b0e0cbee3b48aacd432c7d2c850b44d9", size = 4334173, upload-time = "2026-06-12T20:01:44.743Z" }, + { url = "https://files.pythonhosted.org/packages/f0/ee/6fca21d1ac73e06f8bef71940abfd4d2f6472b4bca284d770f32bd4086f6/cryptography-49.0.0-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:28d8b15e6275f12c8a207dc309dfa957903c927d08d0cc937ee3f63f200693cc", size = 4697298, upload-time = "2026-06-12T20:02:20.918Z" }, + { url = "https://files.pythonhosted.org/packages/67/d0/a5fcd3515f0bae49a7b6d0413cc1bdccdcc1fc0047037a0d480642cdc5d6/cryptography-49.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:6fc361c34fb6aac015ce19435876635e5c6d21db31998b0920f675f131e043b8", size = 5254338, upload-time = "2026-06-12T20:02:22.737Z" }, + { url = "https://files.pythonhosted.org/packages/a0/84/84fe36f19caf857d61cb7fc9c63035a47ffabd84ea12d1d393148efa3615/cryptography-49.0.0-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:2400ef9c9e2299a25614eb1dea3db54a69b1349efd043bfac9c67630d136df36", size = 4735650, upload-time = "2026-06-12T20:02:41.389Z" }, + { url = "https://files.pythonhosted.org/packages/6c/a0/db537264e234f7273a73ec020873d6d6b39dfd8a53db78b550ca8320440e/cryptography-49.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:67e1d20ad9ef3a563c59ef22e7a8a0b8210bd26604369ea4a30a7c66aefe504e", size = 4834820, upload-time = "2026-06-12T20:01:51.847Z" }, + { url = "https://files.pythonhosted.org/packages/93/77/8df9eb486495979bccecd1062e2eaf435250e84437040295b57d09048b0b/cryptography-49.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:42b0684e0e40cf26122427802486f6d93aea593612603a94fbf260c7eb1e9c1b", size = 4967968, upload-time = "2026-06-12T20:02:12.524Z" }, + { url = "https://files.pythonhosted.org/packages/c2/e6/f60198ea8d9dfa15fff9ed4ca02ce362f6eadd9ba757dcc50634c4257b63/cryptography-49.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:026ac7423e6fa66872d3bf889be5974507da3944f866f704fa200eadacd00001", size = 3785547, upload-time = "2026-06-12T20:02:26.847Z" }, + { url = "https://files.pythonhosted.org/packages/63/d3/4a83af35d65e3fad632c926fad684c193ea4398569ccb0bbbc7fe8f5dc9a/cryptography-49.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:fc1e275c2f1d97b1a6450b8b0ea3ebfa6e087a611c2b26cb2404d48588abab7b", size = 3993685, upload-time = "2026-06-12T20:02:14.883Z" }, + { url = "https://files.pythonhosted.org/packages/d6/a7/f9dac0ab7f80368c56993a7bf638ef9935f825c91902798481fac0898138/cryptography-49.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c83782480a4a9da4d0feb51950131ba32e12e70813848b3343f6e18c28a66838", size = 4676239, upload-time = "2026-06-12T20:02:28.793Z" }, + { url = "https://files.pythonhosted.org/packages/d7/70/2ba3769dd0ae167e2f33dfa9592d45db6ff9a61d62ca1a5b3d1bdd09068f/cryptography-49.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b39efa323140595abd3ecca8529d321ae50f55f3aa3ba9cc81ea56a6011953d5", size = 4715584, upload-time = "2026-06-12T20:01:27.495Z" }, + { url = "https://files.pythonhosted.org/packages/94/64/2923570ac1c0bd3a737aa366ac3abbbbde273042308b8cde95e2364a6e6a/cryptography-49.0.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:b47db11c2c3525083296069b98ac5221907455e989ae0c2e3008bde851921615", size = 4675885, upload-time = "2026-06-12T20:01:55.49Z" }, + { url = "https://files.pythonhosted.org/packages/ab/f8/614dc7e051418cfe53d55173c1e24c6b0085e89996fe90508c2fdf769aef/cryptography-49.0.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:084ef1af862eb07ec46d25f68689f2102a9fc0e05ce7b80f14f5fe51e4eef0f6", size = 4715449, upload-time = "2026-06-12T20:02:05.469Z" }, + { url = "https://files.pythonhosted.org/packages/aa/50/a9caea39ad19c431c1a3f8a31114df65b260cdfe67786b6c7e7c040c4c44/cryptography-49.0.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:be9fcb48a55f023493482827d4f459bd263cc20efde64f204b97c123201850c6", size = 3783731, upload-time = "2026-06-12T20:02:43.319Z" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "dash" +version = "4.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "flask" }, + { name = "importlib-metadata" }, + { name = "janus" }, + { name = "mcp" }, + { name = "nest-asyncio" }, + { name = "plotly" }, + { name = "pydantic" }, + { name = "requests" }, + { name = "retrying" }, + { name = "setuptools" }, + { name = "typing-extensions" }, + { name = "werkzeug" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/10/3c/0608ea83920ddbd27de3aeb60d48e56efb3390c2cfb44dabfd8dc25c0ba2/dash-4.3.0.tar.gz", hash = "sha256:1ec96641d5e3c06b7dfffad8241e345533d70327d96f722a8e13b827c287341b", size = 8095642, upload-time = "2026-06-19T14:56:03.655Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/ad/0a230dc6cd85bb38e7fe6acc9fbaeb19ddf16ababcb54038ae81128da591/dash-4.3.0-py3-none-any.whl", hash = "sha256:cbbe79a2bb1a5e46fbbbddc33f9f558419442c2d55cd12526078f489b5801cc0", size = 8445443, upload-time = "2026-06-19T14:55:59.024Z" }, +] + +[[package]] +name = "filelock" +version = "3.29.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e6/dc/be6cbe99670cd6e4ad387123647cb08e0c32975e223f82551e914c5568a6/filelock-3.29.4.tar.gz", hash = "sha256:10cdb3656fc44541cdf30652a93fb10ec6b05325620eb316bd26893e4201538a", size = 63028, upload-time = "2026-06-13T16:12:00.744Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/37/a065dc3bd6e49423a6532c642ca7378d3f467b1ef44c2800c937af7f9739/filelock-3.29.4-py3-none-any.whl", hash = "sha256:dac1648087d5115554850d113e7dd8c83ab2d38e3435dde2d4f163847e57b767", size = 42757, upload-time = "2026-06-13T16:11:59.582Z" }, +] + +[[package]] +name = "flake8" +version = "7.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mccabe" }, + { name = "pycodestyle" }, + { name = "pyflakes" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9b/af/fbfe3c4b5a657d79e5c47a2827a362f9e1b763336a52f926126aa6dc7123/flake8-7.3.0.tar.gz", hash = "sha256:fe044858146b9fc69b551a4b490d69cf960fcb78ad1edcb84e7fbb1b4a8e3872", size = 48326, upload-time = "2025-06-20T19:31:35.838Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/56/13ab06b4f93ca7cac71078fbe37fcea175d3216f31f85c3168a6bbd0bb9a/flake8-7.3.0-py2.py3-none-any.whl", hash = "sha256:b9696257b9ce8beb888cdbe31cf885c90d31928fe202be0889a7cdafad32f01e", size = 57922, upload-time = "2025-06-20T19:31:34.425Z" }, +] + +[[package]] +name = "flask" +version = "3.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "blinker" }, + { name = "click" }, + { name = "itsdangerous" }, + { name = "jinja2" }, + { name = "markupsafe" }, + { name = "werkzeug" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/26/00/35d85dcce6c57fdc871f3867d465d780f302a175ea360f62533f12b27e2b/flask-3.1.3.tar.gz", hash = "sha256:0ef0e52b8a9cd932855379197dd8f94047b359ca0a78695144304cb45f87c9eb", size = 759004, upload-time = "2026-02-19T05:00:57.678Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/9c/34f6962f9b9e9c71f6e5ed806e0d0ff03c9d1b0b2340088a0cf4bce09b18/flask-3.1.3-py3-none-any.whl", hash = "sha256:f4bcbefc124291925f1a26446da31a5178f9483862233b23c0c96a20701f670c", size = 103424, upload-time = "2026-02-19T05:00:56.027Z" }, +] + +[[package]] +name = "fonttools" +version = "4.63.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/84/69/c97f2c18e0db87d2c7b15da1974dace76ae938f1cfa22e2727a648b7ed43/fonttools-4.63.0.tar.gz", hash = "sha256:caeb583deeb5168e694b65cda8b4ee62abedfa66cf88488734466f2366b9c4e0", size = 3597189, upload-time = "2026-05-14T12:04:30.958Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/2b/a7f1545bdf5da69c4bda0cea2a5781f0ad2a6623e0277267672db43c5fe6/fonttools-4.63.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2b8ae05d9eacf6081414d759c0a352769ac28ce31280d6bb8e77b03f9e3c449f", size = 2881793, upload-time = "2026-05-14T12:02:56.645Z" }, + { url = "https://files.pythonhosted.org/packages/49/50/965308c703f085f225db2886813b27e015b8b3438c350b22dd65b52c2a2c/fonttools-4.63.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79cdc9f567aec74a72918fd060283911406750cbc9fd28c1316023deb6ce31a9", size = 2428130, upload-time = "2026-05-14T12:02:58.891Z" }, + { url = "https://files.pythonhosted.org/packages/d8/38/6937fbd7f2dc3a6b48725851bc2c15ec949b9af14d9bbcb5fe83cdf9bdf9/fonttools-4.63.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2c14b4fd138c4bafcca294765c547914e1aa431ae1ca94ab99d8db08c958bd3b", size = 5111952, upload-time = "2026-05-14T12:03:01.263Z" }, + { url = "https://files.pythonhosted.org/packages/0b/43/a81f20050a3115b57d62c8e781446949512eac36690dc384ccea65ff4cc1/fonttools-4.63.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d76ac49f929aecaf82d83250b8347e099d7aecba0f4726c1d9b6df3b8bb5fe18", size = 5082308, upload-time = "2026-05-14T12:03:03.211Z" }, + { url = "https://files.pythonhosted.org/packages/67/00/cdd9d4944ca6ae280d01e69cc37bde3bf663630b837a6fc6d2cd65d80e0e/fonttools-4.63.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dcf076a4474fe0d7367e5bbf5b052c7284fa1feca729c04176ce513521afd8a0", size = 5087932, upload-time = "2026-05-14T12:03:05.147Z" }, + { url = "https://files.pythonhosted.org/packages/f5/f1/0aa0dbea778c75adbef223c42019fd47d22262b905974d62d829545d485f/fonttools-4.63.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7dd683fef0663e9f0f45cf541d788d24caa3ec9db50796b588e1757d8b3bc007", size = 5213271, upload-time = "2026-05-14T12:03:07.238Z" }, + { url = "https://files.pythonhosted.org/packages/a8/99/253e4056e1f0e67b9390125a154b73b5eb73ad521bece95c004858fdeec2/fonttools-4.63.0-cp311-cp311-win32.whl", hash = "sha256:afefc1ed0a59785a7fb06ea7e1678e849c193e1e387db783579bc7b3056fcfcb", size = 2304473, upload-time = "2026-05-14T12:03:09.271Z" }, + { url = "https://files.pythonhosted.org/packages/08/60/defa5e69641db890a63be281f41345f4c33b157824eaf0b9fad3e08b0dcb/fonttools-4.63.0-cp311-cp311-win_amd64.whl", hash = "sha256:063e08bd17bd5a90127a14123de0d6a952dbc847695fd98b63c043d58057f90c", size = 2356389, upload-time = "2026-05-14T12:03:11.53Z" }, + { url = "https://files.pythonhosted.org/packages/08/ef/b3c6b9b5be2f82416d73fe2ed2e96e2793cd80e7510bd6a17ca79cdd88ec/fonttools-4.63.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:37dd23e621e3b0aef1baa70a303b80aaf38449632cfc8fd2a55fb285bbccfc02", size = 2881131, upload-time = "2026-05-14T12:03:13.386Z" }, + { url = "https://files.pythonhosted.org/packages/44/a0/c815bea63117fa63e4e1c01f8a1110d2112fa003f838e6467094ec2432ce/fonttools-4.63.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a9faff9e0c1f76f9fd55899d2ce785832efebab37eb8ae13995853aef178bef0", size = 2426704, upload-time = "2026-05-14T12:03:15.801Z" }, + { url = "https://files.pythonhosted.org/packages/44/04/0b91d8e916e92ad1fac9e4624760baf0fd5ff2ead614c2f68fb21373f03f/fonttools-4.63.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef3048ef05dbb552b89817713d9cac912e00d0fde4a3105c00d29e52e10c89af", size = 5044298, upload-time = "2026-05-14T12:03:18.085Z" }, + { url = "https://files.pythonhosted.org/packages/77/c7/2342da9830e3e9d4870305ca5d2091d2a83284f2953079b7bdd3b5e029d8/fonttools-4.63.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:58dc6bb86a78d782f00f9190ca02c119cf5bbe2807536e361e18d42019f877d8", size = 4999800, upload-time = "2026-05-14T12:03:20.161Z" }, + { url = "https://files.pythonhosted.org/packages/e6/6d/67fe16c48d7ce050979b33f47e0d28a318f02da030602e944c34f7a16ef3/fonttools-4.63.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ee08ebfa58f6e1aeff5697ab9582105bb620008c1caafb681e4c557e7483027b", size = 4982666, upload-time = "2026-05-14T12:03:22.87Z" }, + { url = "https://files.pythonhosted.org/packages/f2/00/3bbab338c07c71fa56269953845e92c951a61457bbbb0f1022551ea266d9/fonttools-4.63.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:27fdc65af8da6f88b9c6121c47a464cbe359fcfff7ff6fc2d37a1f395d755b78", size = 5133598, upload-time = "2026-05-14T12:03:25.168Z" }, + { url = "https://files.pythonhosted.org/packages/62/f2/aa27c7f98db5b064883dadcc5283947e81e034de42e22a33675878d98b54/fonttools-4.63.0-cp312-cp312-win32.whl", hash = "sha256:af2fd1664d00a397d75f806985ddb36282091c2131a73a6485c23b4a34722263", size = 2292575, upload-time = "2026-05-14T12:03:27.496Z" }, + { url = "https://files.pythonhosted.org/packages/87/36/cccb9bc2a6ab63d1b2980374f0dca72ce95ae267c9b4cfe77455bb70d0d4/fonttools-4.63.0-cp312-cp312-win_amd64.whl", hash = "sha256:59ac449f8cca9b4ffa08d2e7bbadad87ce710d69d1eda5c3c1ce579baa987272", size = 2343211, upload-time = "2026-05-14T12:03:30.057Z" }, + { url = "https://files.pythonhosted.org/packages/0f/8d/d8fec3dcde2963f8c908fb315e5ff2cd0ac34f82394bbbf73a2aa5145ce3/fonttools-4.63.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:cd7e9857e5e63738b9d9fd707bc1f59c8b09e5177726d23664db393c59bb08bd", size = 2876062, upload-time = "2026-05-14T12:03:32.554Z" }, + { url = "https://files.pythonhosted.org/packages/ef/71/d935dc54e4ff121bfdd11e08702db63a7e6f25af21d8a3d7b7212df53641/fonttools-4.63.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c2a2a42198b696a6f48fad91709afb55176e66a5e566131219dba372fb7f8c59", size = 2424594, upload-time = "2026-05-14T12:03:34.86Z" }, + { url = "https://files.pythonhosted.org/packages/8e/40/e76320afa1df918e146155ef239b1719ee266092e96f5423bfd075affba1/fonttools-4.63.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e874792a8212b44583ea02189d9e693906b2f78b261f372f95d6c563210ac1d", size = 5024840, upload-time = "2026-05-14T12:03:36.745Z" }, + { url = "https://files.pythonhosted.org/packages/ce/36/0b805d8c485f872f65a509cbe3b58a5d0d17bee855333b54a150c79d3061/fonttools-4.63.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:22135da48a348785c5e2d5d2d9d6bec5ed44adacbaeb9db12d9493bf6c6bfa68", size = 4975801, upload-time = "2026-05-14T12:03:38.833Z" }, + { url = "https://files.pythonhosted.org/packages/c8/26/2cee03d0aa083ab022da5c07aff9ed3f689da1defb81ad6917c9627896da/fonttools-4.63.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ccf41f2efdf56994d22d73bef4ced1052161958169428d06ba9724ea9e9a64be", size = 4965009, upload-time = "2026-05-14T12:03:41.494Z" }, + { url = "https://files.pythonhosted.org/packages/7e/48/cc4b66d9058c0d0982c833fad10127c4b0e9324606aafa41382295ca4102/fonttools-4.63.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9ced0bd02ac751dd6319b0da88aaef24414e3b0dbc32bb4f24944821a3741a27", size = 5105892, upload-time = "2026-05-14T12:03:43.525Z" }, + { url = "https://files.pythonhosted.org/packages/d8/1f/a98a30a814b9ddef3a2e706025f90b9e0bc94890e6cb15254bc86547d11a/fonttools-4.63.0-cp313-cp313-win32.whl", hash = "sha256:85be818f5506e8a7753153def2c9550178f0ecae6a47b5e0e8dbb23f7cc90380", size = 2291313, upload-time = "2026-05-14T12:03:45.594Z" }, + { url = "https://files.pythonhosted.org/packages/92/46/5177b01f3b4abfdd4409f31cca4ab279c9343a26efbe9ec78c97fc612e02/fonttools-4.63.0-cp313-cp313-win_amd64.whl", hash = "sha256:ba04cb5891d4c0c21b6da95eda8d7b090021508a294fff33464fc7d241e0856b", size = 2342299, upload-time = "2026-05-14T12:03:47.414Z" }, + { url = "https://files.pythonhosted.org/packages/27/d2/23d25e3f247b328be58d04a4c9f894178a0d1eda7d42867cfb388adaf416/fonttools-4.63.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:fd1e3094f42d806d3d7c79162fc59e5910fcbe3a7360c385b8da969bc4493745", size = 2875338, upload-time = "2026-05-14T12:03:50.052Z" }, + { url = "https://files.pythonhosted.org/packages/cd/58/7dfa0c761cb3b2964e2a84c4dc986c926a87de0cb9fb60d5b28ded3f2914/fonttools-4.63.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:6e528da43bc3791085f8cb6141b1d13e459226790240340fcbb4625649238b03", size = 2422661, upload-time = "2026-05-14T12:03:52.154Z" }, + { url = "https://files.pythonhosted.org/packages/dd/87/64cfa18a7a1621d17b7f4502b2b0ed8a135a90c3db51ea590ee99043e76b/fonttools-4.63.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b2248c5decb223562f7902ff6325077a073f608ee8e33e88ad88db734eb9f49", size = 5010526, upload-time = "2026-05-14T12:03:54.647Z" }, + { url = "https://files.pythonhosted.org/packages/36/e1/a8933a72c45a87177fbde2696e0d0755c8c9062f8c077a961c6215fa27b1/fonttools-4.63.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:308f957cdeaf8abe4e5f2f124902ef405448af92c90f80e302a3b771c2e6116b", size = 4923946, upload-time = "2026-05-14T12:03:56.984Z" }, + { url = "https://files.pythonhosted.org/packages/27/60/872e6e233b8c5e8b41413796ff18b7fe479661bd40147e071b450dfad7a1/fonttools-4.63.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:bf00f21eb5fb721dbaf73d1e9da6d02a1af7768f2ebcf9798be98beab8ba90f6", size = 4962489, upload-time = "2026-05-14T12:03:59.443Z" }, + { url = "https://files.pythonhosted.org/packages/30/c4/83c24f2ec38b90cfda84bf4b1a1f49df80e84a1db4e7ac6e0d41bf23bc39/fonttools-4.63.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c1aaa4b9c75798400ac043ce04d74e7830376c85095a5a6ed7cba2f17a266bf4", size = 5071870, upload-time = "2026-05-14T12:04:02.122Z" }, + { url = "https://files.pythonhosted.org/packages/de/40/3ae22b60ff1d41ce0bd044b31238cdc72cef99f28b976f1e128ebd618c9b/fonttools-4.63.0-cp314-cp314-win32.whl", hash = "sha256:22693918177bd9ceabec4736d338045f357769416fc6b0b2508eefef75b08616", size = 2295026, upload-time = "2026-05-14T12:04:04.47Z" }, + { url = "https://files.pythonhosted.org/packages/c3/d4/98078064ccc76b45cb0f6c002452011e93c4bd26f6850344f0951cc1fe89/fonttools-4.63.0-cp314-cp314-win_amd64.whl", hash = "sha256:7d782fac32985914c351556f68ac0855391572bcd87de50e05970d3cd4c96fc5", size = 2347454, upload-time = "2026-05-14T12:04:06.752Z" }, + { url = "https://files.pythonhosted.org/packages/49/4e/652d1580c5f4e39f7d103b0c793e4773129ad633dce4addd0cf4dfebde02/fonttools-4.63.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:6db5140a60a5d731d21ec076745b40a310607731b0a565b50776393188649001", size = 2958152, upload-time = "2026-05-14T12:04:08.706Z" }, + { url = "https://files.pythonhosted.org/packages/0e/55/ad864c9a9b219f552eb46b32cd7906c466e5a578ba0c3abfcc0fe7413eb6/fonttools-4.63.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:7d76edbff9014094dbf03bd2d074709dfa6ec7aba13d838c937a2b33d2d6a86e", size = 2460809, upload-time = "2026-05-14T12:04:10.783Z" }, + { url = "https://files.pythonhosted.org/packages/ea/2b/0aa8db70f18cf52e49b4ed5ecec68547f981160bf5ded3b5aed6faa0a6f9/fonttools-4.63.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0eac00b9118c3c2f87d272e45341871c5b3066baa3c86897fa634a7c3fb59096", size = 5148649, upload-time = "2026-05-14T12:04:12.747Z" }, + { url = "https://files.pythonhosted.org/packages/7f/63/18e4369c25043096f1048e0c9915951adc4f842bd81c6b18155824d6fa99/fonttools-4.63.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:51394295f1a51de8b5f30bdb1e1b9a4231536c7064ef5c6e211eec19fa36036f", size = 4932147, upload-time = "2026-05-14T12:04:14.806Z" }, + { url = "https://files.pythonhosted.org/packages/a1/3f/67f3eac2ffd8a98446c5022f8ed3864eac878a5ff7af8df4c8286dba16cc/fonttools-4.63.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:9e12f105d2b6342c559c298afb674006bb2893afc7102dcf8a1b55b0486b4e40", size = 5027237, upload-time = "2026-05-14T12:04:17.675Z" }, + { url = "https://files.pythonhosted.org/packages/1a/ba/4e6214cb38a7b04779e97bb7636de9a5c7f20af7018d03dee0b64c08510a/fonttools-4.63.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:796f27556dbe094c4824f75ca85267e4df776c79036c8441469a4df37038c196", size = 5053933, upload-time = "2026-05-14T12:04:20.818Z" }, + { url = "https://files.pythonhosted.org/packages/34/3b/214dcc19ee31d3d38fb5ad2755c11ef0514e5dc300bbaf41c0b69f393799/fonttools-4.63.0-cp314-cp314t-win32.whl", hash = "sha256:948428a275741f0b64b113c955425a953314f4b9ab9997f73a72c83e68e569c8", size = 2359326, upload-time = "2026-05-14T12:04:24.22Z" }, + { url = "https://files.pythonhosted.org/packages/dd/1e/3ff1a9b523058c2eeb6a9d50f5574e2a738200d0d94107d5bc4105e8da3f/fonttools-4.63.0-cp314-cp314t-win_amd64.whl", hash = "sha256:6d4741eb179121cab9eea4cb2393d24492373a260d7945006358c08cfbf45419", size = 2425829, upload-time = "2026-05-14T12:04:26.829Z" }, + { url = "https://files.pythonhosted.org/packages/2c/47/c99d5268f354002ce80f8d029cd9d7d872969da1de8b93d32de4dc56d6f4/fonttools-4.63.0-py3-none-any.whl", hash = "sha256:445af2eab030a16b9171ea8bdda7ebf7d96bda2df88ee182a464252f6e05e20d", size = 1164562, upload-time = "2026-05-14T12:04:29.092Z" }, +] + +[[package]] +name = "ghp-import" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d9/29/d40217cbe2f6b1359e00c6c307bb3fc876ba74068cbab3dde77f03ca0dc4/ghp-import-2.1.0.tar.gz", hash = "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343", size = 10943, upload-time = "2022-05-02T15:47:16.11Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619", size = 11034, upload-time = "2022-05-02T15:47:14.552Z" }, +] + +[[package]] +name = "gitdb" +version = "4.0.12" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "smmap" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684, upload-time = "2025-01-02T07:20:46.413Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl", hash = "sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf", size = 62794, upload-time = "2025-01-02T07:20:43.624Z" }, +] + +[[package]] +name = "gitpython" +version = "3.1.50" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gitdb" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/f6/354ae6491228b5eb40e10d89c4d13c651fe1cf7556e35ebdded50cff57ce/gitpython-3.1.50.tar.gz", hash = "sha256:80da2d12504d52e1f998772dc5baf6e553f8d2fcfe1fcc226c9d9a2ee3372dcc", size = 219798, upload-time = "2026-05-06T04:01:26.571Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/7a/1c6e3562dfd8950adbb11ffbc65d21e7c89d01a6e4f137fa981056de25c5/gitpython-3.1.50-py3-none-any.whl", hash = "sha256:d352abe2908d07355014abdd21ddf798c2a961469239afec4962e9da884858f9", size = 212507, upload-time = "2026-05-06T04:01:23.799Z" }, +] + +[[package]] +name = "grafana-api" +version = "1.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/f4/c1a1ae50758ca7b65ea909c536f28204e6e8cae48822c394762a3d7e0e35/grafana_api-1.0.3.tar.gz", hash = "sha256:d541ea1a5b7efafa56c5f04053ed42b2d972a6aa313bc4881dd192aeb0706e2e", size = 24864, upload-time = "2020-08-16T20:32:10.843Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/3e/8d116cc17c1a2bf2541e567c791d3b94de2b561fb85a566e85c89a9ce45d/grafana_api-1.0.3-py2.py3-none-any.whl", hash = "sha256:30caef227025ecdb5662b242aaae921b89b58959566d83a5948523c8138e98ce", size = 26859, upload-time = "2020-08-16T20:32:09.783Z" }, +] + +[[package]] +name = "griffe-pydantic" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "griffelib" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5a/bd/d2eaeaf3f9910c9cd72793af0de18ee3d3a3a27bb30ab01cfd7659c08dc4/griffe_pydantic-1.3.1.tar.gz", hash = "sha256:f7caedfa0effedb22893bf01cc411fd567614f7b4de7ce0c1f4293eb7acb5c44", size = 38176, upload-time = "2026-02-21T09:38:49.674Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/88/17d656aa97406cd509e2be0e6eddcf81fc1666104bf81042b89721d4a44c/griffe_pydantic-1.3.1-py3-none-any.whl", hash = "sha256:475103794a1d5da3933d3968e82a2bd9d9a1fa507c06d5ee1a39ee1fadcca628", size = 15189, upload-time = "2026-02-20T11:34:14.965Z" }, +] + +[[package]] +name = "griffelib" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/33/e4/8d187ea29c2e30b3a09505c567513077d6117861bde1fbd997a167f262ec/griffelib-2.1.0.tar.gz", hash = "sha256:762a186d2c6fd6794d4ea20d428d597ffb857cb56b66421651cbba15bdd5e813", size = 216234, upload-time = "2026-06-19T12:05:42.278Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/d3/5268aeabf2ad82658c4e2ff3a060648d0f02f3926cb53247c0e4d0dab49e/griffelib-2.1.0-py3-none-any.whl", hash = "sha256:cc7b3d2d2865ad0b909fcc38086e3f554b5ea7acbaa7bbb7ecaa3f5dfb7d9f00", size = 142560, upload-time = "2026-06-19T12:05:38.742Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "hatchling" +version = "1.30.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging" }, + { name = "pathspec" }, + { name = "pluggy" }, + { name = "trove-classifiers" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/4c/8717ccb844b4fa5a5ba6352e97d743ed24e9a22cf90b7c109c17030a46a1/hatchling-1.30.1.tar.gz", hash = "sha256:eee4fd45357f72ebb3d7a42e5d72cfb5e29ed426d79e8836288926c4258d5f2e", size = 56929, upload-time = "2026-06-02T00:09:41.487Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/49/2797ec0ef88008a653a8867bb8d1e5c223cd2df8e40390dd5c6a0279cbc5/hatchling-1.30.1-py3-none-any.whl", hash = "sha256:161eacafb3c6f91526e92116d21426369f2c36e98c36a864f11a96345ad4ee31", size = 77489, upload-time = "2026-06-02T00:09:40.139Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httptools" +version = "0.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/e5/d471fcb0e14523fe1c3f4ba58ca52480e7bd70ad7109a3846bc75892f7fb/httptools-0.8.0.tar.gz", hash = "sha256:6b2a32f18d97e16e90827d7a819ffa8dbd8cc245fc4e1fa9d1095b54ef4bd999", size = 271342, upload-time = "2026-05-25T22:17:48.841Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/d2/c3eedaef57de65c3cc5f8dc244cf12d09c84ad258a479055aad6db23206c/httptools-0.8.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ed377e64805bdba4943c82717333f8f8603a13b09aff9cead2717c6c817fb168", size = 208428, upload-time = "2026-05-25T22:16:59.717Z" }, + { url = "https://files.pythonhosted.org/packages/f1/94/dfe435d90d0ef61ec0f2cc3d480eef78c59727c6c2ce039f433882f6131a/httptools-0.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9518c406d7b310f05adb1a37f80acabac40504a575d7c0da6d3e365c695ac20d", size = 113366, upload-time = "2026-05-25T22:17:00.795Z" }, + { url = "https://files.pythonhosted.org/packages/cc/d4/13025f1a56e615dcb331e0bbe2d9a1143212b58c263385fc5d2e558f5bac/httptools-0.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:57278e6fa0424c42a8a3e454828ab4f0aff27b40cddf9679579b98c6dce6a376", size = 464676, upload-time = "2026-05-25T22:17:02.014Z" }, + { url = "https://files.pythonhosted.org/packages/bf/95/4c1c26c0b985f8a3331682d802598f14e32dc41bf7509266eb2c04ad4801/httptools-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bbb8caadb2b742d293169d2b458b5c001ef70e3158704aa3d3ef9597624c5d1d", size = 464235, upload-time = "2026-05-25T22:17:03.109Z" }, + { url = "https://files.pythonhosted.org/packages/a2/82/6735be2b0ca527718c431cdb8e5f70c3862c0844a687df0f572c51e11497/httptools-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:52dd695b865fe96d9d2b16b64a895f3f57bf3cb064e8383cd3b5713a069e8085", size = 449809, upload-time = "2026-05-25T22:17:04.443Z" }, + { url = "https://files.pythonhosted.org/packages/b5/f9/5811c74f37a758c8a4aa3dc430375119d335947e883efc4664d8f3559a41/httptools-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:20b4aac66ff65f7db06a375808b78f42a94970aa22e826b3cb2b43eb09174124", size = 452174, upload-time = "2026-05-25T22:17:05.476Z" }, + { url = "https://files.pythonhosted.org/packages/cc/94/97b75870dea07b71e3ec535cebe525b08d723152e4c7d13fa887e51f4de2/httptools-0.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:a1b4c8e7a489a0d750d91894e9a8cdc295838f1924c0ca903ae993456fddec07", size = 90991, upload-time = "2026-05-25T22:17:06.75Z" }, + { url = "https://files.pythonhosted.org/packages/14/88/1d21a36da8f5cb0fa49eafd4b169eba5608d57e75bbcf61845cbc6243216/httptools-0.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:880490234c10f70a9830743097e8958d6e4b9f5a0ffc24515023afeef984054d", size = 208247, upload-time = "2026-05-25T22:17:07.843Z" }, + { url = "https://files.pythonhosted.org/packages/a5/42/cc4feea2945cb3051038f090c9b36bd5b8a9d7f5a894a506a8983e33fd1c/httptools-0.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5931891fb7b441b8a3853cf1b85c82c903defce084dd5f6771ca46e31bf862c5", size = 113064, upload-time = "2026-05-25T22:17:09.136Z" }, + { url = "https://files.pythonhosted.org/packages/e3/a6/febbb8b8db0f58b38e44ad6cb946e6a255ae49b55f2e8543408fb7501ccd/httptools-0.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b15fc622b0f869d19207c4089a501d9bcc63ca5e071ffdd2f03f922df882dcb2", size = 523851, upload-time = "2026-05-25T22:17:10.106Z" }, + { url = "https://files.pythonhosted.org/packages/b7/e4/f90a0df0b83beff265b7e3b65f2a4cefd95792d4be0ac3e16049f2acd3c2/httptools-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:425f83884fd6343828d8c565f046cb72b6d19063f6924093e11bcd8e1548cd09", size = 518842, upload-time = "2026-05-25T22:17:11.218Z" }, + { url = "https://files.pythonhosted.org/packages/9e/2d/0c9ac76dd2c893841fbf6498d6acec4f2442e1b7067f6e3e316a80e494e8/httptools-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ef7c3c97f4311c7be57e2986629df89d49cb434dbff78eafcd48c2bff986b15a", size = 501238, upload-time = "2026-05-25T22:17:12.728Z" }, + { url = "https://files.pythonhosted.org/packages/ca/42/906adc91ae3a5fa9c59c0a2f21c139725bd7e5b41ae6acd485cd14123ebf/httptools-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a1afd7c9fbff0d9f5d489c4ce2768bd09c84a46ddefc7161e6aa82ae35c85745", size = 509567, upload-time = "2026-05-25T22:17:13.842Z" }, + { url = "https://files.pythonhosted.org/packages/05/0b/4240efeb672751ee5b9b380cb0e3fdc050bc05f68adc7a8aefc4fcd9a69a/httptools-0.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:cd96f29b4bab1d42fa6e3d008711c75e0f79e94e06827330160e3a304227f150", size = 90918, upload-time = "2026-05-25T22:17:15.155Z" }, + { url = "https://files.pythonhosted.org/packages/5e/e5/8cfcabc5546e8022f168be28bcdaa128a240a0befdd03b59d558b4f18bd6/httptools-0.8.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:614ceea8ea606848bece2338ac03b3ce5324bcb4be8dc7d377ed708012fa4db8", size = 205148, upload-time = "2026-05-25T22:17:16.333Z" }, + { url = "https://files.pythonhosted.org/packages/2a/0e/0fb14848c19a686c8062ff9067c1a48793e3224b47bc5b201535b6036fce/httptools-0.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2d689918c15a013c65ef52d9fd495d766893ab831a2c8d89f2ac5940a5df847c", size = 111368, upload-time = "2026-05-25T22:17:17.586Z" }, + { url = "https://files.pythonhosted.org/packages/2e/1b/46f1cecf06b9bbde8e4b8c88034ac7908989e5ff7a3a388ef38392949c1f/httptools-0.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:eb3028cca2fc0a6d720e52ef61d8ebb62fcbfeb1de56874546d858d3f25a26b7", size = 486447, upload-time = "2026-05-25T22:17:18.564Z" }, + { url = "https://files.pythonhosted.org/packages/77/00/258bfc0837221f81d9725c45f9b948a6a6b2994a147a4fb66e85100c668f/httptools-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:88bdd940f2b5d487b4d032c6afa5489a7dc4694410d43de3c38c4fb3af0dc45d", size = 482448, upload-time = "2026-05-25T22:17:19.912Z" }, + { url = "https://files.pythonhosted.org/packages/04/ab/d1cef3b5523f4d272a70f42a776c3169a2dddfe3a54de4b2ce4a36341528/httptools-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6a43c9dd399758ccc0531acb0a3c4a6c299ee893ee9400e9c893b7bdcfae0681", size = 464460, upload-time = "2026-05-25T22:17:20.882Z" }, + { url = "https://files.pythonhosted.org/packages/ce/48/5d1d072442277bb2b3434e0e60690b8e8c23840ef7de8b6ea54040a536d3/httptools-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0770728beb05094c809b98e814edff5fef69d26ad7d21185f2f6d5884a0ba683", size = 471312, upload-time = "2026-05-25T22:17:22.085Z" }, + { url = "https://files.pythonhosted.org/packages/0d/66/b96623b27e51a68199ef4efdda0613cced9233fe3062ac74e50749c5ad37/httptools-0.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:7685df791fad561384bfb139e77fde27a1ffd93134e016f95a0db424ffbf77b1", size = 90117, upload-time = "2026-05-25T22:17:23.074Z" }, + { url = "https://files.pythonhosted.org/packages/1a/12/fa3fbf5f9517b273edea2dc982aa82a8c634091e67c590792b729017bc6f/httptools-0.8.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:de242a49b5d18e0a8776e654e9f6bf6d89f3875a5c35b425a0e7ce940feb3fd6", size = 206183, upload-time = "2026-05-25T22:17:24.004Z" }, + { url = "https://files.pythonhosted.org/packages/30/fc/5e7c4cb443370f2090a3aba0453a07384d29ff66b7435bb90e77e1037599/httptools-0.8.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:159e9ab5f701ccd42e555a12f1ad8ff69702910fc1c996cf2bb66e5fcb7a231b", size = 112079, upload-time = "2026-05-25T22:17:25.216Z" }, + { url = "https://files.pythonhosted.org/packages/ba/53/771bd891eb0f236f32145d6a1775777ec85745f3cc983a1f23d1a3b8ddfe/httptools-0.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:c4a9f1707e4823d54dfec6c33fa3697d302aed536ed352a7ebb5a061ddb869d0", size = 481596, upload-time = "2026-05-25T22:17:26.186Z" }, + { url = "https://files.pythonhosted.org/packages/62/42/94e15bc68ce3d423243c45d7f1b0c7561f13844f97dc52ae23182fb65628/httptools-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d76ad7b951387e3632c8716a9bb03ac5b45c5f16119aa409db0459520887944e", size = 480865, upload-time = "2026-05-25T22:17:27.542Z" }, + { url = "https://files.pythonhosted.org/packages/1c/7c/fe2980fc03723272e30f135b62360b075f513dfe7cc73aef36c7f04012bd/httptools-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a3b7387147361c3fd47a0bde763c5c91b5b4cd4dc9989b8ece84ff436c99843b", size = 463189, upload-time = "2026-05-25T22:17:28.546Z" }, + { url = "https://files.pythonhosted.org/packages/15/1b/47fc5fff68acd1bfa20b4734059c9a06cadb88119dcd5258b5b0d21d91c8/httptools-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f256d6ce930c52ca1cb2a960b7da03548c454e7d28b06059ad41bfe789036ce0", size = 466610, upload-time = "2026-05-25T22:17:29.816Z" }, + { url = "https://files.pythonhosted.org/packages/60/bd/07b13c93ffd9bec9546e0d43f8e19378dd696dbd278511406bc07371ef1f/httptools-0.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:19d1ee275bb59ba2643ba9a3a1e51cc0c788caf2b8df506368e03f56fdd08527", size = 92705, upload-time = "2026-05-25T22:17:31.133Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c4/121648f68ce066d7bd762d6b6d97e620847642d38d54f3d90ff11d947629/httptools-0.8.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:de1ed58a974e75d56560acc7e7fed01a454994429456f65209789992e41f2568", size = 215023, upload-time = "2026-05-25T22:17:32.401Z" }, + { url = "https://files.pythonhosted.org/packages/b9/b0/312a062ae741ae3e8baa8c8bf20be81b2e67337b259ab4349bebc7b6142e/httptools-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:e93c227b595c6926c1acee96891dd9da4be338cfbe82e5cd3bb9d8dd7dc4ac0b", size = 117405, upload-time = "2026-05-25T22:17:33.742Z" }, + { url = "https://files.pythonhosted.org/packages/fc/37/fccd705f795386bb05bf413012fecff2a33e5aa8c2f069096de3e9fd8702/httptools-0.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2a021c3a8e65cc125390d72f59b968afca3bdcaff25bd67965e0a055a14946ca", size = 558497, upload-time = "2026-05-25T22:17:34.732Z" }, + { url = "https://files.pythonhosted.org/packages/bd/39/f172e8003576de35f5ba77ff417cf0e34429d35dc014deef15afa337a72c/httptools-0.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48774d39cbb70e2b1f71f88852a3087ae1d3a1eb80482bb48c13067ab080c14f", size = 571585, upload-time = "2026-05-25T22:17:35.813Z" }, + { url = "https://files.pythonhosted.org/packages/3e/b9/f5564760af99f3dbbf3f9104dc00e5da27e96cf433c6bdcf77617f70bf3f/httptools-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:88eead8ec8680a9f146c655bc88445a325bd7921cfd8194c7337e9467282427d", size = 543297, upload-time = "2026-05-25T22:17:37.08Z" }, + { url = "https://files.pythonhosted.org/packages/99/67/8d9f2c313618e161b82f3873188e7196126da1d6e29688df40eb3997c77a/httptools-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:2c032fa028f46871ec7e1fc59fc15e8023eab3e6bbe6ece786a1611719a5d081", size = 539535, upload-time = "2026-05-25T22:17:38.032Z" }, + { url = "https://files.pythonhosted.org/packages/48/63/b906c01e53f50d432c0defe43ce52764a111dc1bdd028bafbeb54dcfd008/httptools-0.8.0-cp314-cp314t-win_amd64.whl", hash = "sha256:384c17174464c8e873398b7af24f0b1f44d992c820328413951a625323155d77", size = 108209, upload-time = "2026-05-25T22:17:39.473Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "httpx-sse" +version = "0.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/4c/751061ffa58615a32c31b2d82e8482be8dd4a89154f003147acee90f2be9/httpx_sse-0.4.3.tar.gz", hash = "sha256:9b1ed0127459a66014aec3c56bebd93da3c1bc8bb6618c8082039a44889a755d", size = 15943, upload-time = "2025-10-10T21:48:22.271Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/fd/6668e5aec43ab844de6fc74927e155a3b37bf40d7c3790e49fc0406b6578/httpx_sse-0.4.3-py3-none-any.whl", hash = "sha256:0ac1c9fe3c0afad2e0ebb25a934a59f4c7823b60792691f779fad2c5568830fc", size = 8960, upload-time = "2025-10-10T21:48:21.158Z" }, +] + +[[package]] +name = "idna" +version = "3.18" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/63/9496c57188a2ee585e0f1db071d75089a11e98aa86eb99d9d7618fc1edce/idna-3.18.tar.gz", hash = "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848", size = 196711, upload-time = "2026-06-02T14:34:07.794Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/5e/d4e9f1a599fb8e573b7b87160658329fbf28d19eac2718f51fc3def3aa5a/idna-3.18-py3-none-any.whl", hash = "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2", size = 65455, upload-time = "2026-06-02T14:34:06.319Z" }, +] + +[[package]] +name = "importlib-metadata" +version = "9.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a9/01/15bb152d77b21318514a96f43af312635eb2500c96b55398d020c93d86ea/importlib_metadata-9.0.0.tar.gz", hash = "sha256:a4f57ab599e6a2e3016d7595cfd72eb4661a5106e787a95bcc90c7105b831efc", size = 56405, upload-time = "2026-03-20T06:42:56.999Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/3d/2d244233ac4f76e38533cfcb2991c9eb4c7bf688ae0a036d30725b8faafe/importlib_metadata-9.0.0-py3-none-any.whl", hash = "sha256:2d21d1cc5a017bd0559e36150c21c830ab1dc304dedd1b7ea85d20f45ef3edd7", size = 27789, upload-time = "2026-03-20T06:42:55.665Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "isort" +version = "8.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ef/7c/ec4ab396d31b3b395e2e999c8f46dec78c5e29209fac49d1f4dace04041d/isort-8.0.1.tar.gz", hash = "sha256:171ac4ff559cdc060bcfff550bc8404a486fee0caab245679c2abe7cb253c78d", size = 769592, upload-time = "2026-02-28T10:08:20.685Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3e/95/c7c34aa53c16353c56d0b802fba48d5f5caa2cdee7958acbcb795c830416/isort-8.0.1-py3-none-any.whl", hash = "sha256:28b89bc70f751b559aeca209e6120393d43fbe2490de0559662be7a9787e3d75", size = 89733, upload-time = "2026-02-28T10:08:19.466Z" }, +] + +[[package]] +name = "itsdangerous" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9c/cb/8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d/itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173", size = 54410, upload-time = "2024-04-16T21:28:15.614Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234, upload-time = "2024-04-16T21:28:14.499Z" }, +] + +[[package]] +name = "janus" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/7f/69884b6618be4baf6ebcacc716ee8680a842428a19f403db6d1c0bb990aa/janus-2.0.0.tar.gz", hash = "sha256:0970f38e0e725400496c834a368a67ee551dc3b5ad0a257e132f5b46f2e77770", size = 22910, upload-time = "2024-12-13T12:59:08.622Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/34/65604740edcb20e1bda6a890348ed7d282e7dd23aa00401cbe36fd0edbd9/janus-2.0.0-py3-none-any.whl", hash = "sha256:7e6449d34eab04cd016befbd7d8c0d8acaaaab67cb59e076a69149f9031745f9", size = 12161, upload-time = "2024-12-13T12:59:06.106Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, +] + +[[package]] +name = "jsonschema" +version = "4.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.9.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/dd/a495a9c104be1c476f0386e714252caf2b7eca883915422a64c50b88c6f5/kiwisolver-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9eed0f7edbb274413b6ee781cca50541c8c0facd3d6fd289779e494340a2b85c", size = 122798, upload-time = "2026-03-09T13:12:58.963Z" }, + { url = "https://files.pythonhosted.org/packages/11/60/37b4047a2af0cf5ef6d8b4b26e91829ae6fc6a2d1f74524bcb0e7cd28a32/kiwisolver-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c4923e404d6bcd91b6779c009542e5647fef32e4a5d75e115e3bbac6f2335eb", size = 66216, upload-time = "2026-03-09T13:13:00.155Z" }, + { url = "https://files.pythonhosted.org/packages/0a/aa/510dc933d87767584abfe03efa445889996c70c2990f6f87c3ebaa0a18c5/kiwisolver-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0df54df7e686afa55e6f21fb86195224a6d9beb71d637e8d7920c95cf0f89aac", size = 63911, upload-time = "2026-03-09T13:13:01.671Z" }, + { url = "https://files.pythonhosted.org/packages/80/46/bddc13df6c2a40741e0cc7865bb1c9ed4796b6760bd04ce5fae3928ef917/kiwisolver-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2517e24d7315eb51c10664cdb865195df38ab74456c677df67bb47f12d088a27", size = 1438209, upload-time = "2026-03-09T13:13:03.385Z" }, + { url = "https://files.pythonhosted.org/packages/fd/d6/76621246f5165e5372f02f5e6f3f48ea336a8f9e96e43997d45b240ed8cd/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ff710414307fefa903e0d9bdf300972f892c23477829f49504e59834f4195398", size = 1248888, upload-time = "2026-03-09T13:13:05.231Z" }, + { url = "https://files.pythonhosted.org/packages/b2/c1/31559ec6fb39a5b48035ce29bb63ade628f321785f38c384dee3e2c08bc1/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6176c1811d9d5a04fa391c490cc44f451e240697a16977f11c6f722efb9041db", size = 1266304, upload-time = "2026-03-09T13:13:06.743Z" }, + { url = "https://files.pythonhosted.org/packages/5e/ef/1cb8276f2d29cc6a41e0a042f27946ca347d3a4a75acf85d0a16aa6dcc82/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50847dca5d197fcbd389c805aa1a1cf32f25d2e7273dc47ab181a517666b68cc", size = 1319650, upload-time = "2026-03-09T13:13:08.607Z" }, + { url = "https://files.pythonhosted.org/packages/4c/e4/5ba3cecd7ce6236ae4a80f67e5d5531287337d0e1f076ca87a5abe4cd5d0/kiwisolver-1.5.0-cp311-cp311-manylinux_2_39_riscv64.whl", hash = "sha256:01808c6d15f4c3e8559595d6d1fe6411c68e4a3822b4b9972b44473b24f4e679", size = 970949, upload-time = "2026-03-09T13:13:10.299Z" }, + { url = "https://files.pythonhosted.org/packages/5a/69/dc61f7ae9a2f071f26004ced87f078235b5507ab6e5acd78f40365655034/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f1f9f4121ec58628c96baa3de1a55a4e3a333c5102c8e94b64e23bf7b2083309", size = 2199125, upload-time = "2026-03-09T13:13:11.841Z" }, + { url = "https://files.pythonhosted.org/packages/e5/7b/abbe0f1b5afa85f8d084b73e90e5f801c0939eba16ac2e49af7c61a6c28d/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b7d335370ae48a780c6e6a6bbfa97342f563744c39c35562f3f367665f5c1de2", size = 2293783, upload-time = "2026-03-09T13:13:14.399Z" }, + { url = "https://files.pythonhosted.org/packages/8a/80/5908ae149d96d81580d604c7f8aefd0e98f4fd728cf172f477e9f2a81744/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:800ee55980c18545af444d93fdd60c56b580db5cc54867d8cbf8a1dc0829938c", size = 1960726, upload-time = "2026-03-09T13:13:16.047Z" }, + { url = "https://files.pythonhosted.org/packages/84/08/a78cb776f8c085b7143142ce479859cfec086bd09ee638a317040b6ef420/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:c438f6ca858697c9ab67eb28246c92508af972e114cac34e57a6d4ba17a3ac08", size = 2464738, upload-time = "2026-03-09T13:13:17.897Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e1/65584da5356ed6cb12c63791a10b208860ac40a83de165cb6a6751a686e3/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8c63c91f95173f9c2a67c7c526b2cea976828a0e7fced9cdcead2802dc10f8a4", size = 2270718, upload-time = "2026-03-09T13:13:19.421Z" }, + { url = "https://files.pythonhosted.org/packages/be/6c/28f17390b62b8f2f520e2915095b3c94d88681ecf0041e75389d9667f202/kiwisolver-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:beb7f344487cdcb9e1efe4b7a29681b74d34c08f0043a327a74da852a6749e7b", size = 73480, upload-time = "2026-03-09T13:13:20.818Z" }, + { url = "https://files.pythonhosted.org/packages/d8/0e/2ee5debc4f77a625778fec5501ff3e8036fe361b7ee28ae402a485bb9694/kiwisolver-1.5.0-cp311-cp311-win_arm64.whl", hash = "sha256:ad4ae4ffd1ee9cd11357b4c66b612da9888f4f4daf2f36995eda64bd45370cac", size = 64930, upload-time = "2026-03-09T13:13:21.997Z" }, + { url = "https://files.pythonhosted.org/packages/4d/b2/818b74ebea34dabe6d0c51cb1c572e046730e64844da6ed646d5298c40ce/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4e9750bc21b886308024f8a54ccb9a2cc38ac9fa813bf4348434e3d54f337ff9", size = 123158, upload-time = "2026-03-09T13:13:23.127Z" }, + { url = "https://files.pythonhosted.org/packages/bf/d9/405320f8077e8e1c5c4bd6adc45e1e6edf6d727b6da7f2e2533cf58bff71/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:72ec46b7eba5b395e0a7b63025490d3214c11013f4aacb4f5e8d6c3041829588", size = 66388, upload-time = "2026-03-09T13:13:24.765Z" }, + { url = "https://files.pythonhosted.org/packages/99/9f/795fedf35634f746151ca8839d05681ceb6287fbed6cc1c9bf235f7887c2/kiwisolver-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ed3a984b31da7481b103f68776f7128a89ef26ed40f4dc41a2223cda7fb24819", size = 64068, upload-time = "2026-03-09T13:13:25.878Z" }, + { url = "https://files.pythonhosted.org/packages/c4/13/680c54afe3e65767bed7ec1a15571e1a2f1257128733851ade24abcefbcc/kiwisolver-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bb5136fb5352d3f422df33f0c879a1b0c204004324150cc3b5e3c4f310c9049f", size = 1477934, upload-time = "2026-03-09T13:13:27.166Z" }, + { url = "https://files.pythonhosted.org/packages/c8/2f/cebfcdb60fd6a9b0f6b47a9337198bcbad6fbe15e68189b7011fd914911f/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b2af221f268f5af85e776a73d62b0845fc8baf8ef0abfae79d29c77d0e776aaf", size = 1278537, upload-time = "2026-03-09T13:13:28.707Z" }, + { url = "https://files.pythonhosted.org/packages/f2/0d/9b782923aada3fafb1d6b84e13121954515c669b18af0c26e7d21f579855/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b0f172dc8ffaccb8522d7c5d899de00133f2f1ca7b0a49b7da98e901de87bf2d", size = 1296685, upload-time = "2026-03-09T13:13:30.528Z" }, + { url = "https://files.pythonhosted.org/packages/27/70/83241b6634b04fe44e892688d5208332bde130f38e610c0418f9ede47ded/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6ab8ba9152203feec73758dad83af9a0bbe05001eb4639e547207c40cfb52083", size = 1346024, upload-time = "2026-03-09T13:13:32.818Z" }, + { url = "https://files.pythonhosted.org/packages/e4/db/30ed226fb271ae1a6431fc0fe0edffb2efe23cadb01e798caeb9f2ceae8f/kiwisolver-1.5.0-cp312-cp312-manylinux_2_39_riscv64.whl", hash = "sha256:cdee07c4d7f6d72008d3f73b9bf027f4e11550224c7c50d8df1ae4a37c1402a6", size = 987241, upload-time = "2026-03-09T13:13:34.435Z" }, + { url = "https://files.pythonhosted.org/packages/ec/bd/c314595208e4c9587652d50959ead9e461995389664e490f4dce7ff0f782/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7c60d3c9b06fb23bd9c6139281ccbdc384297579ae037f08ae90c69f6845c0b1", size = 2227742, upload-time = "2026-03-09T13:13:36.4Z" }, + { url = "https://files.pythonhosted.org/packages/c1/43/0499cec932d935229b5543d073c2b87c9c22846aab48881e9d8d6e742a2d/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:e315e5ec90d88e140f57696ff85b484ff68bb311e36f2c414aa4286293e6dee0", size = 2323966, upload-time = "2026-03-09T13:13:38.204Z" }, + { url = "https://files.pythonhosted.org/packages/3d/6f/79b0d760907965acfd9d61826a3d41f8f093c538f55cd2633d3f0db269f6/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:1465387ac63576c3e125e5337a6892b9e99e0627d52317f3ca79e6930d889d15", size = 1977417, upload-time = "2026-03-09T13:13:39.966Z" }, + { url = "https://files.pythonhosted.org/packages/ab/31/01d0537c41cb75a551a438c3c7a80d0c60d60b81f694dac83dd436aec0d0/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:530a3fd64c87cffa844d4b6b9768774763d9caa299e9b75d8eca6a4423b31314", size = 2491238, upload-time = "2026-03-09T13:13:41.698Z" }, + { url = "https://files.pythonhosted.org/packages/e4/34/8aefdd0be9cfd00a44509251ba864f5caf2991e36772e61c408007e7f417/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1d9daea4ea6b9be74fe2f01f7fbade8d6ffab263e781274cffca0dba9be9eec9", size = 2294947, upload-time = "2026-03-09T13:13:43.343Z" }, + { url = "https://files.pythonhosted.org/packages/ad/cf/0348374369ca588f8fe9c338fae49fa4e16eeb10ffb3d012f23a54578a9e/kiwisolver-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:f18c2d9782259a6dc132fdc7a63c168cbc74b35284b6d75c673958982a378384", size = 73569, upload-time = "2026-03-09T13:13:45.792Z" }, + { url = "https://files.pythonhosted.org/packages/28/26/192b26196e2316e2bd29deef67e37cdf9870d9af8e085e521afff0fed526/kiwisolver-1.5.0-cp312-cp312-win_arm64.whl", hash = "sha256:f7c7553b13f69c1b29a5bde08ddc6d9d0c8bfb84f9ed01c30db25944aeb852a7", size = 64997, upload-time = "2026-03-09T13:13:46.878Z" }, + { url = "https://files.pythonhosted.org/packages/9d/69/024d6711d5ba575aa65d5538042e99964104e97fa153a9f10bc369182bc2/kiwisolver-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:fd40bb9cd0891c4c3cb1ddf83f8bbfa15731a248fdc8162669405451e2724b09", size = 123166, upload-time = "2026-03-09T13:13:48.032Z" }, + { url = "https://files.pythonhosted.org/packages/ce/48/adbb40df306f587054a348831220812b9b1d787aff714cfbc8556e38fccd/kiwisolver-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0e1403fd7c26d77c1f03e096dc58a5c726503fa0db0456678b8668f76f521e3", size = 66395, upload-time = "2026-03-09T13:13:49.365Z" }, + { url = "https://files.pythonhosted.org/packages/a8/3a/d0a972b34e1c63e2409413104216cd1caa02c5a37cb668d1687d466c1c45/kiwisolver-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dda366d548e89a90d88a86c692377d18d8bd64b39c1fb2b92cb31370e2896bbd", size = 64065, upload-time = "2026-03-09T13:13:50.562Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0a/7b98e1e119878a27ba8618ca1e18b14f992ff1eda40f47bccccf4de44121/kiwisolver-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:332b4f0145c30b5f5ad9374881133e5aa64320428a57c2c2b61e9d891a51c2f3", size = 1477903, upload-time = "2026-03-09T13:13:52.084Z" }, + { url = "https://files.pythonhosted.org/packages/18/d8/55638d89ffd27799d5cc3d8aa28e12f4ce7a64d67b285114dbedc8ea4136/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0c50b89ffd3e1a911c69a1dd3de7173c0cd10b130f56222e57898683841e4f96", size = 1278751, upload-time = "2026-03-09T13:13:54.673Z" }, + { url = "https://files.pythonhosted.org/packages/b8/97/b4c8d0d18421ecceba20ad8701358453b88e32414e6f6950b5a4bad54e65/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4db576bb8c3ef9365f8b40fe0f671644de6736ae2c27a2c62d7d8a1b4329f099", size = 1296793, upload-time = "2026-03-09T13:13:56.287Z" }, + { url = "https://files.pythonhosted.org/packages/c4/10/f862f94b6389d8957448ec9df59450b81bec4abb318805375c401a1e6892/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0b85aad90cea8ac6797a53b5d5f2e967334fa4d1149f031c4537569972596cb8", size = 1346041, upload-time = "2026-03-09T13:13:58.269Z" }, + { url = "https://files.pythonhosted.org/packages/a3/6a/f1650af35821eaf09de398ec0bc2aefc8f211f0cda50204c9f1673741ba9/kiwisolver-1.5.0-cp313-cp313-manylinux_2_39_riscv64.whl", hash = "sha256:d36ca54cb4c6c4686f7cbb7b817f66f5911c12ddb519450bbe86707155028f87", size = 987292, upload-time = "2026-03-09T13:13:59.871Z" }, + { url = "https://files.pythonhosted.org/packages/de/19/d7fb82984b9238115fe629c915007be608ebd23dc8629703d917dbfaffd4/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:38f4a703656f493b0ad185211ccfca7f0386120f022066b018eb5296d8613e23", size = 2227865, upload-time = "2026-03-09T13:14:01.401Z" }, + { url = "https://files.pythonhosted.org/packages/7f/b9/46b7f386589fd222dac9e9de9c956ce5bcefe2ee73b4e79891381dda8654/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3ac2360e93cb41be81121755c6462cff3beaa9967188c866e5fce5cf13170859", size = 2324369, upload-time = "2026-03-09T13:14:02.972Z" }, + { url = "https://files.pythonhosted.org/packages/92/8b/95e237cf3d9c642960153c769ddcbe278f182c8affb20cecc1cc983e7cc5/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c95cab08d1965db3d84a121f1c7ce7479bdd4072c9b3dafd8fecce48a2e6b902", size = 1977989, upload-time = "2026-03-09T13:14:04.503Z" }, + { url = "https://files.pythonhosted.org/packages/1b/95/980c9df53501892784997820136c01f62bc1865e31b82b9560f980c0e649/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:fc20894c3d21194d8041a28b65622d5b86db786da6e3cfe73f0c762951a61167", size = 2491645, upload-time = "2026-03-09T13:14:06.106Z" }, + { url = "https://files.pythonhosted.org/packages/cb/32/900647fd0840abebe1561792c6b31e6a7c0e278fc3973d30572a965ca14c/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7a32f72973f0f950c1920475d5c5ea3d971b81b6f0ec53b8d0a956cc965f22e0", size = 2295237, upload-time = "2026-03-09T13:14:08.891Z" }, + { url = "https://files.pythonhosted.org/packages/be/8a/be60e3bbcf513cc5a50f4a3e88e1dcecebb79c1ad607a7222877becaa101/kiwisolver-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bf3acf1419fa93064a4c2189ac0b58e3be7872bf6ee6177b0d4c63dc4cea276", size = 73573, upload-time = "2026-03-09T13:14:12.327Z" }, + { url = "https://files.pythonhosted.org/packages/4d/d2/64be2e429eb4fca7f7e1c52a91b12663aeaf25de3895e5cca0f47ef2a8d0/kiwisolver-1.5.0-cp313-cp313-win_arm64.whl", hash = "sha256:fa8eb9ecdb7efb0b226acec134e0d709e87a909fa4971a54c0c4f6e88635484c", size = 64998, upload-time = "2026-03-09T13:14:13.469Z" }, + { url = "https://files.pythonhosted.org/packages/b0/69/ce68dd0c85755ae2de490bf015b62f2cea5f6b14ff00a463f9d0774449ff/kiwisolver-1.5.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:db485b3847d182b908b483b2ed133c66d88d49cacf98fd278fadafe11b4478d1", size = 125700, upload-time = "2026-03-09T13:14:14.636Z" }, + { url = "https://files.pythonhosted.org/packages/74/aa/937aac021cf9d4349990d47eb319309a51355ed1dbdc9c077cdc9224cb11/kiwisolver-1.5.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:be12f931839a3bdfe28b584db0e640a65a8bcbc24560ae3fdb025a449b3d754e", size = 67537, upload-time = "2026-03-09T13:14:15.808Z" }, + { url = "https://files.pythonhosted.org/packages/ee/20/3a87fbece2c40ad0f6f0aefa93542559159c5f99831d596050e8afae7a9f/kiwisolver-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:16b85d37c2cbb3253226d26e64663f755d88a03439a9c47df6246b35defbdfb7", size = 65514, upload-time = "2026-03-09T13:14:18.035Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7f/f943879cda9007c45e1f7dba216d705c3a18d6b35830e488b6c6a4e7cdf0/kiwisolver-1.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4432b835675f0ea7414aab3d37d119f7226d24869b7a829caeab49ebda407b0c", size = 1584848, upload-time = "2026-03-09T13:14:19.745Z" }, + { url = "https://files.pythonhosted.org/packages/37/f8/4d4f85cc1870c127c88d950913370dd76138482161cd07eabbc450deff01/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b0feb50971481a2cc44d94e88bdb02cdd497618252ae226b8eb1201b957e368", size = 1391542, upload-time = "2026-03-09T13:14:21.54Z" }, + { url = "https://files.pythonhosted.org/packages/04/0b/65dd2916c84d252b244bd405303220f729e7c17c9d7d33dca6feeff9ffc4/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:56fa888f10d0f367155e76ce849fa1166fc9730d13bd2d65a2aa13b6f5424489", size = 1404447, upload-time = "2026-03-09T13:14:23.205Z" }, + { url = "https://files.pythonhosted.org/packages/39/5c/2606a373247babce9b1d056c03a04b65f3cf5290a8eac5d7bdead0a17e21/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:940dda65d5e764406b9fb92761cbf462e4e63f712ab60ed98f70552e496f3bf1", size = 1455918, upload-time = "2026-03-09T13:14:24.74Z" }, + { url = "https://files.pythonhosted.org/packages/d5/d1/c6078b5756670658e9192a2ef11e939c92918833d2745f85cd14a6004bdf/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_39_riscv64.whl", hash = "sha256:89fc958c702ee9a745e4700378f5d23fddbc46ff89e8fdbf5395c24d5c1452a3", size = 1072856, upload-time = "2026-03-09T13:14:26.597Z" }, + { url = "https://files.pythonhosted.org/packages/cb/c8/7def6ddf16eb2b3741d8b172bdaa9af882b03c78e9b0772975408801fa63/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9027d773c4ff81487181a925945743413f6069634d0b122d0b37684ccf4f1e18", size = 2333580, upload-time = "2026-03-09T13:14:28.237Z" }, + { url = "https://files.pythonhosted.org/packages/9e/87/2ac1fce0eb1e616fcd3c35caa23e665e9b1948bb984f4764790924594128/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:5b233ea3e165e43e35dba1d2b8ecc21cf070b45b65ae17dd2747d2713d942021", size = 2423018, upload-time = "2026-03-09T13:14:30.018Z" }, + { url = "https://files.pythonhosted.org/packages/67/13/c6700ccc6cc218716bfcda4935e4b2997039869b4ad8a94f364c5a3b8e63/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:ce9bf03dad3b46408c08649c6fbd6ca28a9fce0eb32fdfffa6775a13103b5310", size = 2062804, upload-time = "2026-03-09T13:14:32.888Z" }, + { url = "https://files.pythonhosted.org/packages/1b/bd/877056304626943ff0f1f44c08f584300c199b887cb3176cd7e34f1515f1/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:fc4d3f1fb9ca0ae9f97b095963bc6326f1dbfd3779d6679a1e016b9baaa153d3", size = 2597482, upload-time = "2026-03-09T13:14:34.971Z" }, + { url = "https://files.pythonhosted.org/packages/75/19/c60626c47bf0f8ac5dcf72c6c98e266d714f2fbbfd50cf6dab5ede3aaa50/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f443b4825c50a51ee68585522ab4a1d1257fac65896f282b4c6763337ac9f5d2", size = 2394328, upload-time = "2026-03-09T13:14:36.816Z" }, + { url = "https://files.pythonhosted.org/packages/47/84/6a6d5e5bb8273756c27b7d810d47f7ef2f1f9b9fd23c9ee9a3f8c75c9cef/kiwisolver-1.5.0-cp313-cp313t-win_arm64.whl", hash = "sha256:893ff3a711d1b515ba9da14ee090519bad4610ed1962fbe298a434e8c5f8db53", size = 68410, upload-time = "2026-03-09T13:14:38.695Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/060f45052f2a01ad5762c8fdecd6d7a752b43400dc29ff75cd47225a40fd/kiwisolver-1.5.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8df31fe574b8b3993cc61764f40941111b25c2d9fea13d3ce24a49907cd2d615", size = 123231, upload-time = "2026-03-09T13:14:41.323Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a7/78da680eadd06ff35edef6ef68a1ad273bad3e2a0936c9a885103230aece/kiwisolver-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:1d49a49ac4cbfb7c1375301cd1ec90169dfeae55ff84710d782260ce77a75a02", size = 66489, upload-time = "2026-03-09T13:14:42.534Z" }, + { url = "https://files.pythonhosted.org/packages/49/b2/97980f3ad4fae37dd7fe31626e2bf75fbf8bdf5d303950ec1fab39a12da8/kiwisolver-1.5.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0cbe94b69b819209a62cb27bdfa5dc2a8977d8de2f89dfd97ba4f53ed3af754e", size = 64063, upload-time = "2026-03-09T13:14:44.759Z" }, + { url = "https://files.pythonhosted.org/packages/e7/f9/b06c934a6aa8bc91f566bd2a214fd04c30506c2d9e2b6b171953216a65b6/kiwisolver-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:80aa065ffd378ff784822a6d7c3212f2d5f5e9c3589614b5c228b311fd3063ac", size = 1475913, upload-time = "2026-03-09T13:14:46.247Z" }, + { url = "https://files.pythonhosted.org/packages/6b/f0/f768ae564a710135630672981231320bc403cf9152b5596ec5289de0f106/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e7f886f47ab881692f278ae901039a234e4025a68e6dfab514263a0b1c4ae05", size = 1282782, upload-time = "2026-03-09T13:14:48.458Z" }, + { url = "https://files.pythonhosted.org/packages/e2/9f/1de7aad00697325f05238a5f2eafbd487fb637cc27a558b5367a5f37fb7f/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5060731cc3ed12ca3a8b57acd4aeca5bbc2f49216dd0bec1650a1acd89486bcd", size = 1300815, upload-time = "2026-03-09T13:14:50.721Z" }, + { url = "https://files.pythonhosted.org/packages/5a/c2/297f25141d2e468e0ce7f7a7b92e0cf8918143a0cbd3422c1ad627e85a06/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7a4aa69609f40fce3cbc3f87b2061f042eee32f94b8f11db707b66a26461591a", size = 1347925, upload-time = "2026-03-09T13:14:52.304Z" }, + { url = "https://files.pythonhosted.org/packages/b9/d3/f4c73a02eb41520c47610207b21afa8cdd18fdbf64ffd94674ae21c4812d/kiwisolver-1.5.0-cp314-cp314-manylinux_2_39_riscv64.whl", hash = "sha256:d168fda2dbff7b9b5f38e693182d792a938c31db4dac3a80a4888de603c99554", size = 991322, upload-time = "2026-03-09T13:14:54.637Z" }, + { url = "https://files.pythonhosted.org/packages/7b/46/d3f2efef7732fcda98d22bf4ad5d3d71d545167a852ca710a494f4c15343/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:413b820229730d358efd838ecbab79902fe97094565fdc80ddb6b0a18c18a581", size = 2232857, upload-time = "2026-03-09T13:14:56.471Z" }, + { url = "https://files.pythonhosted.org/packages/3f/ec/2d9756bf2b6d26ae4349b8d3662fb3993f16d80c1f971c179ce862b9dbae/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:5124d1ea754509b09e53738ec185584cc609aae4a3b510aaf4ed6aa047ef9303", size = 2329376, upload-time = "2026-03-09T13:14:58.072Z" }, + { url = "https://files.pythonhosted.org/packages/8f/9f/876a0a0f2260f1bde92e002b3019a5fabc35e0939c7d945e0fa66185eb20/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:e4415a8db000bf49a6dd1c478bf70062eaacff0f462b92b0ba68791a905861f9", size = 1982549, upload-time = "2026-03-09T13:14:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/6c/4f/ba3624dfac23a64d54ac4179832860cb537c1b0af06024936e82ca4154a0/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d618fd27420381a4f6044faa71f46d8bfd911bd077c555f7138ed88729bfbe79", size = 2494680, upload-time = "2026-03-09T13:15:01.364Z" }, + { url = "https://files.pythonhosted.org/packages/39/b7/97716b190ab98911b20d10bf92eca469121ec483b8ce0edd314f51bc85af/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5092eb5b1172947f57d6ea7d89b2f29650414e4293c47707eb499ec07a0ac796", size = 2297905, upload-time = "2026-03-09T13:15:03.925Z" }, + { url = "https://files.pythonhosted.org/packages/a3/36/4e551e8aa55c9188bca9abb5096805edbf7431072b76e2298e34fd3a3008/kiwisolver-1.5.0-cp314-cp314-win_amd64.whl", hash = "sha256:d76e2d8c75051d58177e762164d2e9ab92886534e3a12e795f103524f221dd8e", size = 75086, upload-time = "2026-03-09T13:15:07.775Z" }, + { url = "https://files.pythonhosted.org/packages/70/15/9b90f7df0e31a003c71649cf66ef61c3c1b862f48c81007fa2383c8bd8d7/kiwisolver-1.5.0-cp314-cp314-win_arm64.whl", hash = "sha256:fa6248cd194edff41d7ea9425ced8ca3a6f838bfb295f6f1d6e6bb694a8518df", size = 66577, upload-time = "2026-03-09T13:15:09.139Z" }, + { url = "https://files.pythonhosted.org/packages/17/01/7dc8c5443ff42b38e72731643ed7cf1ed9bf01691ae5cdca98501999ed83/kiwisolver-1.5.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:d1ffeb80b5676463d7a7d56acbe8e37a20ce725570e09549fe738e02ca6b7e1e", size = 125794, upload-time = "2026-03-09T13:15:10.525Z" }, + { url = "https://files.pythonhosted.org/packages/46/8a/b4ebe46ebaac6a303417fab10c2e165c557ddaff558f9699d302b256bc53/kiwisolver-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:bc4d8e252f532ab46a1de9349e2d27b91fce46736a9eedaa37beaca66f574ed4", size = 67646, upload-time = "2026-03-09T13:15:12.016Z" }, + { url = "https://files.pythonhosted.org/packages/60/35/10a844afc5f19d6f567359bf4789e26661755a2f36200d5d1ed8ad0126e5/kiwisolver-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6783e069732715ad0c3ce96dbf21dbc2235ab0593f2baf6338101f70371f4028", size = 65511, upload-time = "2026-03-09T13:15:13.311Z" }, + { url = "https://files.pythonhosted.org/packages/f8/8a/685b297052dd041dcebce8e8787b58923b6e78acc6115a0dc9189011c44b/kiwisolver-1.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e7c4c09a490dc4d4a7f8cbee56c606a320f9dc28cf92a7157a39d1ce7676a657", size = 1584858, upload-time = "2026-03-09T13:15:15.103Z" }, + { url = "https://files.pythonhosted.org/packages/9e/80/04865e3d4638ac5bddec28908916df4a3075b8c6cc101786a96803188b96/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2a075bd7bd19c70cf67c8badfa36cf7c5d8de3c9ddb8420c51e10d9c50e94920", size = 1392539, upload-time = "2026-03-09T13:15:16.661Z" }, + { url = "https://files.pythonhosted.org/packages/ba/01/77a19cacc0893fa13fafa46d1bba06fb4dc2360b3292baf4b56d8e067b24/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bdd3e53429ff02aa319ba59dfe4ceeec345bf46cf180ec2cf6fd5b942e7975e9", size = 1405310, upload-time = "2026-03-09T13:15:18.229Z" }, + { url = "https://files.pythonhosted.org/packages/53/39/bcaf5d0cca50e604cfa9b4e3ae1d64b50ca1ae5b754122396084599ef903/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cdcb35dc9d807259c981a85531048ede628eabcffb3239adf3d17463518992d", size = 1456244, upload-time = "2026-03-09T13:15:20.444Z" }, + { url = "https://files.pythonhosted.org/packages/d0/7a/72c187abc6975f6978c3e39b7cf67aeb8b3c0a8f9790aa7fd412855e9e1f/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_39_riscv64.whl", hash = "sha256:70d593af6a6ca332d1df73d519fddb5148edb15cd90d5f0155e3746a6d4fcc65", size = 1073154, upload-time = "2026-03-09T13:15:22.039Z" }, + { url = "https://files.pythonhosted.org/packages/c7/ca/cf5b25783ebbd59143b4371ed0c8428a278abe68d6d0104b01865b1bbd0f/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:377815a8616074cabbf3f53354e1d040c35815a134e01d7614b7692e4bf8acfa", size = 2334377, upload-time = "2026-03-09T13:15:23.741Z" }, + { url = "https://files.pythonhosted.org/packages/4a/e5/b1f492adc516796e88751282276745340e2a72dcd0d36cf7173e0daf3210/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0255a027391d52944eae1dbb5d4cc5903f57092f3674e8e544cdd2622826b3f0", size = 2425288, upload-time = "2026-03-09T13:15:25.789Z" }, + { url = "https://files.pythonhosted.org/packages/e6/e5/9b21fbe91a61b8f409d74a26498706e97a48008bfcd1864373d32a6ba31c/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:012b1eb16e28718fa782b5e61dc6f2da1f0792ca73bd05d54de6cb9561665fc9", size = 2063158, upload-time = "2026-03-09T13:15:27.63Z" }, + { url = "https://files.pythonhosted.org/packages/b1/02/83f47986138310f95ea95531f851b2a62227c11cbc3e690ae1374fe49f0f/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:0e3aafb33aed7479377e5e9a82e9d4bf87063741fc99fc7ae48b0f16e32bdd6f", size = 2597260, upload-time = "2026-03-09T13:15:29.421Z" }, + { url = "https://files.pythonhosted.org/packages/07/18/43a5f24608d8c313dd189cf838c8e68d75b115567c6279de7796197cfb6a/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:e7a116ae737f0000343218c4edf5bd45893bfeaff0993c0b215d7124c9f77646", size = 2394403, upload-time = "2026-03-09T13:15:31.517Z" }, + { url = "https://files.pythonhosted.org/packages/3b/b5/98222136d839b8afabcaa943b09bd05888c2d36355b7e448550211d1fca4/kiwisolver-1.5.0-cp314-cp314t-win_amd64.whl", hash = "sha256:1dd9b0b119a350976a6d781e7278ec7aca0b201e1a9e2d23d9804afecb6ca681", size = 79687, upload-time = "2026-03-09T13:15:33.204Z" }, + { url = "https://files.pythonhosted.org/packages/99/a2/ca7dc962848040befed12732dff6acae7fb3c4f6fc4272b3f6c9a30b8713/kiwisolver-1.5.0-cp314-cp314t-win_arm64.whl", hash = "sha256:58f812017cd2985c21fbffb4864d59174d4903dd66fa23815e74bbc7a0e2dd57", size = 70032, upload-time = "2026-03-09T13:15:34.411Z" }, + { url = "https://files.pythonhosted.org/packages/1c/fa/2910df836372d8761bb6eff7d8bdcb1613b5c2e03f260efe7abe34d388a7/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl", hash = "sha256:5ae8e62c147495b01a0f4765c878e9bfdf843412446a247e28df59936e99e797", size = 130262, upload-time = "2026-03-09T13:15:35.629Z" }, + { url = "https://files.pythonhosted.org/packages/0f/41/c5f71f9f00aabcc71fee8b7475e3f64747282580c2fe748961ba29b18385/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:f6764a4ccab3078db14a632420930f6186058750df066b8ea2a7106df91d3203", size = 138036, upload-time = "2026-03-09T13:15:36.894Z" }, + { url = "https://files.pythonhosted.org/packages/fa/06/7399a607f434119c6e1fdc8ec89a8d51ccccadf3341dee4ead6bd14caaf5/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c31c13da98624f957b0fb1b5bae5383b2333c2c3f6793d9825dd5ce79b525cb7", size = 194295, upload-time = "2026-03-09T13:15:38.22Z" }, + { url = "https://files.pythonhosted.org/packages/b5/91/53255615acd2a1eaca307ede3c90eb550bae9c94581f8c00081b6b1c8f44/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-win_amd64.whl", hash = "sha256:1f1489f769582498610e015a8ef2d36f28f505ab3096d0e16b4858a9ec214f57", size = 75987, upload-time = "2026-03-09T13:15:39.65Z" }, + { url = "https://files.pythonhosted.org/packages/e9/eb/5fcbbbf9a0e2c3a35effb88831a483345326bbc3a030a3b5b69aee647f84/kiwisolver-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ec4c85dc4b687c7f7f15f553ff26a98bfe8c58f5f7f0ac8905f0ba4c7be60232", size = 59532, upload-time = "2026-03-09T13:15:47.047Z" }, + { url = "https://files.pythonhosted.org/packages/c3/9b/e17104555bb4db148fd52327feea1e96be4b88e8e008b029002c281a21ab/kiwisolver-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:12e91c215a96e39f57989c8912ae761286ac5a9584d04030ceb3368a357f017a", size = 57420, upload-time = "2026-03-09T13:15:48.199Z" }, + { url = "https://files.pythonhosted.org/packages/48/44/2b5b95b7aa39fb2d8d9d956e0f3d5d45aef2ae1d942d4c3ffac2f9cfed1a/kiwisolver-1.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:be4a51a55833dc29ab5d7503e7bcb3b3af3402d266018137127450005cdfe737", size = 79892, upload-time = "2026-03-09T13:15:49.694Z" }, + { url = "https://files.pythonhosted.org/packages/52/7d/7157f9bba6b455cfb4632ed411e199fc8b8977642c2b12082e1bd9e6d173/kiwisolver-1.5.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:daae526907e262de627d8f70058a0f64acc9e2641c164c99c8f594b34a799a16", size = 77603, upload-time = "2026-03-09T13:15:50.945Z" }, + { url = "https://files.pythonhosted.org/packages/0a/dd/8050c947d435c8d4bc94e3252f4d8bb8a76cfb424f043a8680be637a57f1/kiwisolver-1.5.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:59cd8683f575d96df5bb48f6add94afc055012c29e28124fcae2b63661b9efb1", size = 73558, upload-time = "2026-03-09T13:15:52.112Z" }, +] + +[[package]] +name = "markdown" +version = "3.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2b/f4/69fa6ed85ae003c2378ffa8f6d2e3234662abd02c10d216c0ba96081a238/markdown-3.10.2.tar.gz", hash = "sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950", size = 368805, upload-time = "2026-02-09T14:57:26.942Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, +] + +[[package]] +name = "markdown-callouts" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/87/73/ae5aa379f6f7fea9d0bf4cba888f9a31d451d90f80033ae60ae3045770d5/markdown_callouts-0.4.0.tar.gz", hash = "sha256:7ed2c90486967058a73a547781121983839522d67041ae52c4979616f1b2b746", size = 9768, upload-time = "2024-01-22T23:18:18.513Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/b5/7b0a0a52c82bfccd830af2a8cc8add1c5bc932e0204922434954a631dd51/markdown_callouts-0.4.0-py3-none-any.whl", hash = "sha256:ed0da38f29158d93116a0d0c6ecaf9df90b37e0d989b5337d678ee6e6d6550b7", size = 7108, upload-time = "2024-01-22T23:18:17.465Z" }, +] + +[[package]] +name = "markdown-include" +version = "0.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ad/d8/66bf162fe6c1adb619f94a6da599323eecacf15b6d57469d0fd0421c10df/markdown-include-0.8.1.tar.gz", hash = "sha256:1d0623e0fc2757c38d35df53752768356162284259d259c486b4ab6285cdbbe3", size = 21873, upload-time = "2023-02-07T09:47:26.608Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/e2/c4d20b21a05fe0fee571649cebc05f7f72e80b1a743f932e7326125e6c9e/markdown_include-0.8.1-py3-none-any.whl", hash = "sha256:32f0635b9cfef46997b307e2430022852529f7a5b87c0075c504283e7cc7db53", size = 18837, upload-time = "2023-02-07T09:47:25.03Z" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" }, + { url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" }, + { url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" }, + { url = "https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf", size = 22940, upload-time = "2025-09-27T18:36:22.249Z" }, + { url = "https://files.pythonhosted.org/packages/19/ae/31c1be199ef767124c042c6c3e904da327a2f7f0cd63a0337e1eca2967a8/markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f", size = 21887, upload-time = "2025-09-27T18:36:23.535Z" }, + { url = "https://files.pythonhosted.org/packages/b2/76/7edcab99d5349a4532a459e1fe64f0b0467a3365056ae550d3bcf3f79e1e/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a", size = 23692, upload-time = "2025-09-27T18:36:24.823Z" }, + { url = "https://files.pythonhosted.org/packages/a4/28/6e74cdd26d7514849143d69f0bf2399f929c37dc2b31e6829fd2045b2765/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115", size = 21471, upload-time = "2025-09-27T18:36:25.95Z" }, + { url = "https://files.pythonhosted.org/packages/62/7e/a145f36a5c2945673e590850a6f8014318d5577ed7e5920a4b3448e0865d/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a", size = 22923, upload-time = "2025-09-27T18:36:27.109Z" }, + { url = "https://files.pythonhosted.org/packages/0f/62/d9c46a7f5c9adbeeeda52f5b8d802e1094e9717705a645efc71b0913a0a8/markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19", size = 14572, upload-time = "2025-09-27T18:36:28.045Z" }, + { url = "https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01", size = 15077, upload-time = "2025-09-27T18:36:29.025Z" }, + { url = "https://files.pythonhosted.org/packages/35/73/893072b42e6862f319b5207adc9ae06070f095b358655f077f69a35601f0/markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c", size = 13876, upload-time = "2025-09-27T18:36:29.954Z" }, + { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, + { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, + { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, + { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, + { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, + { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, + { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, + { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, + { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, + { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, + { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, + { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, + { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, + { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, + { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, + { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, + { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, + { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, + { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, + { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, + { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, + { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, + { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, + { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, + { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, + { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, + { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, + { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, + { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, + { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, + { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, + { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, + { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, + { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, + { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, + { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, + { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, + { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, + { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, + { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, + { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, + { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, + { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, + { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, + { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, + { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, + { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1f/24/080c99d223d158d3a8902769269ab6da5b50f7a0e6e072513907e02b7a6c/matplotlib-3.11.0.tar.gz", hash = "sha256:68c0c7be01b30dcca3638934f7f591df73401235cbdbf0d1ab1c71e7db7f8b57", size = 33251176, upload-time = "2026-06-12T02:29:15.508Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/a2/78f662f1b18968531f67d3fcde1b7ea8496920bacd4f16ddb5b79d112e46/matplotlib-3.11.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:f857524b442f0f36e641868ce2171aafa88cb0bc0644f4e1d8a5df9b32649fef", size = 9436261, upload-time = "2026-06-12T02:27:34.161Z" }, + { url = "https://files.pythonhosted.org/packages/5e/92/044f1de43901310202f4c79acf4f141be53b2ca8d8380e2fcefb3d523a75/matplotlib-3.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:57baa92fdc82948ed716eae6d2579d4d6f40965cd8d2f416755b4a72580a3233", size = 9264669, upload-time = "2026-06-12T02:27:37.413Z" }, + { url = "https://files.pythonhosted.org/packages/53/f4/f0b4f9ba7ec14a7af8151f3ad71ecfe3561e6ba38cfab1db3681ba4ca112/matplotlib-3.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:630eee0e67d35cce2019a0e670719f4816e3b86aff0fa72729f6c69786fceb45", size = 10021076, upload-time = "2026-06-12T02:27:39.926Z" }, + { url = "https://files.pythonhosted.org/packages/d7/33/4d679c6dcd594a156542080ac907ddccf7b09ca11655c4b28eca8e9ee5da/matplotlib-3.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5106c444d0bf966eee2853548c03772af4ab7199118e086c62fbac8ccb07c055", size = 10828999, upload-time = "2026-06-12T02:27:42.433Z" }, + { url = "https://files.pythonhosted.org/packages/07/74/0a3683802037d8cd013144d77c247219b47f2aabace6fdde74faa12bacf7/matplotlib-3.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4d7aea652b58e686444079be3376ef546bffa1eee9b9bb9c472b9fcf6cf410d3", size = 10913103, upload-time = "2026-06-12T02:27:44.827Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9f/970fcbf381e82ec66fdf5da8ea76e2e9240f61a24011ce9fd1d42c37ac2d/matplotlib-3.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:70a5b3e9a5dab708c0f039709ae7c68d5b4d254e291ef76492cdba230c8bb5e4", size = 9310945, upload-time = "2026-06-12T02:27:46.867Z" }, + { url = "https://files.pythonhosted.org/packages/14/4e/6e7cfed23611265ded53806852343b5c59339e506e84c474a9b5afc3b249/matplotlib-3.11.0-cp311-cp311-win_arm64.whl", hash = "sha256:3d68266213e73823ac3be90615bab0cf31f88851e114cdb1dd25dacf3b01e1a7", size = 8999304, upload-time = "2026-06-12T02:27:48.798Z" }, + { url = "https://files.pythonhosted.org/packages/da/17/f5276b496c61477a6c4fc5e7401f4bfe1c2e5ef7c6cd67896f2ade3809cb/matplotlib-3.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:06b5872e9cf11adc8f589ded3ce11bc3e1061ad498259664fabc1f6615beb918", size = 9449976, upload-time = "2026-06-12T02:27:50.989Z" }, + { url = "https://files.pythonhosted.org/packages/82/34/bdd77418adb2178a1d59f044bd67bfebb115896e91b840b8a197eb3f4f4e/matplotlib-3.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0515d495124be3124340e59f164d901ed4484e2246a5b74cfa483cac3b80bd97", size = 9279307, upload-time = "2026-06-12T02:27:53.247Z" }, + { url = "https://files.pythonhosted.org/packages/94/95/7f522393c88313336b20d70fc849555757b2e5febc22b83b3a3f0fd4bce9/matplotlib-3.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:be5f93a1d21981bfb802ded0d77a0caa92d4342a47d45754fac77e314a506344", size = 10031353, upload-time = "2026-06-12T02:27:55.215Z" }, + { url = "https://files.pythonhosted.org/packages/87/ce/8f25a0e3186aefd61913e7467d1b999465bcd0d0c03ac695c1b26ca559b7/matplotlib-3.11.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41635d7909d19e52e924a521dde6d8f670b0f53ab1d0e8c331fa831554f681d1", size = 10839232, upload-time = "2026-06-12T02:27:57.746Z" }, + { url = "https://files.pythonhosted.org/packages/85/c2/db15da2bbdf9e3ca66df7db8e2c33a1dfed67be24a24d2c878efaaff01d6/matplotlib-3.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:94f5000f67ca9faa300863ea17f8bce9175cb67b88bec4bc7780502d53dd7c9e", size = 10923899, upload-time = "2026-06-12T02:28:00.223Z" }, + { url = "https://files.pythonhosted.org/packages/e5/2f/a58a4443a4d052a4ea77557478336aefc26c7981f6408d37adba763aa758/matplotlib-3.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:ac6f1ef39f3d0f9e2463303013094992cdbe0f85f43bc54155bc472b2042768e", size = 9329528, upload-time = "2026-06-12T02:28:02.27Z" }, + { url = "https://files.pythonhosted.org/packages/61/0f/4b669589d47733b97ab9df4b58d6fc1e68acb5ea42a928dc7cbdd6bf5871/matplotlib-3.11.0-cp312-cp312-win_arm64.whl", hash = "sha256:9dd11fb612ce7bc60b1de5b4fc87ff959d22317b5de42aabf392f66f97af22eb", size = 9003413, upload-time = "2026-06-12T02:28:04.49Z" }, + { url = "https://files.pythonhosted.org/packages/55/41/aa47f156b061d14c98b906f76c428507397708ec63ff94f410ae1752b426/matplotlib-3.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce3b839b34ae1f430b4616893a2945a2999debaa7e94e7e29a2a8bbf286f7b5", size = 9450532, upload-time = "2026-06-12T02:28:06.769Z" }, + { url = "https://files.pythonhosted.org/packages/8c/4f/5a9eb0375e81413953febf8af7b012a6b6357f53438a15c4f5ad86c6bbb5/matplotlib-3.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:373db8f91214e8ccaf35ac833cc1dd59dd961e148bbd55dd027141591dde1313", size = 9279760, upload-time = "2026-06-12T02:28:09.152Z" }, + { url = "https://files.pythonhosted.org/packages/a4/c0/1117d53077e3ac3152503a84e9cf7a5c239576805ee71276e80c2aaa7471/matplotlib-3.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:be152b7570324dc8d01574cc9474dd2d803237acf528bcbb5b211fa347461a09", size = 10031623, upload-time = "2026-06-12T02:28:11.26Z" }, + { url = "https://files.pythonhosted.org/packages/92/7e/e937138daffad65b71bf831a377809dcbc830fb4f31a31e067dc1faa2575/matplotlib-3.11.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:126f256df600652d7e4b394cf3164ff75210a00038f287c95a012a6f58d0e83f", size = 10839372, upload-time = "2026-06-12T02:28:14.102Z" }, + { url = "https://files.pythonhosted.org/packages/1d/c2/438ecc197ffb8023b6b9922915542f2172f5fd45b76703b0b4fc47322243/matplotlib-3.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:03acfeddf87b0dddb11b081ef7740ad445a3ca8bcb6b8e3011b08f2cf802b75c", size = 10924099, upload-time = "2026-06-12T02:28:16.383Z" }, + { url = "https://files.pythonhosted.org/packages/40/2e/395883da416f378b3ed2c9f3e843ac477eae1ce731b671b79adaa6f0bacd/matplotlib-3.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:ab3722f04f3ff34c23b5012c5873d2894174e06c3822fcdac3610965a5ac7d06", size = 9329727, upload-time = "2026-06-12T02:28:18.581Z" }, + { url = "https://files.pythonhosted.org/packages/61/82/2c388956abf8bf392dfb5b8917c502f1082df6a941b781ab8c8e5ba2474b/matplotlib-3.11.0-cp313-cp313-win_arm64.whl", hash = "sha256:c945824670fb8915b4ac879e5e61f3c58e0913022f70a0de4c082b17372f8771", size = 9003506, upload-time = "2026-06-12T02:28:20.474Z" }, + { url = "https://files.pythonhosted.org/packages/c8/c1/34454baa44da7975ada82e9aea37105ec47059514dc967d3be14426ba8dc/matplotlib-3.11.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3489c3dc487669b4a980bc3068f87856de7a1564248d3f6c629efb2a58b03f24", size = 9499838, upload-time = "2026-06-12T02:28:22.713Z" }, + { url = "https://files.pythonhosted.org/packages/b1/c3/98fe79a398cf232219f090163a7fa7e6766e9f2e0ad26df54d6f8934d8ee/matplotlib-3.11.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6a98f5476ce784a50ce09998f4ae1e6a9f25043cef8a480c98949902eda74620", size = 9332298, upload-time = "2026-06-12T02:28:24.796Z" }, + { url = "https://files.pythonhosted.org/packages/95/e4/b4b7c33151e74e5c802f3cde1ba807ebfc38401e329b44e215a5888dd76d/matplotlib-3.11.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:565af866fd63e4bd3f987d580afe27c44c2552a3b3305f4ecbb85133601ea6f3", size = 10045491, upload-time = "2026-06-12T02:28:27.141Z" }, + { url = "https://files.pythonhosted.org/packages/71/28/394548efd68354110c1a1be11fe6b6e559e06d1a23da35908a0e316c55a9/matplotlib-3.11.0-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e6b3e64dea5062c570f04358e2711859f3531b459f29516274fbad889079e4f3", size = 10857059, upload-time = "2026-06-12T02:28:29.222Z" }, + { url = "https://files.pythonhosted.org/packages/c8/44/e7922e6e2a4d63bdfbc9dc4a53e3850ab438d46cf42e6779bb15ec92c948/matplotlib-3.11.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:942b37c5db1899610bd1543ce8e13e4ecff9a4633e7f63bb6aa9205d2644ebd1", size = 10939576, upload-time = "2026-06-12T02:28:31.66Z" }, + { url = "https://files.pythonhosted.org/packages/3d/be/b1ca96003a441d619b727fee21d671fdff7a5ce2f1bb797b2521aa2f679a/matplotlib-3.11.0-cp313-cp313t-win_amd64.whl", hash = "sha256:c08e649a6313e1291e713623b97a38e5bb4aa580b2a100a94a3309bc6b9c8eb3", size = 9379519, upload-time = "2026-06-12T02:28:33.888Z" }, + { url = "https://files.pythonhosted.org/packages/e3/72/4bf3b91821c34596dd6a7bdac5836d94f744144c8208939ef49d8ec43f7e/matplotlib-3.11.0-cp313-cp313t-win_arm64.whl", hash = "sha256:2746cd2c113742ff6ce37a864c5ac5fd7aa644568f445e66166e457ac78e40e0", size = 9055456, upload-time = "2026-06-12T02:28:35.878Z" }, + { url = "https://files.pythonhosted.org/packages/57/52/a94102ac99eb78e2fe9b826674f9ef9ee23327110ea6ab4776c1b4eb6209/matplotlib-3.11.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:3338e3e3de128cf50d0d2fb92a122815daf9c755bd882a474343c05f8fd7ec79", size = 9452137, upload-time = "2026-06-12T02:28:37.93Z" }, + { url = "https://files.pythonhosted.org/packages/7c/03/b8cdb625a21f710dfa11bbca1f48fb4057d2c0286975f8b415bf80942c99/matplotlib-3.11.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:25c2e5455efd8d99f41fb79871a31feb7d301569642e332ec58d72cfe9282bc3", size = 9281514, upload-time = "2026-06-12T02:28:40.028Z" }, + { url = "https://files.pythonhosted.org/packages/b7/2d/4e1240ea82ee197dfb3851e71f71c87eeeb975f1753b56a0588e4e80739a/matplotlib-3.11.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d9695457a467ff86d23f35037a43deb6f1134dd6d3e2ac8ce1e2087cff09ffb9", size = 10843005, upload-time = "2026-06-12T02:28:42.39Z" }, + { url = "https://files.pythonhosted.org/packages/29/dc/6377ecfaa5fef79430f74a1a16638b4e2aa30d4692bae2c19f9d76fe3b01/matplotlib-3.11.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:19c16c61dea63b3582918503e6b294193961261d9daa806d4ae2151f1ad05430", size = 11127459, upload-time = "2026-06-12T02:28:44.483Z" }, + { url = "https://files.pythonhosted.org/packages/6f/41/795c405aa7560443a3b01309424cde4a1113b85c90b8a63417444a749617/matplotlib-3.11.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2d72ea8b7924f3cb955e61518d21e43b3df1e6c8a793b480a0c1214f185d30ba", size = 10925160, upload-time = "2026-06-12T02:28:46.564Z" }, + { url = "https://files.pythonhosted.org/packages/1a/f7/3a9e6389a7cfaeff76c56e40c2dabcb13110e21e82f837228c834ebe748c/matplotlib-3.11.0-cp314-cp314-win_amd64.whl", hash = "sha256:1c02da0a629dfa9debf52725ea06866b74c1fb70a895bae05e4493d34074f9f2", size = 9485186, upload-time = "2026-06-12T02:28:49.344Z" }, + { url = "https://files.pythonhosted.org/packages/8b/c0/396478ee7cf2091d182db8b4a8695f6a37f1ddb978989cf9dbb84cd5c123/matplotlib-3.11.0-cp314-cp314-win_arm64.whl", hash = "sha256:aa55d73b3117d4b07f959cd9eb6f69b375d8df3414139c479388e551aa5d999d", size = 9160349, upload-time = "2026-06-12T02:28:51.382Z" }, + { url = "https://files.pythonhosted.org/packages/c5/6f/1c3bd51bb2b34eaacdcf3c3d859dbb357f952fc8020c617dc118ad7c9e38/matplotlib-3.11.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:a9d8c6e7cd2f0ddf11d8d92e520dd1d9d2abb0cf6ac8831e338666c81e905847", size = 9500921, upload-time = "2026-06-12T02:28:53.443Z" }, + { url = "https://files.pythonhosted.org/packages/e0/0d/4d861d0121840cb1a3fd4a10deb211efd6fccd481ed23e553f31f4f4da4a/matplotlib-3.11.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:be050fcf32f729eda99f7f75a80bf67612ce16ab9ac1c23a387dcaede95cb70e", size = 9332190, upload-time = "2026-06-12T02:28:55.623Z" }, + { url = "https://files.pythonhosted.org/packages/4b/cb/22f6bc35711a0b5639a784e74e653e77c86210bd4304449dd399a482f74e/matplotlib-3.11.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dfabef0230d0697aa0d717385194dd41162e00207a68bf4abf94c2bf4c27dca0", size = 10854181, upload-time = "2026-06-12T02:28:57.856Z" }, + { url = "https://files.pythonhosted.org/packages/3f/7e/9a9eaca731a2939589da520f0ebe8fd8753d0f51fca98c7d20af6dbe261a/matplotlib-3.11.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1644db30e759199443493ac5e5caec24fdb775a8f6123021f85ba47c4133c3cb", size = 11137715, upload-time = "2026-06-12T02:29:00.555Z" }, + { url = "https://files.pythonhosted.org/packages/ef/f9/9b030b6088354acb0296871bb624b25befc1c42509d3c6cd17420c83a5b8/matplotlib-3.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:15b0d160079cb10699a0e98b5989c70677b2df7cacdc62af67c30f2facec46d9", size = 10939427, upload-time = "2026-06-12T02:29:02.527Z" }, + { url = "https://files.pythonhosted.org/packages/59/94/6b273eaee4ee250863567d100865da61a5c1527fa67f527b7ed22e0dd29c/matplotlib-3.11.0-cp314-cp314t-win_amd64.whl", hash = "sha256:446307e6b04b57b1f1239e228a1ec2af0d589a1008cebc3dfa3f5441d095cfb6", size = 9535809, upload-time = "2026-06-12T02:29:04.994Z" }, + { url = "https://files.pythonhosted.org/packages/60/95/1d36bddf2b7e2692c1540e78a6e5bc88bc1496b137e3e35a611f91b65ac3/matplotlib-3.11.0-cp314-cp314t-win_arm64.whl", hash = "sha256:652fb5696271d4c50f196d22a5ff4f8e4444c74f847423570d7dc0aa2bbd0159", size = 9209226, upload-time = "2026-06-12T02:29:07.033Z" }, + { url = "https://files.pythonhosted.org/packages/0f/c2/f5da6cd37ed6871f5c9b3c0507ddb69f14d6c36fac4541e4e0c60cb8cdfc/matplotlib-3.11.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:81ae77077a1e16d37a5b61096ccb07c8d90a99b518fa8256b8f21578932f2f62", size = 9434094, upload-time = "2026-06-12T02:29:09.135Z" }, + { url = "https://files.pythonhosted.org/packages/f8/07/56f66906e0f87a0c6d0d0acbd34dbc9432b1931d8f26ef618bd6f92932a9/matplotlib-3.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ddef37840695f5eef65f9f070fe2d2f510f584c2156203f9f622a5b0584efffd", size = 9262183, upload-time = "2026-06-12T02:29:11.283Z" }, + { url = "https://files.pythonhosted.org/packages/0c/d8/c4ecab06b7ea36a570c4f3bd2d48d1799fd5d9174470e45c2194199431e7/matplotlib-3.11.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cf662e5ac5707658cb931e19972c4bd99f7b4f8b7bf79d3c821d239fa6b71e64", size = 10015653, upload-time = "2026-06-12T02:29:13.251Z" }, +] + +[[package]] +name = "mccabe" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/ff/0ffefdcac38932a54d2b5eed4e0ba8a408f215002cd178ad1df0f2806ff8/mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325", size = 9658, upload-time = "2022-01-24T01:14:51.113Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/1a/1f68f9ba0c207934b35b86a8ca3aad8395a3d6dd7921c0686e23853ff5a9/mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e", size = 7350, upload-time = "2022-01-24T01:14:49.62Z" }, +] + +[[package]] +name = "mcp" +version = "1.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "httpx" }, + { name = "httpx-sse" }, + { name = "jsonschema" }, + { name = "pydantic" }, + { name = "pydantic-settings" }, + { name = "pyjwt", extra = ["crypto"] }, + { name = "python-multipart" }, + { name = "pywin32", marker = "sys_platform == 'win32'" }, + { name = "sse-starlette" }, + { name = "starlette" }, + { name = "typing-extensions" }, + { name = "typing-inspection" }, + { name = "uvicorn", marker = "sys_platform != 'emscripten'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6e/77/9450b8f251a13affb6281997d0523c4615f8a8b35d0b21ff30db3a5aac9d/mcp-1.28.1.tar.gz", hash = "sha256:d51e36a5f5644faea4f85ea649bfffa6bc6c26770d42798ad6a3de3d2ba69683", size = 638501, upload-time = "2026-06-26T12:57:29.093Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/5e/d118fce19f87a2e7d8101c35c8ae0ec289098a4df0ff244cec23e415aca0/mcp-1.28.1-py3-none-any.whl", hash = "sha256:2726bca5e7193f61c5dde8b12500a6de2d9acf6d1a1c0be9e8c2e706437991df", size = 222620, upload-time = "2026-06-26T12:57:27.218Z" }, +] + +[[package]] +name = "mdx-gh-links" +version = "0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2f/ea/bf1f721a8dc0ff83b426480f040ac68dbe3d7898b096c1277a5a4e3da0ec/mdx_gh_links-0.4.tar.gz", hash = "sha256:41d5aac2ab201425aa0a19373c4095b79e5e015fdacfe83c398199fe55ca3686", size = 5783, upload-time = "2023-12-22T19:54:02.136Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/c7/ccfe05ade98ba7a63f05d1b05b7508d9af743cbd1f1681aa0c9900a8cd40/mdx_gh_links-0.4-py3-none-any.whl", hash = "sha256:9057bca1fa5280bf1fcbf354381e46c9261cc32c2d5c0407801f8a910be5f099", size = 7166, upload-time = "2023-12-22T19:54:00.384Z" }, +] + +[[package]] +name = "mergedeep" +version = "1.3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3a/41/580bb4006e3ed0361b8151a01d324fb03f420815446c7def45d02f74c270/mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8", size = 4661, upload-time = "2021-02-05T18:55:30.623Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307", size = 6354, upload-time = "2021-02-05T18:55:29.583Z" }, +] + +[[package]] +name = "mike" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, + { name = "mkdocs" }, + { name = "pyparsing" }, + { name = "pyyaml" }, + { name = "pyyaml-env-tag" }, + { name = "verspec" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b4/47/fa87e9d56bef16cdfe34b059a437e8c6f7ec6f1b9c378871c3cf95ebea9c/mike-2.2.0.tar.gz", hash = "sha256:1e3858e32c0f125aac14432fc7848434358f9ae0962c5c5cde387ad47f6ad25e", size = 38450, upload-time = "2026-04-14T04:59:03.944Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/8e/56ccb09c7232a55403a7637caa21922f3b65901a37f5e8bdb405d0de0946/mike-2.2.0-py3-none-any.whl", hash = "sha256:e1f4981c1152eec7c2490a3401142292cc47d686194188416db2648fdfe1d040", size = 34026, upload-time = "2026-04-14T04:59:02.602Z" }, +] + +[[package]] +name = "mkdocs" +version = "1.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "ghp-import" }, + { name = "jinja2" }, + { name = "markdown" }, + { name = "markupsafe" }, + { name = "mergedeep" }, + { name = "mkdocs-get-deps" }, + { name = "packaging" }, + { name = "pathspec" }, + { name = "pyyaml" }, + { name = "pyyaml-env-tag" }, + { name = "watchdog" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bc/c6/bbd4f061bd16b378247f12953ffcb04786a618ce5e904b8c5a01a0309061/mkdocs-1.6.1.tar.gz", hash = "sha256:7b432f01d928c084353ab39c57282f29f92136665bdd6abf7c1ec8d822ef86f2", size = 3889159, upload-time = "2024-08-30T12:24:06.899Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl", hash = "sha256:db91759624d1647f3f34aa0c3f327dd2601beae39a366d6e064c03468d35c20e", size = 3864451, upload-time = "2024-08-30T12:24:05.054Z" }, +] + +[[package]] +name = "mkdocs-autorefs" +version = "1.4.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown" }, + { name = "markupsafe" }, + { name = "mkdocs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/52/c0/f641843de3f612a6b48253f39244165acff36657a91cc903633d456ae1ac/mkdocs_autorefs-1.4.4.tar.gz", hash = "sha256:d54a284f27a7346b9c38f1f852177940c222da508e66edc816a0fa55fc6da197", size = 56588, upload-time = "2026-02-10T15:23:55.105Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/28/de/a3e710469772c6a89595fc52816da05c1e164b4c866a89e3cb82fb1b67c5/mkdocs_autorefs-1.4.4-py3-none-any.whl", hash = "sha256:834ef5408d827071ad1bc69e0f39704fa34c7fc05bc8e1c72b227dfdc5c76089", size = 25530, upload-time = "2026-02-10T15:23:53.817Z" }, +] + +[[package]] +name = "mkdocs-click" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "markdown" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/c7/8c25f3a3b379def41e6d0bb5c4beeab7aa8a394b17e749f498504102cfa5/mkdocs_click-0.9.0.tar.gz", hash = "sha256:6050917628d4740517541422b607404d044117bc31b770c4f9e9e1939a50c908", size = 18720, upload-time = "2025-04-07T16:59:36.387Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/fc/9124ab36e2341e78d8d9c669511bd70f52ea0de8105760c31fabec1f9396/mkdocs_click-0.9.0-py3-none-any.whl", hash = "sha256:5208e828f4f68f63c847c1ef7be48edee9964090390afc8f5b3d4cbe5ea9bbed", size = 15104, upload-time = "2025-04-07T16:59:34.807Z" }, +] + +[[package]] +name = "mkdocs-exclude" +version = "1.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mkdocs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/b5/3a8e289282c9e8d7003f8a2f53d673d4fdaa81d493dc6966092d9985b6fc/mkdocs-exclude-1.0.2.tar.gz", hash = "sha256:ba6fab3c80ddbe3fd31d3e579861fd3124513708271180a5f81846da8c7e2a51", size = 6751, upload-time = "2019-02-20T23:34:12.81Z" } + +[[package]] +name = "mkdocs-gen-files" +version = "0.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mkdocs" }, + { name = "properdocs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/43/43/428f312149c161cae557eecd35f3c4a82b867998b1d47fb29fdfe927be26/mkdocs_gen_files-0.6.1.tar.gz", hash = "sha256:57d7ff2229e23d077e46d14a33db6d37c8823f6ce1a503c874c1764a71679763", size = 8746, upload-time = "2026-03-16T23:26:09.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ee/1b/3075eb67fe66e19db059f0a25744c4e56978a309603a20e1d3353d545b5e/mkdocs_gen_files-0.6.1-py3-none-any.whl", hash = "sha256:b3182bfc6219e35b8d26658cb988368659d5d023aac30c2a819247558fc12189", size = 8282, upload-time = "2026-03-16T23:26:08.292Z" }, +] + +[[package]] +name = "mkdocs-get-deps" +version = "0.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mergedeep" }, + { name = "platformdirs" }, + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ce/25/b3cccb187655b9393572bde9b09261d267c3bf2f2cdabe347673be5976a6/mkdocs_get_deps-0.2.2.tar.gz", hash = "sha256:8ee8d5f316cdbbb2834bc1df6e69c08fe769a83e040060de26d3c19fad3599a1", size = 11047, upload-time = "2026-03-10T02:46:33.632Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/29/744136411e785c4b0b744d5413e56555265939ab3a104c6a4b719dad33fd/mkdocs_get_deps-0.2.2-py3-none-any.whl", hash = "sha256:e7878cbeac04860b8b5e0ca31d3abad3df9411a75a32cde82f8e44b6c16ff650", size = 9555, upload-time = "2026-03-10T02:46:32.256Z" }, +] + +[[package]] +name = "mkdocs-glightbox" +version = "0.5.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "selectolax" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8d/26/c793459622da8e31f954c6f5fb51e8f098143fdfc147b1e3c25bf686f4aa/mkdocs_glightbox-0.5.2.tar.gz", hash = "sha256:c7622799347c32310878e01ccf14f70648445561010911c80590cec0353370ac", size = 510586, upload-time = "2025-10-23T14:55:18.909Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/ca/03624e017e5ee2d7ce8a08d89f81c1e535eb3c30d7b2dc4a435ea3fbbeae/mkdocs_glightbox-0.5.2-py3-none-any.whl", hash = "sha256:23a431ea802b60b1030c73323db2eed6ba859df1a0822ce575afa43e0ea3f47e", size = 26458, upload-time = "2025-10-23T14:55:17.43Z" }, +] + +[[package]] +name = "mkdocs-literate-nav" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mkdocs" }, + { name = "properdocs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/af/dd3776a7a713f798f79bec7eb9c661d5cfb83ddc17d9a3667595e53e1559/mkdocs_literate_nav-0.6.3.tar.gz", hash = "sha256:edbaca22343f861fe4e34aac47d55a0c9955c640dbf02eea99fe631e914cf9ee", size = 17526, upload-time = "2026-03-16T23:26:50.688Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/2c/bcf1ae903975ad6f169abb05c1eb0f94395478364deb89270cf034081b29/mkdocs_literate_nav-0.6.3-py3-none-any.whl", hash = "sha256:2c421561280fa9184f88cbf399bebbd4cc17ee507e978a31ce11fd6f3aabf233", size = 13355, upload-time = "2026-03-16T23:26:49.562Z" }, +] + +[[package]] +name = "mkdocs-material" +version = "9.7.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel" }, + { name = "backrefs" }, + { name = "colorama" }, + { name = "jinja2" }, + { name = "markdown" }, + { name = "mkdocs" }, + { name = "mkdocs-material-extensions" }, + { name = "paginate" }, + { name = "pygments" }, + { name = "pymdown-extensions" }, + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/45/29/6d2bcf41ae40802c4beda2432396fff97b8456fb496371d1bc7aad6512ec/mkdocs_material-9.7.6.tar.gz", hash = "sha256:00bdde50574f776d328b1862fe65daeaf581ec309bd150f7bff345a098c64a69", size = 4097959, upload-time = "2026-03-19T15:41:58.161Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/01/bc663630c510822c95c47a66af9fa7a443c295b47d5f041e5e6ae62ef659/mkdocs_material-9.7.6-py3-none-any.whl", hash = "sha256:71b84353921b8ea1ba84fe11c50912cc512da8fe0881038fcc9a0761c0e635ba", size = 9305470, upload-time = "2026-03-19T15:41:55.217Z" }, +] + +[[package]] +name = "mkdocs-material-extensions" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/79/9b/9b4c96d6593b2a541e1cb8b34899a6d021d208bb357042823d4d2cabdbe7/mkdocs_material_extensions-1.3.1.tar.gz", hash = "sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443", size = 11847, upload-time = "2023-11-22T19:09:45.208Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl", hash = "sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31", size = 8728, upload-time = "2023-11-22T19:09:43.465Z" }, +] + +[[package]] +name = "mkdocs-redirects" +version = "1.2.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mkdocs" }, + { name = "properdocs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/73/25/49725f78ca5d3026b09973f7a2b3a8b179cc2e8c15e43d5a13bc79f6b274/mkdocs_redirects-1.2.3.tar.gz", hash = "sha256:5e980330999299729a2d6a125347d1af78023d68a23681a4de3053ce7dfe2e51", size = 7712, upload-time = "2026-03-28T13:57:41.766Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/90/871b1cddc01d2ba1637b858eeeabc2e3013dc8df591306b5567b98ef0870/mkdocs_redirects-1.2.3-py3-none-any.whl", hash = "sha256:ec7312fff462d03ec16395d0c001006a418f8d0c21cdf2b47ff11cf839dc3ce0", size = 6245, upload-time = "2026-03-28T13:57:40.466Z" }, +] + +[[package]] +name = "mkdocs-section-index" +version = "0.3.12" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mkdocs" }, + { name = "properdocs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/e2/64d0f3f054ca8efe61e706006ff5f0d49ad99620c62c2e04818573391c33/mkdocs_section_index-0.3.12.tar.gz", hash = "sha256:285635bf86c643b0fc7a343053d7a818049817bff4408f52b80c4367bd5e7268", size = 14946, upload-time = "2026-04-16T19:20:00.953Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/4d/a330cab5e055d45e924cec69da54a3d8ed37643964f8d1fa1a772b496273/mkdocs_section_index-0.3.12-py3-none-any.whl", hash = "sha256:a1100039546beb4ebef63ce6fc91f3195fb9c0c3763105d4d3d7cd31e0a046eb", size = 8932, upload-time = "2026-04-16T19:19:59.741Z" }, +] + +[[package]] +name = "mkdocs-snippets" +version = "1.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3e/56/9a5264a78375443f57fe3043a77f11d5b8edb8fcd7f3385aa00edbad1a3a/mkdocs_snippets-1.3.2.tar.gz", hash = "sha256:d46d2700dec2dd8dab1d2977a656bed11ad89fdfd4dab30f2008c99d42086c53", size = 6361, upload-time = "2025-05-07T19:40:50.048Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/bf/8e63de00e57a05e739782dbcccfe6fad033fa886c361622053198a5b638c/mkdocs_snippets-1.3.2-py3-none-any.whl", hash = "sha256:0a2be9ced4169acb3449d89a2d882f7e0e516a8c9cf3ffb8b9c6565af83a9a61", size = 6425, upload-time = "2025-05-07T19:40:48.758Z" }, +] + +[[package]] +name = "mkdocstrings" +version = "1.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, + { name = "markdown" }, + { name = "markupsafe" }, + { name = "mkdocs" }, + { name = "mkdocs-autorefs" }, + { name = "pymdown-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/5d/f888d4d3eb31359b327bc9b17a212d6ef03fe0b0682fbb3fc2cb849fb12b/mkdocstrings-1.0.4.tar.gz", hash = "sha256:3969a6515b77db65fd097b53c1b7aa4ae840bd71a2ee62a6a3e89503446d7172", size = 100088, upload-time = "2026-04-15T09:16:53.376Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/94/be70f8ee9c45f2f62b39a1f0e9303bc20e138a8f3b8e50ffd89498e177e1/mkdocstrings-1.0.4-py3-none-any.whl", hash = "sha256:63464b4b29053514f32a1dbbf604e52876d5e638111b0c295ab7ed3cac73ca9b", size = 35560, upload-time = "2026-04-15T09:16:51.436Z" }, +] + +[[package]] +name = "mkdocstrings-python" +version = "2.0.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "griffelib" }, + { name = "mkdocs-autorefs" }, + { name = "mkdocstrings" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/b6/e858701499d57eee8b3fd8e78168083956c6683ddbe727b46758b19e1119/mkdocstrings_python-2.0.5.tar.gz", hash = "sha256:3a4d92556ad39637e88af94a5374213af9a8e3040c3824ceaed04b486c017594", size = 199578, upload-time = "2026-06-19T10:41:08.868Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/fc/10ab7e80650a9c9e8f4f1105f8c8e73567f88ed0c06ada589ab81d38687c/mkdocstrings_python-2.0.5-py3-none-any.whl", hash = "sha256:30c837bbff016549f659fcba6539ac351303f0fd7e713c89a040611072236e9d", size = 104951, upload-time = "2026-06-19T10:41:07.378Z" }, +] + +[[package]] +name = "mypy-extensions" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/6e/371856a3fb9d31ca8dac321cda606860fa4548858c0cc45d9d1d4ca2628b/mypy_extensions-1.1.0.tar.gz", hash = "sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558", size = 6343, upload-time = "2025-04-22T14:54:24.164Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505", size = 4963, upload-time = "2025-04-22T14:54:22.983Z" }, +] + +[[package]] +name = "narwhals" +version = "2.23.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/ac/66ed1fc6e38a0c0f330627ec5c5d597990d6159b6712b82af0ad2c65f06c/narwhals-2.23.0.tar.gz", hash = "sha256:13e7ff5b4bb4a2f77b907c2e4d8a76e273dfc1323a3c997440a2f9fd26aed408", size = 656209, upload-time = "2026-07-01T11:21:53.278Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/4e/afc8c31605cb8be1d3bb4438c4d979daa104dab6306cd2b87abe9c3a7299/narwhals-2.23.0-py3-none-any.whl", hash = "sha256:769e7b9ab102c93d8fa019f6b4cd1a657909b04a20bf6210e5a35aae06814ae9", size = 458938, upload-time = "2026-07-01T11:21:51.677Z" }, +] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, +] + +[[package]] +name = "numpy" +version = "2.4.6" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.12' and sys_platform == 'win32'", + "python_full_version < '3.12' and sys_platform == 'emscripten'", + "python_full_version < '3.12' and sys_platform != 'emscripten' and sys_platform != 'win32'", +] +sdist = { url = "https://files.pythonhosted.org/packages/d0/ad/fed0499ce6a338d2a03ebae59cd15093910c8875328855781952abf6c2fe/numpy-2.4.6.tar.gz", hash = "sha256:f3a3570c4a2a16746ac2c31a7c7c7b0c186b95ce902e33db6f28094ed7387dda", size = 20735807, upload-time = "2026-05-18T23:37:14.07Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/49/ec46835a70be8fa6446c495126ac84fdb28cb2558e1620ffb87a10c8b64c/numpy-2.4.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0280e0356c0829a18d9de1cb7eee50ec22ca639878d7240307ca0943d73cd2c4", size = 16969194, upload-time = "2026-05-18T23:33:13.503Z" }, + { url = "https://files.pythonhosted.org/packages/0e/0d/f5957185c0ee2f3e12f78715aa9e3b353fd83633316c8532b38faa37e3f6/numpy-2.4.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:110f8b71aacb688ec69062bb7f6938a0f8acb01b7c1c4beb453c65b6d234584d", size = 14964111, upload-time = "2026-05-18T23:33:17.795Z" }, + { url = "https://files.pythonhosted.org/packages/ad/40/40a40ee0ddf7ceb782c49af278894b686e586d65d8c1889c8b5da01a3d7d/numpy-2.4.6-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:4cfe66903cc32a9921a6733d96b19bb6abf310397581bbad89c228f5abaf0ee8", size = 5469159, upload-time = "2026-05-18T23:33:20.654Z" }, + { url = "https://files.pythonhosted.org/packages/63/13/f9a8046535cb21deae82f8d03de9617e08882d274fad2539630761888228/numpy-2.4.6-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8155154c7c691289fe18f510b5d4657c68c67989f293f0535a91360392ff6538", size = 6798936, upload-time = "2026-05-18T23:33:22.987Z" }, + { url = "https://files.pythonhosted.org/packages/33/a8/6fa8c1a345a8c85dbb21932c447bee07c30a2c2a3f31e369c0a84b300147/numpy-2.4.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ab0a9c4ffb1a6d95ef519fe4247dba8eb6b18ad93999f76b7f657039acabd47", size = 15966692, upload-time = "2026-05-18T23:33:26.62Z" }, + { url = "https://files.pythonhosted.org/packages/02/03/74fe2a4cb3817d94d86402f2506554130a2f01414e299b5a843e5a8a957f/numpy-2.4.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:89cd468399cfd2504718f0ba50e410dca55a170b61a02ad92bb18c8a65186e93", size = 16918164, upload-time = "2026-05-18T23:33:29.955Z" }, + { url = "https://files.pythonhosted.org/packages/c5/80/3615be3313f7e7696609bc194b9f0101da809df79e859bdb84e0cd043f46/numpy-2.4.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c2d37ab77531417474168eb79d6d80b14f821a966818505d03013d0833edb7a8", size = 17322877, upload-time = "2026-05-18T23:33:34.724Z" }, + { url = "https://files.pythonhosted.org/packages/ca/ac/a691e0fe2675e370d0e08ff905adc49a1c8830e8cae03efe4477e92cd55d/numpy-2.4.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f407cb6b8e9d6d8c626bc73c945db1706035af8fd632295547bf1c9e46d092d6", size = 18651487, upload-time = "2026-05-18T23:33:38.217Z" }, + { url = "https://files.pythonhosted.org/packages/15/a7/9bc1cd626d7bf6869bfedf27b91b6ab5dd607758bf8e959d6fa80c6a59cb/numpy-2.4.6-cp311-cp311-win32.whl", hash = "sha256:ddea102b48f9e339f3948bf22040944184627a30fdf7f858667673b9c5f033c8", size = 6233945, upload-time = "2026-05-18T23:33:41.331Z" }, + { url = "https://files.pythonhosted.org/packages/c5/31/7fc6239c12bce7e931463251cca4426c465e1876ba3cc785402ef4dd8f4e/numpy-2.4.6-cp311-cp311-win_amd64.whl", hash = "sha256:1e254a00cdf42b1e4d5b3d68d33af63268d41340d8885df2ab6470f2e1500147", size = 12608406, upload-time = "2026-05-18T23:33:44.131Z" }, + { url = "https://files.pythonhosted.org/packages/27/83/140f85a466595a16382996a1bf06b2b54bcd597488921b0c9daaeeda72af/numpy-2.4.6-cp311-cp311-win_arm64.whl", hash = "sha256:ed9749eef4cbd126da3dc1d6bcb3a57f5eb7ac6a6484146bdbf743f552dfc577", size = 10479528, upload-time = "2026-05-18T23:33:50.725Z" }, + { url = "https://files.pythonhosted.org/packages/95/2a/3d7b5ac8aac24feaf9ad7ed58f45b0bbc06d37e4338ae84c9f2298b570f9/numpy-2.4.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:001fbb8e08d942dd57599e781f2472269ee7f2755fae407b4f67b2f0b17da3f1", size = 16689119, upload-time = "2026-05-18T23:33:54.065Z" }, + { url = "https://files.pythonhosted.org/packages/ea/12/92c4c131527599e8288d6918e888d88726f84d805d784b771f32408aeaef/numpy-2.4.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ebfb099f8dcf083deef3ac1ca4c1503f387cf76296fcb3816b66f5ecb5f54fdb", size = 14699246, upload-time = "2026-05-18T23:33:57.621Z" }, + { url = "https://files.pythonhosted.org/packages/ad/fe/c0a6b7b2ca128a8fb228575147073b660656734b8ebe4d76c8fd748dcc79/numpy-2.4.6-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:3213d622a0283a39a93d188f3cf72b26862df52fbb4ca3697f51705016523d41", size = 5204410, upload-time = "2026-05-18T23:34:00.302Z" }, + { url = "https://files.pythonhosted.org/packages/f3/d4/9770d14ba719432bb90a421bfd443872ed0f70f7264b64bec12ea363d5fd/numpy-2.4.6-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:357cc07a6d7b0b182ff02249616a03742827ebb1277546b5c7cd7f7620a45698", size = 6551240, upload-time = "2026-05-18T23:34:02.852Z" }, + { url = "https://files.pythonhosted.org/packages/c9/c6/50a46a6205feba2343f1d6d17438107c5dc491ed1c736e6ea68689fd906b/numpy-2.4.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f9fb9157b4ce2971008323afe46053787b526ef624fea915b261468a8421a0f", size = 15671012, upload-time = "2026-05-18T23:34:05.485Z" }, + { url = "https://files.pythonhosted.org/packages/99/60/14115e6364fa676c5397c2ad3004e527e9aa487abf5d0706ec81bbd08529/numpy-2.4.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:90f9849678c75fe7afa2d348ac842c168b0a4d3d61919687216dfc547976d853", size = 16645538, upload-time = "2026-05-18T23:34:09.265Z" }, + { url = "https://files.pythonhosted.org/packages/ae/c5/693cbe59e57db94d2231fa519ca3978dc9e19da5a8f088588f5c6e947ff2/numpy-2.4.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c1a2af6c6ef86344a6b0db6b97834208bf598db514f2b155042439b62605601a", size = 17020706, upload-time = "2026-05-18T23:34:13.053Z" }, + { url = "https://files.pythonhosted.org/packages/ef/fc/85b7c4eff9b4966ade25c2273cf7e7012e92366c032058653934b37de044/numpy-2.4.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e5805d5a22fd19c8ccff10a9561f9df94436b0545619ea579db2d3c35294bce2", size = 18368541, upload-time = "2026-05-18T23:34:17.024Z" }, + { url = "https://files.pythonhosted.org/packages/f6/81/e1b27545deedce7f4a0b348618c6b62d74e36a4dc9ccd42f3eb2f85eee32/numpy-2.4.6-cp312-cp312-win32.whl", hash = "sha256:e3eeb0aabd6bd5ce64faae67e9935203a6991b4bc2a485a767fbafb2c5125f45", size = 5962825, upload-time = "2026-05-18T23:34:20.3Z" }, + { url = "https://files.pythonhosted.org/packages/ab/ca/feab00bd44aa5fe1ad2c18f08b4d3bb92e26484b0b1d1443897809ed528c/numpy-2.4.6-cp312-cp312-win_amd64.whl", hash = "sha256:d8e8286dd7cea7895157318d1b91cdacac64c479f3cbc8dce548331728484751", size = 12321687, upload-time = "2026-05-18T23:34:23.095Z" }, + { url = "https://files.pythonhosted.org/packages/63/cf/5a6d34850a39d1093558564f77ee8e8e0bee5061151b8f05a55711001ec7/numpy-2.4.6-cp312-cp312-win_arm64.whl", hash = "sha256:4081eb135ac24158bd51cdfbef16f1c64df7063b1143f24731387137c092bec8", size = 10221482, upload-time = "2026-05-18T23:34:25.876Z" }, + { url = "https://files.pythonhosted.org/packages/fb/82/bdab26d7438c6791ca31b7c024ca37c1eab8b726ba236129005cd4a06e45/numpy-2.4.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:511dbaf848decaaaf4b4ca48032619fb3138710c4bf7da7617765edad1ef96b0", size = 16684648, upload-time = "2026-05-18T23:34:29.41Z" }, + { url = "https://files.pythonhosted.org/packages/1b/30/a80189bcc7f5e4258b3fbc3968d909d1756f54d023299ecc39ad6fdb9ef8/numpy-2.4.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bf162abab1c1a736333192707cef898e735a5ca00f38f27eeedf44b39d9e85eb", size = 14693902, upload-time = "2026-05-18T23:34:33.013Z" }, + { url = "https://files.pythonhosted.org/packages/97/12/70b5d0d7c15e1ebb8a6a84a8caa1d19e181d84fb58bb6d70aca29099dec1/numpy-2.4.6-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:043191bfa8eab18c776647b62723ac9dddece59743b13f49b2016094129c2b3f", size = 5198992, upload-time = "2026-05-18T23:34:36.132Z" }, + { url = "https://files.pythonhosted.org/packages/ba/8c/ebd2a8f8a83541f8d38cc5667e8c2b69cecfd30da6e45693e8158857d44b/numpy-2.4.6-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:6180d8b35af935aed8ece3a85e0a43f87393ae0ac87c8d2c8bd2c993f7270ef3", size = 6546944, upload-time = "2026-05-18T23:34:38.484Z" }, + { url = "https://files.pythonhosted.org/packages/bb/c5/7b863a97a91671a0338f4253bd3b5a3d3852f0692dae91711c9f4a10e787/numpy-2.4.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72fbe16c6fac95aedf5937fa873445cec2110be35d8a4e9433d7501fd98dae6b", size = 15669392, upload-time = "2026-05-18T23:34:41.257Z" }, + { url = "https://files.pythonhosted.org/packages/a5/9d/3584b9984ca4c047aea75214ce1a4c4c73d849bd71b604264b7f5653f8a8/numpy-2.4.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a7830bab239b79cda9c08c2da014761cafb48da6150e1da17ac06283f43b6089", size = 16633220, upload-time = "2026-05-18T23:34:45.075Z" }, + { url = "https://files.pythonhosted.org/packages/05/ae/7c67fba23bd98caec7c99261f3a16072ade14813486b0282cb29846de832/numpy-2.4.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ef4aea96ce4d3b074422cb4f2f64e216bf9e213004bb58ecfdf50ea02ea8eb9a", size = 17020800, upload-time = "2026-05-18T23:34:49.065Z" }, + { url = "https://files.pythonhosted.org/packages/d9/5d/3b6725cb31d983c5e66916f5d36f6d7e5521129e4c4404d64f918292a5b6/numpy-2.4.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:dfa20cc6ca228e6b155b11da03825975ce66aea520985dbbddf0f2a5a495c605", size = 18357600, upload-time = "2026-05-18T23:34:52.709Z" }, + { url = "https://files.pythonhosted.org/packages/f7/da/2ccc6c2fe8898dee01d90c75c5f5f914a23daf99e3e0f59516a08760c8b5/numpy-2.4.6-cp313-cp313-win32.whl", hash = "sha256:56b39e5e0622a09a25bf5baf62f4bcf0cb8a41ae6e2819cf49bbc5a74c083f91", size = 5961134, upload-time = "2026-05-18T23:34:55.618Z" }, + { url = "https://files.pythonhosted.org/packages/b5/cd/9cc4dc876fb065d5c220aae4d5e14826b2715331bb7618ce1fb07a679d99/numpy-2.4.6-cp313-cp313-win_amd64.whl", hash = "sha256:c4fc99836233ea196540b17ab0983aff60ed07941751930f5f4d05bc3b3b7359", size = 12318598, upload-time = "2026-05-18T23:34:58.928Z" }, + { url = "https://files.pythonhosted.org/packages/39/1e/c0bcba1f8694116485fe28fd1be698c278fcda4141c5b0e53a2aed8b12a8/numpy-2.4.6-cp313-cp313-win_arm64.whl", hash = "sha256:a7c711e21628b52034bb5ab8d1bce291f752fcc5e92accc615778acee1ff4778", size = 10222272, upload-time = "2026-05-18T23:35:02.167Z" }, + { url = "https://files.pythonhosted.org/packages/63/6d/cc5619247c8f4204e507f5883528372e4ac4bb189e579fb859a12e480b1f/numpy-2.4.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:112b06a867b235ef466ed3508ddf0238050df9c727cafb5301ac385b899189a1", size = 14821197, upload-time = "2026-05-18T23:35:05.468Z" }, + { url = "https://files.pythonhosted.org/packages/00/58/f1c39161c87d9e9bed660f1ed4bafc0e403d5ec9650b6dd77aead07d489b/numpy-2.4.6-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:eaf7fa2de5c0be8ae6ff8e9bea2ccd725e980541244521d8d4b5f3354a27babe", size = 5326287, upload-time = "2026-05-18T23:35:08.693Z" }, + { url = "https://files.pythonhosted.org/packages/af/57/3917ab0fd97f271a8694513581b8a36c655f111c446852c302f04ccdb6fc/numpy-2.4.6-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:7265a2f3d436e54ef9f2b52b5c937e6be778781bd97a590319d7348f1c1ca997", size = 6646763, upload-time = "2026-05-18T23:35:11.459Z" }, + { url = "https://files.pythonhosted.org/packages/eb/0f/037e64c494b67581ae18193d770adef354c41f3f2c8ebf865602d949bf8f/numpy-2.4.6-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f74a575920ab21fe304421a3fc28793d82e299cae9eccb37084e9fc7f3617c20", size = 15728070, upload-time = "2026-05-18T23:35:14.79Z" }, + { url = "https://files.pythonhosted.org/packages/21/a6/5d2bae9c9542eb4df16dc9c46dc79c186e9bad53805dfa5399a6023c6db0/numpy-2.4.6-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ede83e07a75dd06bc501566c1eca2afc0d61677c1472ac9ad93fdee6e638a48d", size = 16681752, upload-time = "2026-05-18T23:35:18.836Z" }, + { url = "https://files.pythonhosted.org/packages/92/14/23d1dfb410ae362cd59ce53e936b1513d545eb40db3949ced632e19a459e/numpy-2.4.6-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:68bb27509ac1b9a3443094260f6326150663b06abe40b73a2f81160623da5b67", size = 17086024, upload-time = "2026-05-18T23:35:22.52Z" }, + { url = "https://files.pythonhosted.org/packages/4b/6e/23595a2c642cdf3bc567877064bdd7f91c8b0038a4453cf2daf7248eafe9/numpy-2.4.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a0df0043bdb289bde1f62da130d20df23d58b45429f752bc7a8fc5325a225ecd", size = 18403398, upload-time = "2026-05-18T23:35:26.398Z" }, + { url = "https://files.pythonhosted.org/packages/8a/90/0ac3bc947217e66dec77e7cbc6a1979d1af70b6461b82f620d3bccd5e4c8/numpy-2.4.6-cp313-cp313t-win32.whl", hash = "sha256:29a287e0cf63ff528da061de6b9f64a4618da591ca1046aafc54062e40ca7eab", size = 6084971, upload-time = "2026-05-18T23:35:29.387Z" }, + { url = "https://files.pythonhosted.org/packages/77/71/5673e351671a1d2bd6063b91b44f70c0affea7d1516fa7a6572941ba4aa1/numpy-2.4.6-cp313-cp313t-win_amd64.whl", hash = "sha256:25c692919ac5a01f170a3bfcd62d745b24fd095c353d50812637d6fcab442e75", size = 12458532, upload-time = "2026-05-18T23:35:32.175Z" }, + { url = "https://files.pythonhosted.org/packages/3f/88/19d3503c5046e688f049274b27a3ef3d771152fa80d3ba3d01a3dff61abe/numpy-2.4.6-cp313-cp313t-win_arm64.whl", hash = "sha256:1e978ec1e8bd0e0e4de6bb75de9d30cbb74db6b6a2bb727618613703ca0167dd", size = 10291881, upload-time = "2026-05-18T23:35:35.465Z" }, + { url = "https://files.pythonhosted.org/packages/f8/91/3ab2044d05fd16d343c5ac2e69b127f1b2854040dd20b193257c78028bd3/numpy-2.4.6-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:06ca2f61ec4385a07a6977c55ba998a4466c123642b4a32694d3128fce18c079", size = 16683458, upload-time = "2026-05-18T23:35:38.353Z" }, + { url = "https://files.pythonhosted.org/packages/8e/62/764ce66fa4147ae6d73071a3abf804ffe606f174618697c571acdf26a7c9/numpy-2.4.6-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:38efbc8de75c7a0fc1ac190162d892787f3f47b57cc291231aafee36b80982b7", size = 14704559, upload-time = "2026-05-18T23:35:42.14Z" }, + { url = "https://files.pythonhosted.org/packages/60/61/23f27c172f022e04025b7dc2367f4d63c1a398120607ec896228649a6f48/numpy-2.4.6-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:d581b735e177fdcdce6fed8e7e8880a3fb6ee4e3653a3ac6af01c6f4c03effc5", size = 5209716, upload-time = "2026-05-18T23:35:45.377Z" }, + { url = "https://files.pythonhosted.org/packages/03/71/21cf70dc6ea3e3acb95fc53a265b2fc248b981f0194ceb5b475271b8809d/numpy-2.4.6-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:0a041d3d761dc3c35cc56ce0351506a02bcbc25f7b169f652435141a17db9096", size = 6543947, upload-time = "2026-05-18T23:35:47.926Z" }, + { url = "https://files.pythonhosted.org/packages/d5/91/64288395ee1799bd2e0b04a305dce9666da90c961e1f3fe982a05ee1c036/numpy-2.4.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40fdc1ae7125e518ea98e53e69a4ebc27e1fd50510c47b7ea130cf21e5e1d42b", size = 15685197, upload-time = "2026-05-18T23:35:50.863Z" }, + { url = "https://files.pythonhosted.org/packages/f3/eb/ebffaa97dc55502df69584a8f0dcf07f69a3e0b3e2323670a2722db9aa39/numpy-2.4.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a2c306dea656c12c68f51f4cea133cbe78ca7435eb28c735eac1d3ebe73be6e8", size = 16638245, upload-time = "2026-05-18T23:35:54.752Z" }, + { url = "https://files.pythonhosted.org/packages/b8/0b/54f9da33128d7e350fab89c7455902eeae70349ee52bddb448dc4a576f45/numpy-2.4.6-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:33111801a01c12a8a1e3721f0a9232f8cfc8ae2c6b7098167e6f623c6073f402", size = 17036587, upload-time = "2026-05-18T23:35:58.355Z" }, + { url = "https://files.pythonhosted.org/packages/b6/f0/fdebc1052db1cc37c64beb22072d67cd6d1c71adca1299f53dec2b5e20d3/numpy-2.4.6-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:ae506e6902902557576a26ff33eda8695e7ecb3cb36c3b573a0765dee114ebdb", size = 18363226, upload-time = "2026-05-18T23:36:02.845Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b4/298628d98c72b57e57f7165ae6a481a1deaf6f3c28262a6e4c739c275930/numpy-2.4.6-cp314-cp314-win32.whl", hash = "sha256:aaf159caa35993cb1f56fb9b8e4610d35758e7ca005412eb1daa856a78c9c4b1", size = 6010196, upload-time = "2026-05-18T23:36:05.92Z" }, + { url = "https://files.pythonhosted.org/packages/df/ac/46de6dda46478f7942f839e094970be2d4a861e005c4b3bf07c92e291a09/numpy-2.4.6-cp314-cp314-win_amd64.whl", hash = "sha256:b507f5c4c1d508876d1819b6bf9a49d365b96320b5d4993426b33a23ca4b8261", size = 12450334, upload-time = "2026-05-18T23:36:09.107Z" }, + { url = "https://files.pythonhosted.org/packages/78/92/b8b798ac784102c0da830d2257d59358e3d3d90d1e2b3f2575dad976c5cf/numpy-2.4.6-cp314-cp314-win_arm64.whl", hash = "sha256:6f41ae150c4e32db4f3310cdaf64b1593a03dbabe29eec77fc9b50fe64061df6", size = 10495678, upload-time = "2026-05-18T23:36:12.766Z" }, + { url = "https://files.pythonhosted.org/packages/30/34/ec28d1aa8115971537c01469ab2011ee96827930f0a124de1000cc2a7ed7/numpy-2.4.6-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ece3d2cfe132e7d51f44a832b303895e6f2d499c5e74dfbdb06ee246147a304a", size = 14823672, upload-time = "2026-05-18T23:36:16.473Z" }, + { url = "https://files.pythonhosted.org/packages/16/bd/f6d1fede4e54e8042a7ff97bb495510f3c220f94bcd9e8b228e87c92cc0d/numpy-2.4.6-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:e3e5193ef5a3dc73bceee50f7fdc2c90dbb76c42df8d8fae3d1067a583df579e", size = 5328731, upload-time = "2026-05-18T23:36:19.767Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f0/e105b9e2fd728a9910103884decd6951d9dd73896b914a98d9a231de02ee/numpy-2.4.6-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:17f9ade344e7d9b464a084d69bcf18fc691cb1db67c62ed80820bf4926d78f0e", size = 6649805, upload-time = "2026-05-18T23:36:22.266Z" }, + { url = "https://files.pythonhosted.org/packages/82/dd/1206a7ca6ab15e3f02069707ca96222e202af681bb73756da7527f3cb837/numpy-2.4.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9cd5ffd25db4e7ba6a375693b3fc0fc1791ec636c17db3720da19bde7180ec43", size = 15730496, upload-time = "2026-05-18T23:36:25.713Z" }, + { url = "https://files.pythonhosted.org/packages/51/e7/38d3ea825dcab85a591734decb2f6c67caa7c8367d374df1a1c3842f9b07/numpy-2.4.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7d92c3819208a60205a12a245c91ad70cb0a85336659b19b834205573ac8456e", size = 16679616, upload-time = "2026-05-18T23:36:29.652Z" }, + { url = "https://files.pythonhosted.org/packages/93/b7/caabfdf53edf663e0b4eb74d7d405d83baef09eb5e83bcd32d601d72b93e/numpy-2.4.6-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e85b752a1e912b70eaad4fafbd4d1238007ab221de2009b9a2f5ae7461239895", size = 17085145, upload-time = "2026-05-18T23:36:33.449Z" }, + { url = "https://files.pythonhosted.org/packages/f9/45/68d7c33a6bcf3e5aa3bdbd57a367e6f615286dfd6482f97e8ffeb734306e/numpy-2.4.6-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:29cb7f67d10b479ff07c17d33e39f78c07f71c40ef30d63c153d340e96cd3fb4", size = 18403813, upload-time = "2026-05-18T23:36:37.369Z" }, + { url = "https://files.pythonhosted.org/packages/9c/50/0753655aa844c99cd9e018aacf76f130f1bd81d881bb74bc0aef5d73a8ba/numpy-2.4.6-cp314-cp314t-win32.whl", hash = "sha256:260a5d70215b61ab4fadf5c7baacd64821842975eea312125ed3c39a6391b063", size = 6156982, upload-time = "2026-05-18T23:36:40.817Z" }, + { url = "https://files.pythonhosted.org/packages/b2/d4/7c67becf668f973cb490cec3e98dfd799d866f9c989a54d355672cfa0db6/numpy-2.4.6-cp314-cp314t-win_amd64.whl", hash = "sha256:81a1cca95ed5bb92aa8b10dd2cdc9a0d3853a50fad926c28b5d7e8ea54389627", size = 12638908, upload-time = "2026-05-18T23:36:43.996Z" }, + { url = "https://files.pythonhosted.org/packages/43/bb/e1c71a4295b1b1d1393d50dbb4f2a36283c6859d9d3892e84f00ec5a91d5/numpy-2.4.6-cp314-cp314t-win_arm64.whl", hash = "sha256:0c9136e14ed34a9e343a31c533d78a9813a69a3148332bce5e9821cb2f996e66", size = 10565867, upload-time = "2026-05-18T23:36:47.114Z" }, + { url = "https://files.pythonhosted.org/packages/de/12/b422cc84439adc0d00de605bf4a308890ae5c26f2c71fbd73e5d08fbb0dd/numpy-2.4.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:55cced7c52e981362f708ad635198e97a752dfba412cc03c23bbf3bd8d5cd662", size = 16847511, upload-time = "2026-05-18T23:36:50.673Z" }, + { url = "https://files.pythonhosted.org/packages/44/53/f481bef68011740f8849418d82db07230e825013f31f4eef5ba5b805316a/numpy-2.4.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d6da64deb6b8ed903e7560180a92f2d804ee1ba5eeb849ac2748b8c1aba1f6d7", size = 14889064, upload-time = "2026-05-18T23:36:53.879Z" }, + { url = "https://files.pythonhosted.org/packages/7f/57/42ed575c10ced8af951d426bc4e1f8aff16fd851db33f067036215a7f860/numpy-2.4.6-pp311-pypy311_pp73-macosx_14_0_arm64.whl", hash = "sha256:68a5124b13fa6cc2086764a20005d30bc0548146f7f5322f02fce212ca14317f", size = 5394157, upload-time = "2026-05-18T23:36:57.194Z" }, + { url = "https://files.pythonhosted.org/packages/6a/ef/f66cc724fcc36c1e364c67f51ae9146090b8b584f27d58b97fdae3edd737/numpy-2.4.6-pp311-pypy311_pp73-macosx_14_0_x86_64.whl", hash = "sha256:948424b06129ce883307e8cff868c31396d8dc7630a59c61d70d98dbe70f222c", size = 6708728, upload-time = "2026-05-18T23:36:59.575Z" }, + { url = "https://files.pythonhosted.org/packages/1a/9c/c531f2293b91265d8b48e9b329f54fdd7ffae73cb4134ea10cca4237e9cc/numpy-2.4.6-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5dbbdb29840ca3d91ee0fece42fc29278886d908280bfec0a5846c6f901a3eb0", size = 15798374, upload-time = "2026-05-18T23:37:02.674Z" }, + { url = "https://files.pythonhosted.org/packages/1a/b0/413077f6b1153ed3cba361401c6783bbad6114804a000cc22eb71c13e190/numpy-2.4.6-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8ad03c0965fb3c692200e74d458ca28c1dbb4ce96f9a479a8aa041ad5fabca02", size = 16747286, upload-time = "2026-05-18T23:37:06.327Z" }, + { url = "https://files.pythonhosted.org/packages/15/ce/e5ec180bc41812edcd8daeb8639d205622c0e8c02259d8ab25a0201b3c2a/numpy-2.4.6-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:2803abfebfc990042cd494d8ce2d5f82e9d847af6d35ec486923aa19dbad5e73", size = 12504263, upload-time = "2026-05-18T23:37:09.715Z" }, +] + +[[package]] +name = "numpy" +version = "2.5.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'win32'", + "python_full_version >= '3.14' and sys_platform == 'emscripten'", + "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", +] +sdist = { url = "https://files.pythonhosted.org/packages/e7/05/3d27272d30698dc0ecb7fdfaa41ad70303b444f81722bb99bce1d818638a/numpy-2.5.0.tar.gz", hash = "sha256:5a129578019311b6e56bdd714250f19b518f7dceeeb8d1af5490f4942d3f891c", size = 20652461, upload-time = "2026-06-21T20:57:51.95Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fa/0a/11486d02add7b1384dff7374d124b1cfbb0ee864dcc9f6a2c0380638cf84/numpy-2.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:489780423903667933b4ed6197b6ec3b75ea5dd17d1d8f0f38d798feb6921561", size = 16789987, upload-time = "2026-06-21T20:56:16.657Z" }, + { url = "https://files.pythonhosted.org/packages/55/b2/285f48640a181947b4587a3766d21ec1eaa7fea833d4b49957e09da467a2/numpy-2.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ece55976ced6bca95a03ae2839e2e5ccffe8eb6a3e7022415645eb154a81e4e6", size = 11760322, upload-time = "2026-06-21T20:56:19.813Z" }, + { url = "https://files.pythonhosted.org/packages/dd/67/b032db1eb03ca30d16eda3b0c22aaa615338b9263c2fd559d0f29451aca4/numpy-2.5.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:c83b664b0e6eee9594fa920cf0639d8af796606d3fad6cc70180c87e4b97c7be", size = 5319605, upload-time = "2026-06-21T20:56:22.173Z" }, + { url = "https://files.pythonhosted.org/packages/b9/83/03fc7300c7c6b6c84c487b1dc80d322817b95fbd1f4dd57a85e23b7198de/numpy-2.5.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bf80333980bf37f523341ddd72c783f39d6829ec7736b9eb99086388a2d52cc2", size = 6653628, upload-time = "2026-06-21T20:56:23.914Z" }, + { url = "https://files.pythonhosted.org/packages/82/49/2ec21730bc63ccfda829323f7040a8ed4715b3852ce658689cf74ee96a8c/numpy-2.5.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a1a4874217b36d5ac8fc876f52e39df56f8182c88463e9e2dceabf7ca8b7efb8", size = 15153691, upload-time = "2026-06-21T20:56:25.631Z" }, + { url = "https://files.pythonhosted.org/packages/bb/6b/f4a3d0637692c49da8ef99d72d52526f92e0a8d6ac4f0ca9f31441b9d9ea/numpy-2.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aaa760137137e8d3c920d27927748215b56014f92667dc9b6c27dfc61249255a", size = 16660066, upload-time = "2026-06-21T20:56:28.009Z" }, + { url = "https://files.pythonhosted.org/packages/3a/2f/c354ec86d1f3f5c19649463b0d39652e160736e5b0a4cd18dff0576715c4/numpy-2.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7174ce8265fc7f7417d171c9ea8fe905220748893ea67a2a7abe726ec331c4b0", size = 16514638, upload-time = "2026-06-21T20:56:30.26Z" }, + { url = "https://files.pythonhosted.org/packages/06/34/43efdcb319988648580f93c11f1ae82cf7e2faa74925e98e454ae3aa95f8/numpy-2.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b8c3daaf99de52415d20b42f8e8155c78642cb04207d02f9d317a0dcf1b3fb54", size = 18419647, upload-time = "2026-06-21T20:56:32.41Z" }, + { url = "https://files.pythonhosted.org/packages/71/e2/f5d1676b1d7fb682eb5e9a1641e7ebd2414b3216c370661d1029778908b4/numpy-2.5.0-cp312-cp312-win32.whl", hash = "sha256:6206db0af545d73d068add6d992279145f158428d1da6cc49adc4b630c5d6ee5", size = 6056688, upload-time = "2026-06-21T20:56:34.657Z" }, + { url = "https://files.pythonhosted.org/packages/8f/7c/48f115d1c58a34032facebcd51fdf2d02df2c51d4a46a81dd1197bb2ea6b/numpy-2.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:6f2d6873e2940c860a309d21e25b1e69af6aaffdd80aa056b04c16380db1c4f2", size = 12419237, upload-time = "2026-06-21T20:56:36.24Z" }, + { url = "https://files.pythonhosted.org/packages/86/26/2e0882f4044d1b1a1b63e875151fb2393389032022a8b7f5657a7996d3b2/numpy-2.5.0-cp312-cp312-win_arm64.whl", hash = "sha256:a55e1eb2bca2cfd17a16b213c99dfc8502d47b0d494224d2122277d0400935ca", size = 10339912, upload-time = "2026-06-21T20:56:38.733Z" }, + { url = "https://files.pythonhosted.org/packages/8a/33/07675aaad7f26ea013d5e884d9a0d784b79c6bd7566c333f5a52fa3c610b/numpy-2.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:520e6b8be0a4b65840ac8090d4f51cef4bed66e2b0894d5a520f099adc24a9b2", size = 16784890, upload-time = "2026-06-21T20:56:40.799Z" }, + { url = "https://files.pythonhosted.org/packages/85/4b/953118a730ee3b35e28645e0eb4cf9beec5bdbb954e1ac2f5fcefba6bbc3/numpy-2.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:146b81cdd3967fdb6beca8ba25f00c58741d8f3cbd797f55af0fbe0bfec3469c", size = 11754584, upload-time = "2026-06-21T20:56:43.094Z" }, + { url = "https://files.pythonhosted.org/packages/44/9b/56dd530c367c74ae17411027cea4135ca57e1e0583bf5594cee18bd83217/numpy-2.5.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:126b88d95e8ff9b00c9e717aa540469f21d6180162f84c0caec51b16215d49cd", size = 5313904, upload-time = "2026-06-21T20:56:45.503Z" }, + { url = "https://files.pythonhosted.org/packages/ce/b0/bcd672edad27ecca7da1f7bb0ce72cd1706a4f2d79ae94990afc97c13e1c/numpy-2.5.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:d4313cef1594c5ce46c31b6e54e918338f63f16ee9322304e8c9114d6d81c8bd", size = 6648504, upload-time = "2026-06-21T20:56:47.567Z" }, + { url = "https://files.pythonhosted.org/packages/80/9e/15cdfcbd30a1544a46c9e487a00df331c4672450216538705a9e51fa6710/numpy-2.5.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:750fb097caf26fa878746d9d119f6f9da12dedcbff1eea966c3e3447647c4a9e", size = 15150086, upload-time = "2026-06-21T20:56:49.352Z" }, + { url = "https://files.pythonhosted.org/packages/32/4e/8d7656ccaab3e81e97258b8a9bc5f0c8502513a92fb4ceb0a2cbfebc17bf/numpy-2.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3893adc2dc7c0412ba76777db55a049215d99c9aa3113003be8f49f4f1290ab9", size = 16647250, upload-time = "2026-06-21T20:56:51.542Z" }, + { url = "https://files.pythonhosted.org/packages/3c/81/97060281b602ed07f21b12f4ec409eac1f75a2f91fbc829ed8b2becf3ad4/numpy-2.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:835e454dd99b238cdc5a3f63bce2371296f5ebc53ca1e0f8e6ddbb6d92a29aab", size = 16512864, upload-time = "2026-06-21T20:56:55.401Z" }, + { url = "https://files.pythonhosted.org/packages/33/ab/4496208146911f8d8ddb54f68a972aafa6c8d44babcb2ea03b0e5cc87c9d/numpy-2.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6f9836778081a0a3c02a6a21493f3e9f5b311f8d2541934f31f05583dc999ea4", size = 18408407, upload-time = "2026-06-21T20:56:57.75Z" }, + { url = "https://files.pythonhosted.org/packages/d4/9f/a4df67c181e4ee8b467aa3332dc2db10fd5c515136831302f3ca48bc0a01/numpy-2.5.0-cp313-cp313-win32.whl", hash = "sha256:0b525be4744b60bb0557ac872d53ef07d085b5f39622bc579c98d3809d05b988", size = 6054431, upload-time = "2026-06-21T20:57:00.016Z" }, + { url = "https://files.pythonhosted.org/packages/30/53/491e1c47c55b62ccc6a63c1c5b8635c73fc2258dddeb9bda27cae4a0ae96/numpy-2.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:44353e2878930039db472b99dc353d749826e4010bd4d2a7f835e94a97a5c748", size = 12414420, upload-time = "2026-06-21T20:57:01.815Z" }, + { url = "https://files.pythonhosted.org/packages/eb/4a/25c2906f541e9d9f4c5769764db732e6627be91a13f4724fa10634d77db4/numpy-2.5.0-cp313-cp313-win_arm64.whl", hash = "sha256:48f54b00711f83a5f796b70c518e8c2b3c5848dda03a54911f23eb68519b9b60", size = 10339533, upload-time = "2026-06-21T20:57:03.961Z" }, + { url = "https://files.pythonhosted.org/packages/86/ad/abc44aaceaf7b17ee1edde2bbb4458da591bc79574cffff50c4bb35f00d1/numpy-2.5.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:f27582c55ba4c750b7c58c8faf021d2cd9324a662b466229db8a417b41368af9", size = 16783807, upload-time = "2026-06-21T20:57:06.253Z" }, + { url = "https://files.pythonhosted.org/packages/5d/39/b72e168daf9c00fb20c9fc996d00437ccecdef3102387775d29d7a62576d/numpy-2.5.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:28e7137057d551e4a83c4ae414e3451f50568409db7569aacc7f9811ee06a446", size = 11765215, upload-time = "2026-06-21T20:57:08.547Z" }, + { url = "https://files.pythonhosted.org/packages/f7/a0/8400a9c0e3625182347593f5e1f57da9a617a534794805c8df5518154ddc/numpy-2.5.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:e1da54b53e75cd9fcfc23efcc7edab2c6aecf97b6037566d8a0fe804af8ec57c", size = 5324493, upload-time = "2026-06-21T20:57:11.012Z" }, + { url = "https://files.pythonhosted.org/packages/f6/8c/0d104deaa0401c93395a629ec902891618a2eff76d19229139cb5a887bfc/numpy-2.5.0-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:694d8f74e156f7fd01179f1aa8faa2f648ab6ae0f70b6c3fe57a03249aea2303", size = 6645211, upload-time = "2026-06-21T20:57:12.919Z" }, + { url = "https://files.pythonhosted.org/packages/6a/d9/4a4a628c812750363786afc3d33492709a5cd64b215469c16b0f6c7bb811/numpy-2.5.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1a7569a7b53c77716f036bb28cb1c91f166a26ec7d9502cd1e4bdfe502fdec22", size = 15166004, upload-time = "2026-06-21T20:57:14.717Z" }, + { url = "https://files.pythonhosted.org/packages/a0/5e/2a902317d7fc4aa93236e80c932662dadfc459b323d758329e01775125e1/numpy-2.5.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:39a0433bd4086ebd462960cf375e19195bb07b53dc1d87dd5fcf47ad78576f03", size = 16650797, upload-time = "2026-06-21T20:57:16.906Z" }, + { url = "https://files.pythonhosted.org/packages/e9/a0/a0090e6329f4ca5992c07847bb579c5259a19953dc57255bb08793142ffb/numpy-2.5.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:929f0c79ac38bcbd7154fe631dc907abfeddbcc5027a896bd1f7767323271e7a", size = 16524647, upload-time = "2026-06-21T20:57:19.165Z" }, + { url = "https://files.pythonhosted.org/packages/5e/7d/6caf27734c42b65837e7461ed0dbbd6b6fc835060c9714ec59d673bb383a/numpy-2.5.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:cc4f247a47bbf070bfd70be53ccdcf47b800af563535e7bbe172322197c30e21", size = 18411841, upload-time = "2026-06-21T20:57:21.638Z" }, + { url = "https://files.pythonhosted.org/packages/13/dc/26edadbd812536769a82c2e9e002234e33feb5da43061d47a044f6d309b7/numpy-2.5.0-cp314-cp314-win32.whl", hash = "sha256:5dc71423499fab3f46f7a7201155ade1669ea101f2f429d332df9e72f8161731", size = 6106361, upload-time = "2026-06-21T20:57:23.844Z" }, + { url = "https://files.pythonhosted.org/packages/f2/9e/4dd1459282229a72d92dece2ae9138e5cac94a72263a7ceb48f37434c925/numpy-2.5.0-cp314-cp314-win_amd64.whl", hash = "sha256:ebb81d9d5443e0309d6c54894c3fbed74ad7da0714352a67b6d773cd189eae73", size = 12551749, upload-time = "2026-06-21T20:57:25.945Z" }, + { url = "https://files.pythonhosted.org/packages/05/a7/6bc6384c080b86c7f6c85c5bc5b540b24f4f679cd144791d99574e90d462/numpy-2.5.0-cp314-cp314-win_arm64.whl", hash = "sha256:3b94d0d0deceebfad3e67ae5c0e5eb87371e8f7a0581cd04a779928c2450cf1e", size = 10617072, upload-time = "2026-06-21T20:57:28.175Z" }, + { url = "https://files.pythonhosted.org/packages/86/6b/4a2b71d66ada5608ae02b63f150dfad520f6940721cb7f029ad270befc0e/numpy-2.5.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:22f3d43e362d650bc39db1f17851302874a148ca95ba6981c1dfb5fa6862f35b", size = 11881067, upload-time = "2026-06-21T20:57:30.104Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b2/d365eb40a20efb49d67e9feb90494ed8511282ee1f5fa16006675c65397d/numpy-2.5.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:243563efb4cd7528a264567e9fd206c87826457322521d06206a00bfa316c927", size = 5440290, upload-time = "2026-06-21T20:57:32.193Z" }, + { url = "https://files.pythonhosted.org/packages/fa/5e/e9c03188de5f9b767e46a8fe988bcfd3efad066a4a3fda8b9cb11a93f895/numpy-2.5.0-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:84881d825ca75249b189bbee875fcfe3238aa5c479e6100893cda566e8e86826", size = 6748371, upload-time = "2026-06-21T20:57:33.933Z" }, + { url = "https://files.pythonhosted.org/packages/fd/1d/68c186a38a5027bae2c4ddd5ea681fdaf8b4d30fb7301def6d8ad270390f/numpy-2.5.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cda12aa4779d42b8771180aba759c96f527d43446d8f380ab59e2b35e8489efd", size = 15214643, upload-time = "2026-06-21T20:57:35.677Z" }, + { url = "https://files.pythonhosted.org/packages/8c/67/73f67b7c7e20635baae9c4c3ead4ae7326a005900297a6110971abd62eb5/numpy-2.5.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c0121101093d2bd74981b10f8837d78e794a8ff57834eb27179f49e1ba11ac6", size = 16690128, upload-time = "2026-06-21T20:57:38.159Z" }, + { url = "https://files.pythonhosted.org/packages/eb/05/d4c1fb0c46d02a27d6b2b8b319a78c90937acec8631c1641874670b31e6f/numpy-2.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d371c92cfa09da00022f501ab67fafaea813d752eb30ac44336d45b1e5b0268a", size = 16577902, upload-time = "2026-06-21T20:57:40.447Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1d/771c797d50fa26e4888989cccf1d50ee51f530d4e455ad2692dcb64fa711/numpy-2.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9990713e9c38154c6861e7547f1e3fc7a87e75ff09bab24ef1cc81d81c2835e9", size = 18452814, upload-time = "2026-06-21T20:57:42.875Z" }, + { url = "https://files.pythonhosted.org/packages/e8/46/52fc0d2a68d7643f0f149eeea5a5d8ea2a3507056ac8afa83c9212606e8b/numpy-2.5.0-cp314-cp314t-win32.whl", hash = "sha256:edadfbd4794b1086c0d822f81863e8a68fc129d132fd0bb9e31e955d7fbbbdb7", size = 6253168, upload-time = "2026-06-21T20:57:45.101Z" }, + { url = "https://files.pythonhosted.org/packages/2a/be/6c8d1118b5f13b2881dc095d5b345de19c6638b8959c17409b6eff84c8aa/numpy-2.5.0-cp314-cp314t-win_amd64.whl", hash = "sha256:f7e5fa4382967ae6548bd2f174219afb908e294b0d5f625af01166edd5f7d9aa", size = 12736286, upload-time = "2026-06-21T20:57:46.935Z" }, + { url = "https://files.pythonhosted.org/packages/fd/6a/d3a169aaf8536cf228d56a09e04bcb713a2fe4410d4e2105b9419b5a9c89/numpy-2.5.0-cp314-cp314t-win_arm64.whl", hash = "sha256:016623417bb330d719d579daf2d6b9a01ddc52e41a9ed61a47f39fde46dcd865", size = 10686451, upload-time = "2026-06-21T20:57:49.313Z" }, +] + +[[package]] +name = "numpydantic" +version = "1.10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "pydantic" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/95/5c/0cfed22c6483338c73d2faf182d863c47836e5f8f34e65b70aea345e7b72/numpydantic-1.10.0.tar.gz", hash = "sha256:a17d5ccc3b893c4a2e539c81c2f18960d70884ad7fcaa09c9eb56a95e8daf4a3", size = 98771, upload-time = "2026-06-22T22:04:46.251Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/15/0dd8e1ff306f97bee18a3ef024bb694f9043ee57474c57f7330f90804cae/numpydantic-1.10.0-py3-none-any.whl", hash = "sha256:1c62a445d305da69a5fa4510f7e7e1c25218f58fe462e5d59548042f1f769e66", size = 101858, upload-time = "2026-06-22T22:04:44.918Z" }, +] + +[[package]] +name = "packaging" +version = "26.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/f1/e7a6dd94a8d4a5626c03e4e99c87f241ba9e350cd9e6d75123f992427270/packaging-26.2.tar.gz", hash = "sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661", size = 228134, upload-time = "2026-04-24T20:15:23.917Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/b2/87e62e8c3e2f4b32e5fe99e0b86d576da1312593b39f47d8ceef365e95ed/packaging-26.2-py3-none-any.whl", hash = "sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e", size = 100195, upload-time = "2026-04-24T20:15:22.081Z" }, +] + +[[package]] +name = "paginate" +version = "0.5.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/46/68dde5b6bc00c1296ec6466ab27dddede6aec9af1b99090e1107091b3b84/paginate-0.5.7.tar.gz", hash = "sha256:22bd083ab41e1a8b4f3690544afb2c60c25e5c9a63a30fa2f483f6c60c8e5945", size = 19252, upload-time = "2024-08-25T14:17:24.139Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl", hash = "sha256:b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591", size = 13746, upload-time = "2024-08-25T14:17:22.55Z" }, +] + +[[package]] +name = "pandas" +version = "3.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "python-dateutil" }, + { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f8/87/4341c6252d1c47b08768c3d25ac487362bf403f0313ddae4a2a26c9b1b4c/pandas-3.0.3.tar.gz", hash = "sha256:696a4a00a2a2a35d4e5deb3fc946641b96c944f02230e4f76137fe35d806c4fc", size = 4651414, upload-time = "2026-05-11T18:54:29.21Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/16/b5c76b838fd9bf6ce84d3a53346b8874ec05c5f0040d75ef2c320100cd2a/pandas-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:455f6f8139d4282188f526868dbc3c828470e88a3d9d59a891bd46a455f21b98", size = 10338495, upload-time = "2026-05-11T18:52:11.558Z" }, + { url = "https://files.pythonhosted.org/packages/5a/b0/a4ffc4ae74d2d822200dcc46898987d8eb6032d1e2b219cae39da6f5cbcc/pandas-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4e15135e2ee5df1063313e2425ceef8ac0f4ae775893815b0923651b806a5639", size = 9938250, upload-time = "2026-05-11T18:52:17.005Z" }, + { url = "https://files.pythonhosted.org/packages/2e/b2/3323601a52caee42c019e370090ca4544b241437240ca04f786cce82b0cf/pandas-3.0.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:05f1f1752b8533ea03f7f39a9c15b1a058d067bb48f4748948e7a8691e0510f2", size = 10770558, upload-time = "2026-05-11T18:52:19.865Z" }, + { url = "https://files.pythonhosted.org/packages/32/f1/bbecd2f867b97abebe0f9b53d750f862251b40337e061b36676ded3d920f/pandas-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a1e45c80cceb3b4a21bc5939d52e8cbd8d9b7305309219d59e9754d9ce09e27", size = 11274611, upload-time = "2026-05-11T18:52:22.622Z" }, + { url = "https://files.pythonhosted.org/packages/7f/4f/eafabf2d5fae5adf143b4d18d3706c5efdc368a7c4eb1ee8a3eddabbd0f6/pandas-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:14da8316da4d0c5a77618425996bfb1248ca87fc2c1486e6fde4652bd18b5824", size = 11784670, upload-time = "2026-05-11T18:52:25.4Z" }, + { url = "https://files.pythonhosted.org/packages/49/44/1eb20389301b57b19cc099a1c2f662501f72f08a65f912d05822613c1532/pandas-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a55066a0505dae0ba2b50a46637db34b46f9094c65c5d4800794ef6335010938", size = 12353708, upload-time = "2026-05-11T18:52:28.139Z" }, + { url = "https://files.pythonhosted.org/packages/eb/62/c321f13b5ba1819fc8dca456c7fce578da2dcfecff1abbf0eaddf8406c0f/pandas-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6674ab18ad8c57802867264b00e15e7bb904700cdd9046e3b2fa1fce237439ea", size = 9907609, upload-time = "2026-05-11T18:52:30.982Z" }, + { url = "https://files.pythonhosted.org/packages/53/85/1b7f563ebc6357c27233a02a96b589bcce1fa9c6eb89fb4f0e56421d277e/pandas-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:5cc09a68b3120e0f54870dede8287a7bb1fa463907e4fcec1ea77cab6179bf7a", size = 9165596, upload-time = "2026-05-11T18:52:33.334Z" }, + { url = "https://files.pythonhosted.org/packages/24/f1/392f8c5bfc16f66a0d2d41561c01627c228fe7ed2a0d056ef11315042570/pandas-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fed2ff7fd9779120e388e285fc029bd5cf9490cdd2e4166a9ee22c0e49a9ab09", size = 10357846, upload-time = "2026-05-11T18:52:36.143Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3d/b16412745651e855f357e5e66930248688378853a6e2698a214e331fba1f/pandas-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b168fc218fd80a6cbdbdbc1a97ddc7889ed057d7eb45f50d866ceab5f39904c4", size = 9899550, upload-time = "2026-05-11T18:52:38.976Z" }, + { url = "https://files.pythonhosted.org/packages/31/a8/fa2535168fffcedf67f4f6de28d2dd903a747ca7c8ea6989451aaeb3a92f/pandas-3.0.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0383c72c75cdcca61a9e116e611143902dbfd08bff356829c2f6d1cf40a9ca8c", size = 10412965, upload-time = "2026-05-11T18:52:41.915Z" }, + { url = "https://files.pythonhosted.org/packages/65/b6/09b01cdbc15224e2850365192d17b7bdebb8bdbd8780ed221fcdf0d9a515/pandas-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6dc0b3fd2169c9157deed50b4d519553a3655c8c6a96027136d654592be973a9", size = 10894600, upload-time = "2026-05-11T18:52:45.02Z" }, + { url = "https://files.pythonhosted.org/packages/c9/a4/2eb28f2fccb4ced4a2c79ab2a5dee9ade1ebf44922ebad6fea158c9f95d4/pandas-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e65d5407dc0b394f509699650e4a2ec01c0514f21850f453fa60f3be79a5dbf", size = 11422824, upload-time = "2026-05-11T18:52:48.058Z" }, + { url = "https://files.pythonhosted.org/packages/f8/45/830bb57f533a4604b355e07edcb8ea18cf88b5f94e5fca92f27052d7c597/pandas-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f8894dc474d648fe7b6ff0ca9b0bd73950d19952bc1a6534540762c5d79d305c", size = 11950889, upload-time = "2026-05-11T18:52:50.905Z" }, + { url = "https://files.pythonhosted.org/packages/b9/c5/fc1b368f303087d20e8c9bf3d6ceb186263cfac0ade735cd938538bea839/pandas-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:c7be265b62cef88e253a941e4698604973736dcfe242fdb5198f0f7bc473cdcc", size = 9755463, upload-time = "2026-05-11T18:52:53.386Z" }, + { url = "https://files.pythonhosted.org/packages/86/bd/fda8f9705b1b09c6ebe14bfc0fa0e4ec8584d54ea673628f157ff55131af/pandas-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:557409bc4178e70ee8d9ddb494798e51ebf6ea59330f6be22c51bab2a7db6c49", size = 9066158, upload-time = "2026-05-11T18:52:56.038Z" }, + { url = "https://files.pythonhosted.org/packages/c5/90/62d8302883c44308c477e222c3daf7c813a34c8e96985882fbd53d964352/pandas-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:67b3b64c11910cfa29f4e94a14d3bff9ee693b6fc76055e7cad549cee0aec5fa", size = 10331071, upload-time = "2026-05-11T18:52:58.838Z" }, + { url = "https://files.pythonhosted.org/packages/7f/ae/6a6493c783a101f165e4356953ba3c74d6f77f0042fa7d753da9dfbb640c/pandas-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:39436b377d56d2a2e52d0395bdbee171f01068e99af5250509aceeb929f765c7", size = 9875690, upload-time = "2026-05-11T18:53:01.431Z" }, + { url = "https://files.pythonhosted.org/packages/62/7c/5df8e9f56c69a2769fbe9382a5ef8f2658c007e376434e1e2cbb57ad895f/pandas-3.0.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4be06d68f9ddcfc645b87534911da79a8fbffc7573c80e0edcf42a5020624d8", size = 10381634, upload-time = "2026-05-11T18:53:04.393Z" }, + { url = "https://files.pythonhosted.org/packages/99/68/1237369725aa617bb358263d535803e3053fdbc593513ec5ed9c9896b5b6/pandas-3.0.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a4eeb6830daf35a71cc09649bd823e2b542dac246cdee9614c6e4bd65028cd6a", size = 10891243, upload-time = "2026-05-11T18:53:07.643Z" }, + { url = "https://files.pythonhosted.org/packages/25/93/77d108e8af7222b4a503ebde0e30215b1c2e4f8e53a526431890f22d5586/pandas-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1928e07221f82db493cd4af1e23c1bfca524a19a4699887975bff68f49a72bfb", size = 11388659, upload-time = "2026-05-11T18:53:10.634Z" }, + { url = "https://files.pythonhosted.org/packages/d0/bd/eff5b4399f332ac386c853f6cd2bd3fa2ca0061b9f36ecd9c4d7c4265649/pandas-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:51b1fe551acb77dac643c6fda86084d8d446c10fe64b06a9cc29c4cc8540e7f2", size = 11942880, upload-time = "2026-05-11T18:53:13.536Z" }, + { url = "https://files.pythonhosted.org/packages/2c/20/559ace4200982c3887d0b86bfd0d856a2143ef8ddab63cc07934951a964c/pandas-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:a82d532a3351d435432cd913edbccaf8b8e01d4dd0e5ced5a8d2e8ecd94c7e44", size = 9757091, upload-time = "2026-05-11T18:53:16.306Z" }, + { url = "https://files.pythonhosted.org/packages/3a/66/69055a09fe200f29f922a3eeec4804611900b95f52d932ece3393c3c0c19/pandas-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:275c14e0fce14a2ec20eee474aecd305478ea3c1e6f6a9d8fe219a165542717e", size = 9057282, upload-time = "2026-05-11T18:53:18.768Z" }, + { url = "https://files.pythonhosted.org/packages/57/0e/efe801b0e6811e8e650cd21b7f2608e30f08a7067e2bf6e8752b0d56ee3c/pandas-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:46997386d528eb40376ecd6b033cf4a8a1e5282580f68f43de875b78cba2199d", size = 10767016, upload-time = "2026-05-11T18:53:21.227Z" }, + { url = "https://files.pythonhosted.org/packages/ea/dc/eb55135a1d5f0f0519f28da1f609a206d2cad1f9c35c32d51e38dd7261ae/pandas-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:261e308dfb22448384b7580cf719d2f998fe2966c92893c3e77d14008af1f066", size = 10420210, upload-time = "2026-05-11T18:53:23.982Z" }, + { url = "https://files.pythonhosted.org/packages/c6/3e/b1d5d955ce33ffecb407465a60bc32769d74fcf68224b7ae67ae11d4dea4/pandas-3.0.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dd1a5d1def6a46002e964510bdc67c368aa0951df5d1d9f8365336f5a1f490cd", size = 10336126, upload-time = "2026-05-11T18:53:26.731Z" }, + { url = "https://files.pythonhosted.org/packages/f5/76/a01261711ab60a22d71b862f0de20e4c504bf80457270ad8cb42110f6abc/pandas-3.0.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d72828c20c6d6e83e1e22a6a3b47b326b71664112fa9705dcbccfd7a39b62085", size = 10728051, upload-time = "2026-05-11T18:53:29.125Z" }, + { url = "https://files.pythonhosted.org/packages/e9/21/ea191195e587b18cf682e97f433f81b2d0fbe341380e80a3e0d6e4403c8e/pandas-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d26cbe1fcfc12e8fd900e2454163e466b2d3af84f7c75481df7683ffc073d870", size = 11350796, upload-time = "2026-05-11T18:53:32.056Z" }, + { url = "https://files.pythonhosted.org/packages/64/69/f0eaaf54939f0e8c6768fd06be9af2cef9b36048b96dfb9e1b2c685a807e/pandas-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:3e91cec1879ada0624fc3dc9953c5cbd60208e59c0db28f540c5d6d47502422f", size = 11799741, upload-time = "2026-05-11T18:53:34.985Z" }, + { url = "https://files.pythonhosted.org/packages/45/a4/865e0e510cae5fc2194de4db28be638952de942571ba9125934fd9c01d47/pandas-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:08d789b41f87e0905880e293cedf6197ce71fe67cc081358b1e148a491b9bd13", size = 10499958, upload-time = "2026-05-11T18:53:37.857Z" }, + { url = "https://files.pythonhosted.org/packages/86/54/effdcc3c0ff7a08037889200e148ebe94c16c4f653be078c7b3675955df1/pandas-3.0.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:3650109c0f22879df8bd6179ab9ee3d7f1d1d4e7e0094a3f0032d9f51e2e64ac", size = 10336065, upload-time = "2026-05-11T18:53:41.099Z" }, + { url = "https://files.pythonhosted.org/packages/68/10/bf2d6738d72748b961a3751ab89522d58c54efc36a8e1a12161216cd45cf/pandas-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:bab900348131a7db1f69a7309ef141fd5680f1487094193bcbbb61791573bf8f", size = 9926101, upload-time = "2026-05-11T18:53:43.515Z" }, + { url = "https://files.pythonhosted.org/packages/ae/e9/e35cf11c8a136e757b956f5f0efdcaa50aecde85ea055f1898dfc68262f3/pandas-3.0.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ba7e08b9ac1d54569cd1e256e3668975ed624d6826f7b68df0342b012007bddb", size = 10457553, upload-time = "2026-05-11T18:53:46.394Z" }, + { url = "https://files.pythonhosted.org/packages/58/3b/1cdec6772bdbaf7b25dab360c59f03cadf05492dd724c6540af905389b07/pandas-3.0.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d71c63ae4ebdbf70209742096f1fc46a83a0613c99d4b23766cced9ff8cd62a", size = 10914065, upload-time = "2026-05-11T18:53:49.134Z" }, + { url = "https://files.pythonhosted.org/packages/c4/c2/1ef644445fcd72e3627bceec77e3560636f87ddce4ed841afe76b83b5bf9/pandas-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e3a2ec42c98ffa2565a67e08e218d06d72576d758d90facb7c00805194d8f360", size = 11459188, upload-time = "2026-05-11T18:53:52.527Z" }, + { url = "https://files.pythonhosted.org/packages/7e/49/4d8d4f42cbc9c4adc7a1870f269c02cbd6cd40d059622c06fb298addcbad/pandas-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:335f62418ed562cfc3c49e9e196375c28b729dcef8543abf4f9438e381bf3c76", size = 11982966, upload-time = "2026-05-11T18:53:55.043Z" }, + { url = "https://files.pythonhosted.org/packages/38/55/792619469bab9882d8bbd5865d45a72f6478762d04a9af4bf0d08c503e95/pandas-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:3c20a521bbb85902f79f7270c80a59e1b5452d96d170c034f207181870f97ac5", size = 9876755, upload-time = "2026-05-11T18:53:58.067Z" }, + { url = "https://files.pythonhosted.org/packages/2a/af/33c469653b0ba03b50c3a98192d4c07f0c75c66b263ceb097fce0ee97d31/pandas-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:a2d2dff8a04f3917b55ab3910c32990f8ddf7eceba114947838cefa976a68977", size = 9198658, upload-time = "2026-05-11T18:54:00.733Z" }, + { url = "https://files.pythonhosted.org/packages/a2/fa/b8c257bd76b8bd060c3a9151c1fca05e9b9c5e3af5d0f549c0356f6d143d/pandas-3.0.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:0d589105b3c14645af1738ff279b2995102d8f7a03b0a66dc8d95550eb513e04", size = 10787242, upload-time = "2026-05-11T18:54:03.564Z" }, + { url = "https://files.pythonhosted.org/packages/54/eb/f19206ffb0bf1919002969aa448b4702c6594845156a6f8050674855aac3/pandas-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:13fc1e853d9e04743d11ba75a985ccbc2a317fe07d8af61e445a6fd24dacd6a6", size = 10436369, upload-time = "2026-05-11T18:54:06.311Z" }, + { url = "https://files.pythonhosted.org/packages/fd/24/c7c39fb4fe22b71a0c2d78bf0c585c600092d85f94f086d2b3b2f6ca27e2/pandas-3.0.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:819959dab7bbd0049c15623fbac4e29a191b9528160a61fb1032242d8ced2d9c", size = 10358306, upload-time = "2026-05-11T18:54:09.085Z" }, + { url = "https://files.pythonhosted.org/packages/16/ec/dd2a9eb7fa1204df88c0864164e35b228ac581062ac612ba0a67fd812e4c/pandas-3.0.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:60ae316d3fd75d1858d450d0db0103ea2be3e7d4a95ec2f064f7e2ae63f7b028", size = 10758394, upload-time = "2026-05-11T18:54:11.956Z" }, + { url = "https://files.pythonhosted.org/packages/95/6e/00c61ea8e85b4f6d8d35e11852a1a4998fc7fafc91c6a602d1cc9c972d64/pandas-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bd3a518890b400d32f9023722dc9a9a5c969f00b415419a3c06c043f09bb5d7d", size = 11375717, upload-time = "2026-05-11T18:54:14.539Z" }, + { url = "https://files.pythonhosted.org/packages/31/89/8fc1c268969fac43688d65fd92e67df24bd128d53cb4d2eee534cd307399/pandas-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9c39be2d709d01fa972a0cabc522389fceca4f3969332ba25a7d6c5802cf976a", size = 11828897, upload-time = "2026-05-11T18:54:17.146Z" }, + { url = "https://files.pythonhosted.org/packages/56/3b/e7d20dea247a3e6dc0bd8a6953854afbedc03951def4e7371e05e7263e25/pandas-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4db8c527972a821cf5286b40ccc57642a39bc62e62022b42f99f8a67fca8c3a1", size = 10900855, upload-time = "2026-05-11T18:54:19.72Z" }, + { url = "https://files.pythonhosted.org/packages/0f/54/68a0978d1ef8502b8492099beaa6e7a0c1b32e3b5d4f677f5810cb08711c/pandas-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b2c95f8bfc1ee412bf482605d7bfd30c12d1d26bd59fdd91efeef1d4718decb1", size = 9466464, upload-time = "2026-05-11T18:54:22.754Z" }, +] + +[[package]] +name = "pathspec" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/82/42f767fc1c1143d6fd36efb827202a2d997a375e160a71eb2888a925aac1/pathspec-1.1.1.tar.gz", hash = "sha256:17db5ecd524104a120e173814c90367a96a98d07c45b2e10c2f3919fff91bf5a", size = 135180, upload-time = "2026-04-27T01:46:08.907Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/d9/7fb5aa316bc299258e68c73ba3bddbc499654a07f151cba08f6153988714/pathspec-1.1.1-py3-none-any.whl", hash = "sha256:a00ce642f577bf7f473932318056212bc4f8bfdf53128c78bbd5af0b9b20b189", size = 57328, upload-time = "2026-04-27T01:46:07.06Z" }, +] + +[[package]] +name = "pillow" +version = "12.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/3d/bb7fca845737cf9d7dbde16ed1843984665ff2e0a518f5db43e77ec540b9/pillow-12.3.0.tar.gz", hash = "sha256:3b8182a766685eaa002637e28b4ec8d6b18819a0c71f579bf0dbaa5830297cce", size = 47025035, upload-time = "2026-07-01T11:56:38.965Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/c8/0a78b0e02d7ac54bc03e5321c9220da52f0c2ea83b21f7c40e7f3169c502/pillow-12.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:00808c5e14ef63ac5161091d242999076604ff74b883423a11e5d7bbb38bf756", size = 5392415, upload-time = "2026-07-01T11:53:47.162Z" }, + { url = "https://files.pythonhosted.org/packages/b2/5b/a02d30018abd97ced9f5a6c63d28597694a00d066516b9c1c6de45859fc9/pillow-12.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:37d6d0a00072fd2948eb22bce7e1475f34569d90c87c59f7a2ec59541b77f7a6", size = 4785266, upload-time = "2026-07-01T11:53:49.079Z" }, + { url = "https://files.pythonhosted.org/packages/c8/98/766667a4be768150a202836acd9fad19c06824ca86c4286d3cf6b274964e/pillow-12.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bcb46e2f9feff8d06323983bd83ed00c201fdcab3d74973e7072a889b3979fcd", size = 6263814, upload-time = "2026-07-01T11:53:51.32Z" }, + { url = "https://files.pythonhosted.org/packages/3b/2d/ede717bc1144f63886c21fd349bb95860b0d1a21149ff16f2bb362b612b6/pillow-12.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:23d27a3e0307ec2244cc51e7287b919aa68d097504ebe19df4e76a98a3eea5bd", size = 6934408, upload-time = "2026-07-01T11:53:53.487Z" }, + { url = "https://files.pythonhosted.org/packages/a3/48/9c58b685e69d49c31af6c8eb9012055fab7e665785165c84796e2c73ce72/pillow-12.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4f883547d4b7f0495ebe7056b0cc2aea76094e7a4abc8e933540f3271df27d9c", size = 6337160, upload-time = "2026-07-01T11:53:55.457Z" }, + { url = "https://files.pythonhosted.org/packages/ff/fa/dc2a5c0ba6df93f67c31d34b808b7ce440b40cdbf96f0b81cde1d1e6fa93/pillow-12.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:236ff70b9312fb68943c703aa842ca6a758abfa45ac187a5e7c1452e96ef72b5", size = 7045172, upload-time = "2026-07-01T11:53:57.736Z" }, + { url = "https://files.pythonhosted.org/packages/86/a5/444817a4d4c4c2417df00513086ca196f388d8f9ef40c2e4ccd1ad1af54b/pillow-12.3.0-cp311-cp311-win32.whl", hash = "sha256:10e41f0fbf1eec8cfd234b8fe17a4caac7c9d0db4c204d3c173a8f9f6ef3232b", size = 6472232, upload-time = "2026-07-01T11:53:59.767Z" }, + { url = "https://files.pythonhosted.org/packages/63/c6/4bad1b18d132a50b27e1365e1ab163616f7a5bb56d330f66f9d1d9d4f9d4/pillow-12.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:8e95e1385e4998ae9694eeaa4730ba5457ff61185b3a55e2e7bea0880aef452a", size = 7233653, upload-time = "2026-07-01T11:54:02.066Z" }, + { url = "https://files.pythonhosted.org/packages/fd/16/00f91ab7760dc842f5aad55217e80fc4a7067a0604535249bc8a2d6d9870/pillow-12.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:ebaea975e03d3141d9d3a507df75c9b3ec90fa9d2ffd07567b3a978d9d790b26", size = 2568195, upload-time = "2026-07-01T11:54:04.622Z" }, + { url = "https://files.pythonhosted.org/packages/37/bf/fb3ebff8ddcb76aac5a01389251bbbb9519922a9b520d8247c1ca864a25d/pillow-12.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ba09209fbe443b4acccebe845d8a138b89a8f4fbaeedd44953490b5315d5e965", size = 5345969, upload-time = "2026-07-01T11:54:06.397Z" }, + { url = "https://files.pythonhosted.org/packages/d8/66/9a386a92561f402389a4fc70c18838bf6d35eb5eb5c6850b4b2dc64f5048/pillow-12.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ffd0c5368496f41b0944be820fcb7a838aa6e623d250b01acf2643939c3f99d7", size = 4780323, upload-time = "2026-07-01T11:54:09.351Z" }, + { url = "https://files.pythonhosted.org/packages/25/27/ac8f99618ffd3dde21db0f4d4b1d2ab00c0880595bfd17df103f7f39fd0c/pillow-12.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d9c7f76c0673154f044e9d78c8655fb4213f6ca31a836df48b40fe5d187717b9", size = 6266838, upload-time = "2026-07-01T11:54:11.71Z" }, + { url = "https://files.pythonhosted.org/packages/84/21/a35af28dcc61f37ed850a2d64c65c701321dfbf25085e469d5559360cbbf/pillow-12.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:78cb2c6865a35ab8ff8b75fd122f6033b92a62c82801110e48ddd6c936a45d91", size = 6940830, upload-time = "2026-07-01T11:54:13.732Z" }, + { url = "https://files.pythonhosted.org/packages/eb/51/8b08617af3ad95e33ce6d7dd2c99ed6c8298f7fb131636303956be022e25/pillow-12.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e491916b378fba47242221bb9ead245211b70d504f495d105d17b14a24b4907c", size = 6344383, upload-time = "2026-07-01T11:54:15.756Z" }, + { url = "https://files.pythonhosted.org/packages/1d/72/cf78ac9780bb93c28328f408973845a309d4d145041665f734572ced1b52/pillow-12.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0dd2064cbc55aaec028ef5fbb60fa47bb6c3e7918e07ff17935284b227a9d2df", size = 7052934, upload-time = "2026-07-01T11:54:17.721Z" }, + { url = "https://files.pythonhosted.org/packages/20/20/25e0f4dc178a6bc0696793720055519a0de89e7661dae886992decbd2f81/pillow-12.3.0-cp312-cp312-win32.whl", hash = "sha256:dbce0b29841537a2fa4a214c2bbf14de3587c9680caa9b4e217568472490b28f", size = 6472684, upload-time = "2026-07-01T11:54:19.839Z" }, + { url = "https://files.pythonhosted.org/packages/45/89/da2f7971a317f83d807fdd4065c0af40208e59e692cc43d315a71a0e96d1/pillow-12.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a2b55dd6b2a4c4b7d87ffa56bdb33fdc5fdb9a462173861a7bc097f17d91cb09", size = 7227137, upload-time = "2026-07-01T11:54:22.025Z" }, + { url = "https://files.pythonhosted.org/packages/de/47/4845a0a6c0dbf1db8456bd9fc791f13c5ced7ced20606d08a0aacfd25b49/pillow-12.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:331b624368d4f1d069149002f25f44bc61c8919ce8ddb3c45bdad8f6e2d89510", size = 2568267, upload-time = "2026-07-01T11:54:24.051Z" }, + { url = "https://files.pythonhosted.org/packages/9d/ac/31fb64e1e7efb5a4b50cd3d92049ba89ac6e4d8d3bb6a74e15048ca3353e/pillow-12.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:21900ce7ba264168cd50defae43cd75d25c833ad4ad6e73ffc5596d12e25ac89", size = 4161684, upload-time = "2026-07-01T11:54:25.934Z" }, + { url = "https://files.pythonhosted.org/packages/87/b4/9805e23d2b4d77842b468513841fda254ee42f0289d25088340e4ff46e2d/pillow-12.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:4e8c2a84d977f50b9daed6eeaf3baef67d00d5d74d932288f02cb94518ee3ace", size = 4255487, upload-time = "2026-07-01T11:54:27.935Z" }, + { url = "https://files.pythonhosted.org/packages/df/39/ecf519435a200c693fe053a6ee4d835b41cf963a4dfc2551c4e637cb2a71/pillow-12.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:ae26d61dfa7a47befdc7572b521024e8745f3d809bd95ca9505a7bba9ef849ec", size = 3696433, upload-time = "2026-07-01T11:54:29.813Z" }, + { url = "https://files.pythonhosted.org/packages/42/92/2fc3ffad878ae8dd5469ec1bc8eb83b71f48e13efdf68f02709003982a32/pillow-12.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7a743ff716f746fc19a9557f60dab1600d4613255f8a7aeb3cdde4db7eb15a66", size = 5345889, upload-time = "2026-07-01T11:54:31.97Z" }, + { url = "https://files.pythonhosted.org/packages/10/76/8803c13605b763d33d156c4678fc77f8443389c0c51c8aef707bb02015f4/pillow-12.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d69141514cc30b774ceea5e3ed3a6635c8d8a96edf664689b890f4089111fb35", size = 4780109, upload-time = "2026-07-01T11:54:34.026Z" }, + { url = "https://files.pythonhosted.org/packages/1f/01/e18aff37cb0b4aac47ac90f016d347a49aca667ef97f190b06ac2aabc928/pillow-12.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f7401aebd7f581d7f83a439d87d474999317ee099218e5ad25d125290990ba65", size = 6263736, upload-time = "2026-07-01T11:54:36.131Z" }, + { url = "https://files.pythonhosted.org/packages/f7/62/de5bdd77d935331f4f802edc11e4d82950f642caad6cb2f949837b8560e2/pillow-12.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0847a763afefb695bc912d7c131e7e0632d4edc1d8698f58ddabec8e46b8b6d3", size = 6937129, upload-time = "2026-07-01T11:54:38.216Z" }, + { url = "https://files.pythonhosted.org/packages/70/4d/105627a13300c5e0df1d174230b32fd1273062c96f7745fd552b945d1e1d/pillow-12.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:571b9fcb07b97ef3a492028fb3d2dc0993ca23a06138b0315286566d29ef718a", size = 6339562, upload-time = "2026-07-01T11:54:40.354Z" }, + { url = "https://files.pythonhosted.org/packages/6b/1d/f13de01a553988ab895ba1c722e06cf3144d4f57656fd5b81b6d881f1179/pillow-12.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:756c768d0c9c2955feb7a56c37ea24aea2e369f8d36a88da270b6a9f19e62b5e", size = 7049439, upload-time = "2026-07-01T11:54:42.489Z" }, + { url = "https://files.pythonhosted.org/packages/c9/f9/066794cca041b969964f779ee5fa66a9498bbf34248ac39c5d7954e4198f/pillow-12.3.0-cp313-cp313-win32.whl", hash = "sha256:a876864214e136f0eb367788dbd7df045f4806801518e2cfe9e13229cfe06d8f", size = 6473287, upload-time = "2026-07-01T11:54:44.9Z" }, + { url = "https://files.pythonhosted.org/packages/a6/9b/7a58e61d62be561da3a356fe2384d4059a6345fc130e23ef1c36a5b81d24/pillow-12.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:1cca606cd25738df4ed873d5ad46bbdb3d83b5cbca291f6b4ff13a4df6b0bbe8", size = 7239691, upload-time = "2026-07-01T11:54:47.141Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b0/c4ed4f0ef8f8fa5ee8351537db6650bb8189f7e118842978dd6589065692/pillow-12.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:b629de27fda84b42cde7edef0d85f13b958b47f6e9bbcbba9b673c562a89bd8b", size = 2568185, upload-time = "2026-07-01T11:54:49.137Z" }, + { url = "https://files.pythonhosted.org/packages/dc/01/001f65b68192f0228cc1dbbc8d2530ab5d58b61037ba0587f946fea607cd/pillow-12.3.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:9cf95fe4d0f84c82d282745d9bb08ad9f926efa00be4697e767b814ce40d4330", size = 4161736, upload-time = "2026-07-01T11:54:51.156Z" }, + { url = "https://files.pythonhosted.org/packages/1a/d2/0219746d0fd16fc8a84498e79452375be3797d3ce4044596ce565164b84f/pillow-12.3.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:8728f216dcdb6e6d555cf971cb34076139ad74b31fc2c14da4fafc741c5f6217", size = 4255435, upload-time = "2026-07-01T11:54:53.414Z" }, + { url = "https://files.pythonhosted.org/packages/c8/02/8d0bc62ef0302318c46ff2a512822d2610e81c7aa46c9b3abe6cbaca5ad0/pillow-12.3.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:a45650e8ce7fafffd731db8550230db6b0d306d181a90b67d3e6bca2f1990930", size = 3696262, upload-time = "2026-07-01T11:54:55.739Z" }, + { url = "https://files.pythonhosted.org/packages/85/e2/73c77d218410b14f5f2d565e8a998d5317b7b9c75368d29985139f7a46f0/pillow-12.3.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:ba54cfebe86920a559a7c4d6b9050791c20513650a1952ebe3368c7dc70306f8", size = 5350344, upload-time = "2026-07-01T11:54:57.657Z" }, + { url = "https://files.pythonhosted.org/packages/c7/da/32c752228ae345f489e3a42499d817b6c3996da7e8a3bc7a04fc806b243b/pillow-12.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e158cb00350dc278f3b91551101aa7d12415a66ebf2c91d8d5ac14e56ddd3ad0", size = 4780131, upload-time = "2026-07-01T11:54:59.713Z" }, + { url = "https://files.pythonhosted.org/packages/b1/9d/8b2c807dbef61a5197c047afe99823787eb66f63daf9fb2432f91d6f0462/pillow-12.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e9aeb04d6aef139de265b29683e119b638208f88cf73cdd1658aa07221165321", size = 6263757, upload-time = "2026-07-01T11:55:01.778Z" }, + { url = "https://files.pythonhosted.org/packages/5c/44/c85361f65dbe00eea8576ee467c768d25129989efb76e94f205e9ca9bb46/pillow-12.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:251bf95b67017e27b13d82f5b326234ca62d70f9cf4c2b9032de2358a3b12c7b", size = 6936962, upload-time = "2026-07-01T11:55:03.93Z" }, + { url = "https://files.pythonhosted.org/packages/18/7e/e483414b35800b86b6f08dbbc7803fb5cd52c4d6f897f47d53ea2c7e6f65/pillow-12.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fe3cca2e4e8a592be0f269a1ca4835c25199d9f3ce815c8491048f785b0a0198", size = 6339171, upload-time = "2026-07-01T11:55:05.989Z" }, + { url = "https://files.pythonhosted.org/packages/f0/f4/68c491844841ede6bed70189546b3ee9731cf9f2cbad396faff5e1ccba45/pillow-12.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:23aceaa007d6172b02c277f0cd359c79492bbb14f7072b4ede9fbcaf20648130", size = 7048116, upload-time = "2026-07-01T11:55:08.131Z" }, + { url = "https://files.pythonhosted.org/packages/a3/34/77f3f793fed8efc7d243f21b33c5a3f0d1c97ee70346d3db855587e155ff/pillow-12.3.0-cp314-cp314-win32.whl", hash = "sha256:af8d94b0db561cf68b88a267c5c44b49e134f525d0dc2cb7ed413a66bc23559a", size = 6467209, upload-time = "2026-07-01T11:55:10.408Z" }, + { url = "https://files.pythonhosted.org/packages/f1/e0/492879f69d94f91f60fc8cd05ba03650e9520afebb2fb7aa12777d7c7f38/pillow-12.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:fdafc9cce40277e0f7a0feabce0ee50dd2fa1800f3b38015e51296b5e814048d", size = 7237707, upload-time = "2026-07-01T11:55:12.745Z" }, + { url = "https://files.pythonhosted.org/packages/c9/ac/6b11f2875f1c2ac040d84e1bbf9cf22a88038f901ca1037898b280b38365/pillow-12.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:e91206ee562682b51b98ef4b26a6ef48fd84e15fd4c4bc5ec768eb641d206838", size = 2565995, upload-time = "2026-07-01T11:55:14.736Z" }, + { url = "https://files.pythonhosted.org/packages/52/69/c2208e56af9bfc1913afb24020297a691eb1d4ef688474c8a04913f65e04/pillow-12.3.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:164b31cd1a0490ab6efae01aa5df49da7061be0af1b30e035b6e9a1bfe34ee6e", size = 5352503, upload-time = "2026-07-01T11:55:17.076Z" }, + { url = "https://files.pythonhosted.org/packages/07/70/e5686d753e898a45d778ff1718dba8516ead6ab6b95d85fc8c4b70650cf2/pillow-12.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5afb51d599ea772b8365ae807ae557f18bccfe46ab261fd1c2a9ed700fc6eb17", size = 4782956, upload-time = "2026-07-01T11:55:19.448Z" }, + { url = "https://files.pythonhosted.org/packages/d5/37/25c6692f06927ee973ff18c8d9ee98ad0b4d84ee67a09610c2dd1447958e/pillow-12.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3edce1d53195db527e0191f84b71d02022de0540bf43a16ed734ed7537b07385", size = 6322855, upload-time = "2026-07-01T11:55:21.613Z" }, + { url = "https://files.pythonhosted.org/packages/cc/91/420637fcb8f1bc11029e403b4538e6694744428d8246118e45719f944556/pillow-12.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bf16ba1b4d0b6b7c8e534936632270cf70eb00dbe09005bc345b2677b726855c", size = 6989642, upload-time = "2026-07-01T11:55:24.006Z" }, + { url = "https://files.pythonhosted.org/packages/10/08/b94d7811281ccf0d143a1cf768d1c49e1e54af63e7b708ab2ee3eb87face/pillow-12.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:24870b09b224f7ae3c39ed07d10e819d06f8720bc551847b1d623832b5b0e28d", size = 6391281, upload-time = "2026-07-01T11:55:26.252Z" }, + { url = "https://files.pythonhosted.org/packages/d2/87/24233f785f55474dc02ce3e739c5528a77e3a862e9333d1dd7a25cc31f70/pillow-12.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:30f2aa603c41533cc25c05acd0da21636e84a315768feb631c937177db558931", size = 7096716, upload-time = "2026-07-01T11:55:28.318Z" }, + { url = "https://files.pythonhosted.org/packages/23/26/fcb2f6e37175b04f53570b59937867e2b80ee1685e744023153028fc14f9/pillow-12.3.0-cp314-cp314t-win32.whl", hash = "sha256:4b0a7fe987b14c31ebda6083f74f22b561fd3739bc0ac51e019622e3d72668c7", size = 6474125, upload-time = "2026-07-01T11:55:30.956Z" }, + { url = "https://files.pythonhosted.org/packages/90/de/3634abee5f1c9e13c56787b7d5517b0ba8d6de51700b95578cf338349c9f/pillow-12.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:962864dc93511324d51ddbb5b9f8731bf71675b93ca612a07441896f4688fb8c", size = 7242939, upload-time = "2026-07-01T11:55:34.044Z" }, + { url = "https://files.pythonhosted.org/packages/ce/2a/fd13f8eb24de5714a6eb444a3d67e2842c6c576e159a43793adf23051351/pillow-12.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0740a512dc522224c77d9aa5a8d70d8b7d73fb91f2c21125d8d025d3b8990e45", size = 2567506, upload-time = "2026-07-01T11:55:35.988Z" }, + { url = "https://files.pythonhosted.org/packages/5d/dc/8fdce34ec725a33c81c6ba122b904d6b9024e50ea9ac7bede62fab54506c/pillow-12.3.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl", hash = "sha256:0feb2e9d6ad6c9e3c06effe9d00f3f1e618a6643273576b016f591e9315a7139", size = 4162063, upload-time = "2026-07-01T11:55:37.941Z" }, + { url = "https://files.pythonhosted.org/packages/76/66/2044b9a63d3b84ff048228dfcb7cd9bf0df983e8470971bf7d4c57b693de/pillow-12.3.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:9e881fca225083806662a5c43d627d215f258ff43c890f831966c7d7ba9c7402", size = 4255549, upload-time = "2026-07-01T11:55:40.022Z" }, + { url = "https://files.pythonhosted.org/packages/52/7e/1f67e6f4ece6b582ee4b539decbcc9f848dc245a93ed8cd7338bafef72f1/pillow-12.3.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:4998562bf62a445225f22e07c896bb04b35b1b1f2eb6d760584c9c51d7a5f78c", size = 3696331, upload-time = "2026-07-01T11:55:41.98Z" }, + { url = "https://files.pythonhosted.org/packages/12/40/d306fc2c8e4d45d7f175c77edca7063be7b86fe7fe6e68f4353bf71d808c/pillow-12.3.0-cp315-cp315-macosx_10_15_x86_64.whl", hash = "sha256:dc624f6bc473dacdf7ef7eb8678d0d08edf15cd94fad6ae5c7d6cc67a4e4902f", size = 5350370, upload-time = "2026-07-01T11:55:44.028Z" }, + { url = "https://files.pythonhosted.org/packages/dd/44/668fb1437e8ce420f62d6106eb66e44a5971602a4d794615bdf79315d82d/pillow-12.3.0-cp315-cp315-macosx_11_0_arm64.whl", hash = "sha256:71d6097b330eea8fd15097780c8e89cb1a8ce7838669f48c5bacd6f663dd4701", size = 4780147, upload-time = "2026-07-01T11:55:46.073Z" }, + { url = "https://files.pythonhosted.org/packages/0c/08/93fa2e70e30a2d81547e481b6ee2bb9522117221fb1e0ce4b5df70967677/pillow-12.3.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:28ce87c5ab450a9dd970b52e5aca5fe63ed432d18a2eaddd1979a00a1ba24ace", size = 6273659, upload-time = "2026-07-01T11:55:48.264Z" }, + { url = "https://files.pythonhosted.org/packages/f8/6d/043e96ff814fc31a33077e4cba86082167db520c93632afdf2042febbb0c/pillow-12.3.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6b02afb9b97f65fbca5f31db6a2a3ba21aa93030225f150fa3f249717e938fb4", size = 6947439, upload-time = "2026-07-01T11:55:50.503Z" }, + { url = "https://files.pythonhosted.org/packages/af/92/ba71d2ee2ac0edf3fa33bd9d5ee9ee080da70b1766f3ca3934f9938ddac9/pillow-12.3.0-cp315-cp315-musllinux_1_2_aarch64.whl", hash = "sha256:1182d52bc2d5e5d7d0949503aa7e36d12f42205dc287e4883f407b1988820d39", size = 6353577, upload-time = "2026-07-01T11:55:52.697Z" }, + { url = "https://files.pythonhosted.org/packages/0f/ce/e63064e2122923ff687c8ad792d0d736a7b3920a56a46982e81a7fdd25d6/pillow-12.3.0-cp315-cp315-musllinux_1_2_x86_64.whl", hash = "sha256:e795b7eb908249c4e43c7c99fac7c2c75dab0c43566e37db472a355f63693d71", size = 7060394, upload-time = "2026-07-01T11:55:55.149Z" }, + { url = "https://files.pythonhosted.org/packages/54/76/a09cc3ccc8d773a7283d34c38bec1708f9e3cc932093cbc4c5e71ac4060b/pillow-12.3.0-cp315-cp315-win32.whl", hash = "sha256:57b3d78c95ba9059768b10e28b813002261d3f3dfc55cc48b0c988f625175827", size = 6467375, upload-time = "2026-07-01T11:55:57.769Z" }, + { url = "https://files.pythonhosted.org/packages/3e/03/1846c49ba3b1d5550392a4bbd06d6fb4578e1cd91a803198b5c90f5f7d53/pillow-12.3.0-cp315-cp315-win_amd64.whl", hash = "sha256:fa4ecea169a355be7a3ade2c783e2ed12f0e40d2c5621cda8b3297faf7fbb9f5", size = 7237048, upload-time = "2026-07-01T11:55:59.975Z" }, + { url = "https://files.pythonhosted.org/packages/fb/bb/89f35dcc79610423f9f195504d7def7f0d1416a711541b42867e25fe3412/pillow-12.3.0-cp315-cp315-win_arm64.whl", hash = "sha256:877c3f311ff35410f690861c4409e7ccbf0cd2f878e50628a28e5a0bb689e658", size = 2566006, upload-time = "2026-07-01T11:56:02.143Z" }, + { url = "https://files.pythonhosted.org/packages/30/88/707027ba09942dfa2c28759b5c222d769290a41c6d20ea60ec250801941f/pillow-12.3.0-cp315-cp315t-macosx_10_15_x86_64.whl", hash = "sha256:e9871b1ffbfa9656b60aeee92ed5136a5742696006fa322b29ea3d8da0ecc9cf", size = 5352509, upload-time = "2026-07-01T11:56:04.2Z" }, + { url = "https://files.pythonhosted.org/packages/b0/6d/00352fa25332c2569cd387851f568cc5a4b75a9adbfb37ac4fbce4c02eec/pillow-12.3.0-cp315-cp315t-macosx_11_0_arm64.whl", hash = "sha256:53aa02d20d10c3d814d536aa4e5ac9b84ca0ff5a88377963b085ad6822f93e64", size = 4783167, upload-time = "2026-07-01T11:56:06.631Z" }, + { url = "https://files.pythonhosted.org/packages/13/4f/9e049dfa21af7c22427275720e2490267ba8138120add5c4c574deb69782/pillow-12.3.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:446c34dcc4324b084a53b705127dc15717b22c5e140ae0a3c38349d4efec071e", size = 6329237, upload-time = "2026-07-01T11:56:08.868Z" }, + { url = "https://files.pythonhosted.org/packages/36/16/cf6eeaae8d0fce8dd390a33437cf68c5d5bd73834a2bc6e2f14efda0ab45/pillow-12.3.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cf1845d02ad822a369a49f2bb9345b1614744267682e7a03527dc3bf6eea1777", size = 6997047, upload-time = "2026-07-01T11:56:11.379Z" }, + { url = "https://files.pythonhosted.org/packages/1e/69/dbf769bdd55f48bf5733cac28edc6364ffaa072ec9ba336266e4fe66be55/pillow-12.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl", hash = "sha256:186941b6aef820ad110fb01fb06eb925374dc3a21b17e37ec9a53b250c6fe2d1", size = 6400440, upload-time = "2026-07-01T11:56:13.908Z" }, + { url = "https://files.pythonhosted.org/packages/a0/e1/ffc9cfc2eea0d178da8018e18e959301ad9d6bc9f3edb7181e748a474b97/pillow-12.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl", hash = "sha256:f13c32a3abd6079a66d9526e18dad9b6d280384d49d7c54040cd57b6424041d9", size = 7105895, upload-time = "2026-07-01T11:56:16.575Z" }, + { url = "https://files.pythonhosted.org/packages/18/f0/a5595c1e8c3ae44b9828cb2f0fa8155e5095ef04d6327b8f61cf44a3df85/pillow-12.3.0-cp315-cp315t-win32.whl", hash = "sha256:1657923d2d45afb66526e5b933e5b3052e6bdea196c90d3abb2424e18c77dae8", size = 6474384, upload-time = "2026-07-01T11:56:18.855Z" }, + { url = "https://files.pythonhosted.org/packages/e4/04/62bcd9f844984c5938d3b05264a61d797a29d3e0812341a8204af70bbdee/pillow-12.3.0-cp315-cp315t-win_amd64.whl", hash = "sha256:8cd2f7bdda092d99c9fc2fb7391354f306d01443d22785d0cbfafa2e2c8bb418", size = 7243537, upload-time = "2026-07-01T11:56:21.214Z" }, + { url = "https://files.pythonhosted.org/packages/3d/68/1f3066acedf37673694a7141381d8f811ae97f30d34413d236abe7d489f1/pillow-12.3.0-cp315-cp315t-win_arm64.whl", hash = "sha256:06ff022112bc9cbf83b60f8e028d94ad87b60621706487e65f673de61610ab59", size = 2567491, upload-time = "2026-07-01T11:56:23.506Z" }, + { url = "https://files.pythonhosted.org/packages/75/18/2e8b40223153ccbc60df07f9e8928dc0c76202aa4e55ae9f53962b6510d6/pillow-12.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b3c777e849237620b022f7f297dd67705f9f5cf1685f09f02e46f93e92725468", size = 5302510, upload-time = "2026-07-01T11:56:25.736Z" }, + { url = "https://files.pythonhosted.org/packages/46/3e/51fabf59d5ab801ceab709453d3ab6b180083496579549de4c45ced6528a/pillow-12.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:b343699e8308bdc51978310e1c959c584e7869cc8c40780058c87da7781a1e94", size = 4736058, upload-time = "2026-07-01T11:56:28.041Z" }, + { url = "https://files.pythonhosted.org/packages/bf/20/22fe9384b7949e25fb1293bcfc84fb82590ff4ea6b37c95b24d26d793d86/pillow-12.3.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fbd139c8447d25dd750ab79ee274cc5e1fe80fc56340ab10b18a195e1b6eca3e", size = 5237776, upload-time = "2026-07-01T11:56:30.263Z" }, + { url = "https://files.pythonhosted.org/packages/08/14/f6ba68107680ffa74b39985f3f30884e41318fbc4250caa423c79b4788bb/pillow-12.3.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e7e480451b9fa137494bccd3a7d69adbe8ac65a87d97be61e11f1b1050a5bac3", size = 5860358, upload-time = "2026-07-01T11:56:32.68Z" }, + { url = "https://files.pythonhosted.org/packages/36/54/0169bc772ec491108b62f644f8ecf1fe5d8ae5ebafde2ee2142210166903/pillow-12.3.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:04f01d28a6aaff387bf842a13be313df23ba0597a44f1a976c9feb3c6ff4711a", size = 7231786, upload-time = "2026-07-01T11:56:35.046Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/47/e4501f49c178ae1d9f4a75073fda4204f52647993f075a9db4d14930e0c5/platformdirs-4.10.0.tar.gz", hash = "sha256:31e761a6a0ca04faf7353ea759bdba55652be214725111e5aac52dfa29d4bef7", size = 31224, upload-time = "2026-05-28T03:32:53.587Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/e6/cd9575ac904136b3cbf7aa7ee819ef86eedb7274e46f230e94ea4342e729/platformdirs-4.10.0-py3-none-any.whl", hash = "sha256:fb516cdb12eb0d857d0cd85a7c57cea4d060bee4578d6cf5a14dfdf8cbf8784a", size = 22743, upload-time = "2026-05-28T03:32:52.175Z" }, +] + +[[package]] +name = "plotly" +version = "6.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "narwhals" }, + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/94/fd/d72c292d78aadb93d1a9bcd76bf3c678271040c7cf10abe5788b33040a39/plotly-6.8.0.tar.gz", hash = "sha256:e088e7ddc68d4f70e3d66659224727a45296d71d2b8284181862d3d8f1f0d88f", size = 6915161, upload-time = "2026-06-03T18:33:40.226Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/14/abe5ce876ab5b66ee3c691bf537fcd43d037aea55d447aacf74630a8f31e/plotly-6.8.0-py3-none-any.whl", hash = "sha256:13c5c4a0f70b74cab1913eda0de49b826df5931708eb6f9c3010040614700ec8", size = 9902055, upload-time = "2026-06-03T18:33:34.26Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "properdocs" +version = "1.6.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "ghp-import" }, + { name = "jinja2" }, + { name = "markdown" }, + { name = "markupsafe" }, + { name = "packaging" }, + { name = "pathspec" }, + { name = "platformdirs" }, + { name = "pyyaml" }, + { name = "pyyaml-env-tag" }, + { name = "watchdog" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/29/f27a4e1eddf72ed3db6e47818fbafe6debbf09fd7051f9c1a007239b46ef/properdocs-1.6.7.tar.gz", hash = "sha256:adc7b16e562890af0e098a7e5b02e3a81c20894a87d6a28d345c9300de73c26e", size = 276141, upload-time = "2026-03-20T20:07:48.167Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/4d/fc923f5c85318ee8cc903566dc4e0ebe41b2dfc1d2ecf5546db232397ed6/properdocs-1.6.7-py3-none-any.whl", hash = "sha256:6fa0cfa2e01bf338f684892c8a506cf70ea88ae7f3479c933b6fa20168101cbd", size = 225406, upload-time = "2026-03-20T20:07:46.875Z" }, +] + +[[package]] +name = "protobuf" +version = "7.35.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/01/9ef0afd7999eb9badb3a768b4aedd78c86d4c65cfaf1958ab276199e76b4/protobuf-7.35.1.tar.gz", hash = "sha256:ce115a26fe0c39a2c29973d914d327e516a6455464489fe3cd1e51a1b354f81a", size = 458717, upload-time = "2026-06-11T21:55:40.257Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/03/8aeeb7458d22546bf64b5250ca1daeb5ff757d900e8e4a7476c6f0db843e/protobuf-7.35.1-cp310-abi3-macosx_10_9_universal2.whl", hash = "sha256:24f857477359a85c0c235261b8ba905fd51b2562f4a64ca1df5473f29850cbf6", size = 433226, upload-time = "2026-06-11T21:55:31.719Z" }, + { url = "https://files.pythonhosted.org/packages/37/4b/dfb89eb0e652a1ff073c39a59fb5e3a83cfe9b57a2c83fa6d78270101767/protobuf-7.35.1-cp310-abi3-manylinux2014_aarch64.whl", hash = "sha256:11d6b0ec246892d85215b0a13ca6e0233cf5284b68f0ac02646427f4ff88a799", size = 328847, upload-time = "2026-06-11T21:55:34.035Z" }, + { url = "https://files.pythonhosted.org/packages/0f/58/dc12f2cd484951524af6e3382c785869b9b3fb5e52ee95ae23add53ee8f9/protobuf-7.35.1-cp310-abi3-manylinux2014_s390x.whl", hash = "sha256:b73f9489a4b8b1c9cb1f8ed951c736392592edb24b9d6819f36d2e10b171d5b4", size = 344030, upload-time = "2026-06-11T21:55:34.941Z" }, + { url = "https://files.pythonhosted.org/packages/e4/be/5b3cfe508bfab6761414ff944e3366eb13be4fd71efcd69450f89ba39f43/protobuf-7.35.1-cp310-abi3-manylinux2014_x86_64.whl", hash = "sha256:74758715c53d7158fb76caf4f0cfdacc5329a4b1bb994f865d6cf302d413a1c4", size = 327130, upload-time = "2026-06-11T21:55:35.921Z" }, + { url = "https://files.pythonhosted.org/packages/d8/bc/6d6c7ba8709c85f8f2c390b2b118d6fb08a783676a572271851bf45a7d22/protobuf-7.35.1-cp310-abi3-win32.whl", hash = "sha256:353652e4efd0bca5b5fc2656abf8307ef351f0cf938c9eba09f0e09c20a25c30", size = 428945, upload-time = "2026-06-11T21:55:37.034Z" }, + { url = "https://files.pythonhosted.org/packages/0a/19/8d0cb6f20a1ef7b18f1c8986ad5783f22f84cce39c6ce9a6e645ea55192e/protobuf-7.35.1-cp310-abi3-win_amd64.whl", hash = "sha256:230a75ddfc2de4806e56696ce9640c1cdfdb6543b7cfce98d42a4c0a0e7bdb87", size = 439996, upload-time = "2026-06-11T21:55:38.123Z" }, + { url = "https://files.pythonhosted.org/packages/19/c7/5f7c636ec43e0c545e28d1f1db71990108306f7bdcb89f069ba97e428e7f/protobuf-7.35.1-py3-none-any.whl", hash = "sha256:4bc97768d8fe4ad6743c8a19403e314511ed9f6d13205b687e52421c023ac1b9", size = 171659, upload-time = "2026-06-11T21:55:39.155Z" }, +] + +[[package]] +name = "pyarrow" +version = "24.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/91/13/13e1069b351bdc3881266e11147ffccf687505dbb0ea74036237f5d454a5/pyarrow-24.0.0.tar.gz", hash = "sha256:85fe721a14dd823aca09127acbb06c3ca723efbd436c004f16bca601b04dcc83", size = 1180261, upload-time = "2026-04-21T10:51:25.837Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/c9/a47ab7ece0d86cbe6678418a0fbd1ac4bb493b9184a3891dfa0e7f287ae0/pyarrow-24.0.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b0e131f880cda8d04e076cee175a46fc0e8bc8b65c99c6c09dff6669335fde74", size = 35068898, upload-time = "2026-04-21T10:46:36.599Z" }, + { url = "https://files.pythonhosted.org/packages/d1/bc/8db86617a9a58008acf8913d6fed68ea2a46acb6de928db28d724c891a68/pyarrow-24.0.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:1b2fe7f9a5566401a0ef2571f197eb92358925c1f0c8dba305d6e43ea0871bb3", size = 36679915, upload-time = "2026-04-21T10:46:42.602Z" }, + { url = "https://files.pythonhosted.org/packages/eb/8e/fb178720400ef69db251eb4a9c3ccf4af269bc1feb5055529b8fc87170d1/pyarrow-24.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0b3537c00fb8d384f15ac1e79b6eb6db04a16514c8c1d22e59a9b95c8ba42868", size = 45697931, upload-time = "2026-04-21T10:46:48.403Z" }, + { url = "https://files.pythonhosted.org/packages/f3/27/99c42abe8e21b44f4917f62631f3aa31404882a2c41d8a4cd5c110e13d52/pyarrow-24.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:14e31a3c9e35f1ab6356c6378f6f72830e6d2d5f1791df3774a7b097d18a6a1e", size = 48837449, upload-time = "2026-04-21T10:46:55.329Z" }, + { url = "https://files.pythonhosted.org/packages/36/b6/333749e2666e9032891125bf9c691146e92901bece62030ac1430e2e7c88/pyarrow-24.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7d9a514e73bc42711e6a35aaccf3587c520024fe0a25d830a1a8a27c15f4f57", size = 49395949, upload-time = "2026-04-21T10:47:01.869Z" }, + { url = "https://files.pythonhosted.org/packages/17/25/c5201706a2dd374e8ba6ee3fd7a8c89fb7ffc16eed5217a91fd2bd7f7626/pyarrow-24.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b196eb3f931862af3fa84c2a253514d859c08e0d8fe020e07be12e75a5a9780c", size = 51912986, upload-time = "2026-04-21T10:47:09.872Z" }, + { url = "https://files.pythonhosted.org/packages/f8/d2/4d1bbba65320b21a49678d6fbdc6ff7c649251359fdcfc03568c4136231d/pyarrow-24.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:35405aecb474e683fb36af650618fd5340ee5471fc65a21b36076a18bbc6c981", size = 27255371, upload-time = "2026-04-21T10:47:15.943Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a9/9686d9f07837f91f775e8932659192e02c74f9d8920524b480b85212cc68/pyarrow-24.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:6233c9ed9ab9d1db47de57d9753256d9dcffbf42db341576099f0fd9f6bf4810", size = 34981559, upload-time = "2026-04-21T10:47:22.17Z" }, + { url = "https://files.pythonhosted.org/packages/80/b6/0ddf0e9b6ead3474ab087ae598c76b031fc45532bf6a63f3a553440fb258/pyarrow-24.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:f7616236ec1bc2b15bfdec22a71ab38851c86f8f05ff64f379e1278cf20c634a", size = 36663654, upload-time = "2026-04-21T10:47:28.315Z" }, + { url = "https://files.pythonhosted.org/packages/7c/3b/926382efe8ce27ba729071d3566ade6dfb86bdf112f366000196b2f5780a/pyarrow-24.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:1617043b99bd33e5318ae18eb2919af09c71322ef1ca46566cdafc6e6712fb66", size = 45679394, upload-time = "2026-04-21T10:47:34.821Z" }, + { url = "https://files.pythonhosted.org/packages/b3/7a/829f7d9dfd37c207206081d6dad474d81dde29952401f07f2ba507814818/pyarrow-24.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6165461f55ef6314f026de6638d661188e3455d3ec49834556a0ebbdbace18bb", size = 48863122, upload-time = "2026-04-21T10:47:42.056Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e8/f88ce625fe8babaae64e8db2d417c7653adb3019b08aae85c5ed787dc816/pyarrow-24.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3b13dedfe76a0ad2d1d859b0811b53827a4e9d93a0bcb05cf59333ab4980cc7e", size = 49376032, upload-time = "2026-04-21T10:47:48.967Z" }, + { url = "https://files.pythonhosted.org/packages/36/7a/82c363caa145fff88fb475da50d3bf52bb024f61917be5424c3392eaf878/pyarrow-24.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:25ea65d868eb04015cd18e6df2fbe98f07e5bda2abefabcb88fce39a947716f6", size = 51929490, upload-time = "2026-04-21T10:47:55.981Z" }, + { url = "https://files.pythonhosted.org/packages/66/1c/e3e72c8014ad2743ca64a701652c733cc5cbcee15c0463a32a8c55518d9e/pyarrow-24.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:295f0a7f2e242dabd513737cf076007dc5b2d59237e3eca37b05c0c6446f3826", size = 27355660, upload-time = "2026-04-21T10:48:01.718Z" }, + { url = "https://files.pythonhosted.org/packages/6f/d3/a1abf004482026ddc17f4503db227787fa3cfe41ec5091ff20e4fea55e57/pyarrow-24.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:02b001b3ed4723caa44f6cd1af2d5c86aa2cf9971dacc2ffa55b21237713dfba", size = 34976759, upload-time = "2026-04-21T10:48:07.258Z" }, + { url = "https://files.pythonhosted.org/packages/4f/4a/34f0a36d28a2dd32225301b79daad44e243dc1a2bb77d43b60749be255c4/pyarrow-24.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:04920d6a71aabd08a0417709efce97d45ea8e6fb733d9ca9ecffb13c67839f68", size = 36658471, upload-time = "2026-04-21T10:48:13.347Z" }, + { url = "https://files.pythonhosted.org/packages/1f/78/543b94712ae8bb1a6023bcc1acf1a740fbff8286747c289cd9468fced2a5/pyarrow-24.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:a964266397740257f16f7bb2e4f08a0c81454004beab8ff59dd531b73610e9f2", size = 45675981, upload-time = "2026-04-21T10:48:20.201Z" }, + { url = "https://files.pythonhosted.org/packages/84/9f/8fb7c222b100d314137fa40ec050de56cd8c6d957d1cfff685ce72f15b17/pyarrow-24.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6f066b179d68c413374294bc1735f68475457c933258df594443bb9d88ddc2a0", size = 48859172, upload-time = "2026-04-21T10:48:27.541Z" }, + { url = "https://files.pythonhosted.org/packages/a7/d3/1ea72538e6c8b3b475ed78d1049a2c518e655761ea50fe1171fc855fcab7/pyarrow-24.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1183baeb14c5f587b1ec52831e665718ce632caab84b7cd6b85fd44f96114495", size = 49385733, upload-time = "2026-04-21T10:48:34.7Z" }, + { url = "https://files.pythonhosted.org/packages/c3/be/c3d8b06a1ba35f2260f8e1f771abbee7d5e345c0937aab90675706b1690a/pyarrow-24.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:806f24b4085453c197a5078218d1ee08783ebbba271badd153d1ae22a3ee804f", size = 51934335, upload-time = "2026-04-21T10:48:42.099Z" }, + { url = "https://files.pythonhosted.org/packages/9c/62/89e07a1e7329d2cde3e3c6994ba0839a24977a2beda8be6005ea3d860b99/pyarrow-24.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:e4505fc6583f7b05ab854934896bcac8253b04ac1171a77dfb73efef92076d91", size = 27271748, upload-time = "2026-04-21T10:49:42.532Z" }, + { url = "https://files.pythonhosted.org/packages/17/1a/cff3a59f80b5b1658549d46611b67163f65e0664431c076ad728bf9d5af4/pyarrow-24.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:1a4e45017efbf115032e4475ee876d525e0e36c742214fbe405332480ecd6275", size = 35238554, upload-time = "2026-04-21T10:48:48.526Z" }, + { url = "https://files.pythonhosted.org/packages/a8/99/cce0f42a327bfef2c420fb6078a3eb834826e5d6697bf3009fe11d2ad051/pyarrow-24.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:7986f1fa71cee060ad00758bcc79d3a93bab8559bf978fab9e53472a2e25a17b", size = 36782301, upload-time = "2026-04-21T10:48:55.181Z" }, + { url = "https://files.pythonhosted.org/packages/2a/66/8e560d5ff6793ca29aca213c53eec0dd482dd46cb93b2819e5aab52e4252/pyarrow-24.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:d3e0b61e8efb24ed38898e5cdc5fffa9124be480008d401a1f8071500494ae42", size = 45721929, upload-time = "2026-04-21T10:49:03.676Z" }, + { url = "https://files.pythonhosted.org/packages/27/0c/a26e25505d030716e078d9f16eb74973cbf0b33b672884e9f9da1c83b871/pyarrow-24.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:55a3bc1e3df3b5567b7d27ef551b2283f0c68a5e86f1cd56abc569da4f31335b", size = 48825365, upload-time = "2026-04-21T10:49:11.714Z" }, + { url = "https://files.pythonhosted.org/packages/5f/eb/771f9ecb0c65e73fe9dccdd1717901b9594f08c4515d000c7c62df573811/pyarrow-24.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:641f795b361874ac9da5294f8f443dfdbee355cf2bd9e3b8d97aaac2306b9b37", size = 49451819, upload-time = "2026-04-21T10:49:21.474Z" }, + { url = "https://files.pythonhosted.org/packages/48/da/61ae89a88732f5a785646f3ec6125dbb640fa98a540eb2b9889caa561403/pyarrow-24.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8adc8e6ce5fccf5dc707046ae4914fd537def529709cc0d285d37a7f9cd442ca", size = 51909252, upload-time = "2026-04-21T10:49:31.164Z" }, + { url = "https://files.pythonhosted.org/packages/cb/1a/8dd5cafab7b66573fa91c03d06d213356ad4edd71813aa75e08ce2b3a844/pyarrow-24.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:9b18371ad2f44044b81a8d23bc2d8a9b6a6226dca775e8e16cfee640473d6c5d", size = 27388127, upload-time = "2026-04-21T10:49:37.334Z" }, + { url = "https://files.pythonhosted.org/packages/ad/80/d022a34ff05d2cbedd8ccf841fc1f532ecfa9eb5ed1711b56d0e0ea71fc9/pyarrow-24.0.0-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:1cc9057f0319e26333b357e17f3c2c022f1a83739b48a88b25bfd5fa2dc18838", size = 35007997, upload-time = "2026-04-21T10:49:48.796Z" }, + { url = "https://files.pythonhosted.org/packages/1a/ff/f01485fda6f4e5d441afb8dd5e7681e4db18826c1e271852f5d3957d6a80/pyarrow-24.0.0-cp314-cp314-macosx_12_0_x86_64.whl", hash = "sha256:e6f1278ee4785b6db21229374a1c9e54ec7c549de5d1efc9630b6207de7e170b", size = 36678720, upload-time = "2026-04-21T10:49:55.858Z" }, + { url = "https://files.pythonhosted.org/packages/9e/c2/2d2d5fea814237923f71b36495211f20b43a1576f9a4d6da7e751a64ec6f/pyarrow-24.0.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:adbbedc55506cbdabb830890444fb856bfb0060c46c6f8026c6c2f2cf86ae795", size = 45741852, upload-time = "2026-04-21T10:50:04.624Z" }, + { url = "https://files.pythonhosted.org/packages/8e/3a/28ba9c1c1ebdbb5f1b94dfebb46f207e52e6a554b7fe4132540fde29a3a0/pyarrow-24.0.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:ae8a1145af31d903fa9bb166824d7abe9b4681a000b0159c9fb99c11bc11ad26", size = 48889852, upload-time = "2026-04-21T10:50:12.293Z" }, + { url = "https://files.pythonhosted.org/packages/df/51/4a389acfd31dca009f8fb82d7f510bb4130f2b3a8e18cf00194d0687d8ac/pyarrow-24.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d7027eba1df3b2069e2e8d80f644fa0918b68c46432af3d088ddd390d063ecde", size = 49445207, upload-time = "2026-04-21T10:50:20.677Z" }, + { url = "https://files.pythonhosted.org/packages/19/4b/0bab2b23d2ae901b1b9a03c0efd4b2d070256f8ce3fc43f6e58c167b2081/pyarrow-24.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e56a1ffe9bf7b727432b89104cc0849c21582949dd7bdcb34f17b2001a351a76", size = 51954117, upload-time = "2026-04-21T10:50:29.14Z" }, + { url = "https://files.pythonhosted.org/packages/29/88/f4e9145da0417b3d2c12035a8492b35ff4a3dbc653e614fcfb51d9dedb38/pyarrow-24.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:38be1808cdd068605b787e6ca9119b27eb275a0234e50212c3492331680c3b1e", size = 28001155, upload-time = "2026-04-21T10:51:22.337Z" }, + { url = "https://files.pythonhosted.org/packages/79/4f/46a49a63f43526da895b1a45bbb51d5baf8e4d77159f8528fc3e5490007f/pyarrow-24.0.0-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:418e48ce50a45a6a6c73c454677203a9c75c966cb1e92ca3370959185f197a05", size = 35250387, upload-time = "2026-04-21T10:50:35.552Z" }, + { url = "https://files.pythonhosted.org/packages/a0/da/d5e0cd5ef00796922404806d5f00325cdadc3441ce2c13fe7115f2df9a64/pyarrow-24.0.0-cp314-cp314t-macosx_12_0_x86_64.whl", hash = "sha256:2f16197705a230a78270cdd4ea8a1d57e86b2fdcbc34a1f6aebc72e65c986f9a", size = 36797102, upload-time = "2026-04-21T10:50:42.417Z" }, + { url = "https://files.pythonhosted.org/packages/34/c7/5904145b0a593a05236c882933d439b5720f0a145381179063722fbfc123/pyarrow-24.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:fb24ac194bfc5e86839d7dcd52092ee31e5fe6733fe11f5e3b06ef0812b20072", size = 45745118, upload-time = "2026-04-21T10:50:49.324Z" }, + { url = "https://files.pythonhosted.org/packages/13/d3/cca42fe166d1c6e4d5b80e530b7949104d10e17508a90ae202dac205ce2a/pyarrow-24.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:9700ebd9a51f5895ce75ff4ac4b3c47a7d4b42bc618be8e713e5d56bacf5f931", size = 48844765, upload-time = "2026-04-21T10:50:55.579Z" }, + { url = "https://files.pythonhosted.org/packages/b0/49/942c3b79878ba928324d1e17c274ed84581db8c0a749b24bcf4cbdf15bd3/pyarrow-24.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d8ddd2768da81d3ee08cfea9b597f4abb4e8e1dc8ae7e204b608d23a0d3ab699", size = 49471890, upload-time = "2026-04-21T10:51:02.439Z" }, + { url = "https://files.pythonhosted.org/packages/76/97/ff71431000a75d84135a1ace5ca4ba11726a231a8007bbb320a4c54075d5/pyarrow-24.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:61a3d7eaa97a14768b542f3d284dc6400dd2470d9f080708b13cd46b6ae18136", size = 51932250, upload-time = "2026-04-21T10:51:10.576Z" }, + { url = "https://files.pythonhosted.org/packages/51/be/6f79d55816d5c22557cf27533543d5d70dfe692adfbee4b99f2760674f38/pyarrow-24.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:c91d00057f23b8d353039520dc3a6c09d8608164c692e9f59a175a42b2ae0c19", size = 28131282, upload-time = "2026-04-21T10:51:16.815Z" }, +] + +[[package]] +name = "pycodestyle" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/11/e0/abfd2a0d2efe47670df87f3e3a0e2edda42f055053c85361f19c0e2c1ca8/pycodestyle-2.14.0.tar.gz", hash = "sha256:c4b5b517d278089ff9d0abdec919cd97262a3367449ea1c8b49b91529167b783", size = 39472, upload-time = "2025-06-20T18:49:48.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/27/a58ddaf8c588a3ef080db9d0b7e0b97215cee3a45df74f3a94dbbf5c893a/pycodestyle-2.14.0-py2.py3-none-any.whl", hash = "sha256:dd6bf7cb4ee77f8e016f9c8e74a35ddd9f67e1d5fd4184d86c3b98e07099f42d", size = 31594, upload-time = "2025-06-20T18:49:47.491Z" }, +] + +[[package]] +name = "pycparser" +version = "3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, +] + +[[package]] +name = "pydantic" +version = "2.13.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "annotated-types" }, + { name = "pydantic-core" }, + { name = "typing-extensions" }, + { name = "typing-inspection" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/18/a5/b60d21ac674192f8ab0ba4e9fd860690f9b4a6e51ca5df118733b487d8d6/pydantic-2.13.4.tar.gz", hash = "sha256:c40756b57adaa8b1efeeced5c196f3f3b7c435f90e84ea7f443901bec8099ef6", size = 844775, upload-time = "2026-05-06T13:43:05.343Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/7b/122376b1fd3c62c1ed9dc80c931ace4844b3c55407b6fb2d199377c9736f/pydantic-2.13.4-py3-none-any.whl", hash = "sha256:45a282cde31d808236fd7ea9d919b128653c8b38b393d1c4ab335c62924d9aba", size = 472262, upload-time = "2026-05-06T13:43:02.641Z" }, +] + +[[package]] +name = "pydantic-core" +version = "2.46.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/56/921726b776ace8d8f5db44c4ef961006580d91dc52b803c489fafd1aa249/pydantic_core-2.46.4.tar.gz", hash = "sha256:62f875393d7f270851f20523dd2e29f082bcc82292d66db2b64ea71f64b6e1c1", size = 471464, upload-time = "2026-05-06T13:37:06.98Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/fa/6d7708d2cfc1a832acb6aeb0cd16e801902df8a0f583bb3b4b527fde022e/pydantic_core-2.46.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:0e96592440881c74a213e5ad528e2b24d3d4f940de2766bed9010ab1d9e51594", size = 2111872, upload-time = "2026-05-06T13:40:27.596Z" }, + { url = "https://files.pythonhosted.org/packages/ae/6f/aa064a3e74b5745afbdf250594f38e7ead05e2d651bcb35994b9417a0d4d/pydantic_core-2.46.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0d65b8c354be7fb5f720c3caa8bc940bc2d20ce749c8e06135f07f8ed95dd7c", size = 1948255, upload-time = "2026-05-06T13:39:12.574Z" }, + { url = "https://files.pythonhosted.org/packages/43/3a/41114a9f7569b84b4d84e7a018c57c56347dac30c0d4a872946ec4e36c46/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bfb192b3f4b9e8a89b6277b6ce787564f62cfd272055f6e685726b111dc7826", size = 1972827, upload-time = "2026-05-06T13:38:19.841Z" }, + { url = "https://files.pythonhosted.org/packages/ef/25/1ab42e8048fe551934d9884e8d64daa7e990ad386f310a15981aeb6a5b08/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9037063db01f09b09e237c282b6792bd4da634b5402c4e7f0c61effed7701a04", size = 2041051, upload-time = "2026-05-06T13:38:10.447Z" }, + { url = "https://files.pythonhosted.org/packages/94/c2/1a934597ddf08da410385b3b7aae91956a5a76c635effef456074fad7e88/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc010ab034c8c7452522748bf937df58020d256ccae0874463d1f4d01758af8e", size = 2221314, upload-time = "2026-05-06T13:40:13.089Z" }, + { url = "https://files.pythonhosted.org/packages/02/6d/9e8ad178c9c4df27ad3c8f25d1fe2a7ab0d2ba0559fad4aee5d3d1f16771/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c5dac79fa1614d1e06ca695109c6105923bd9c7d1d6c918d4e637b7e6b32fd3", size = 2285146, upload-time = "2026-05-06T13:38:59.224Z" }, + { url = "https://files.pythonhosted.org/packages/80/50/540cd3aeefc041beb111125c4bff779831a2111fc6b15a9138cda277d32c/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fa868638bf362d3d138ea55829cefb3d5f4b0d7f142234382a15e2485dbec4", size = 2089685, upload-time = "2026-05-06T13:38:17.762Z" }, + { url = "https://files.pythonhosted.org/packages/6b/a4/b440ad35f05f6a38f89fa0f149accb3f0e02be94ca5e15f3c449a61b4bc9/pydantic_core-2.46.4-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:17299feefe090f2caa5b8e37222bb5f663e4935a8bfa6931d4102e5df1a9f398", size = 2115420, upload-time = "2026-05-06T13:37:58.195Z" }, + { url = "https://files.pythonhosted.org/packages/99/61/de4f55db8dfd57bfdfa9a12ec90fe1b57c4f41062f7ca86f08586b3e0ac0/pydantic_core-2.46.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4c63ebc82684aa89d9a3bcbd13d515b3be44250dc68dd3bd81526c1cb31286c3", size = 2165122, upload-time = "2026-05-06T13:37:01.167Z" }, + { url = "https://files.pythonhosted.org/packages/f7/52/7c529d7bdb2d1068bd52f51fe32572c8301f9a4febf1948f10639f1436f5/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:aaa2a54443eff1950ba5ddc6b6ccda0d9c84a364276a62f969bdf2a390650848", size = 2182573, upload-time = "2026-05-06T13:38:45.04Z" }, + { url = "https://files.pythonhosted.org/packages/37/b3/7c40325848ba78247f2812dcf9c7274e38cd801820ca6dd9fe63bcfb0eb4/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:18e5ceec2ab67e6d5f1a9085e5a24c9c4e2ac4545730bfe668680bca05e555f3", size = 2317139, upload-time = "2026-05-06T13:37:15.539Z" }, + { url = "https://files.pythonhosted.org/packages/d9/37/f913f81a657c865b75da6c0dbed79876073c2a43b5bd9edbe8da785e4d49/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a0f62d0a58f4e7da165457e995725421e0064f2255d8eccebc49f41bbc23b109", size = 2360433, upload-time = "2026-05-06T13:37:30.099Z" }, + { url = "https://files.pythonhosted.org/packages/c4/67/6acaa1be2567f9256b056d8477158cac7240813956ce86e49deae8e173b4/pydantic_core-2.46.4-cp311-cp311-win32.whl", hash = "sha256:041bde0a48fd37cf71cab1c9d56d3e8625a3793fef1f7dd232b3ff37e978ecda", size = 1985513, upload-time = "2026-05-06T13:38:15.669Z" }, + { url = "https://files.pythonhosted.org/packages/aa/e6/c505f83dfeda9a2e5c995cfd872949e4d05e12f7feb3dca72f633daefa94/pydantic_core-2.46.4-cp311-cp311-win_amd64.whl", hash = "sha256:6f2eeda33a839975441c86a4119e1383c50b47faf0cbb5176985565c6bb02c33", size = 2071114, upload-time = "2026-05-06T13:40:35.416Z" }, + { url = "https://files.pythonhosted.org/packages/0f/da/7a263a96d965d9d0df5e8de8a475f33495451117035b09acb110288c381f/pydantic_core-2.46.4-cp311-cp311-win_arm64.whl", hash = "sha256:14f4c5d6db102bd796a627bbb3a17b4cf4574b9ae861d8b7c9a9661c6dd3362d", size = 2044298, upload-time = "2026-05-06T13:38:29.754Z" }, + { url = "https://files.pythonhosted.org/packages/ce/8c/af022f0af448d7747c5154288d46b5f2bc5f17366eaa0e23e9aa04d59f3b/pydantic_core-2.46.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3245406455a5d98187ec35530fd772b1d799b26667980872c8d4614991e2c4a2", size = 2106158, upload-time = "2026-05-06T13:38:57.215Z" }, + { url = "https://files.pythonhosted.org/packages/19/95/6195171e385007300f0f5574592e467c568becce2d937a0b6804f218bc49/pydantic_core-2.46.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:962ccbab7b642487b1d8b7df90ef677e03134cf1fd8880bf698649b22a69371f", size = 1951724, upload-time = "2026-05-06T13:37:02.697Z" }, + { url = "https://files.pythonhosted.org/packages/8e/bc/f47d1ff9cbb1620e1b5b697eef06010035735f07820180e74178226b27b3/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8233f2947cf85404441fd7e0085f53b10c93e0ee78611099b5c7237e36aacbf7", size = 1975742, upload-time = "2026-05-06T13:37:09.448Z" }, + { url = "https://files.pythonhosted.org/packages/5b/11/9b9a5b0306345664a2da6410877af6e8082481b5884b3ddd78d47c6013ce/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3a233125ac121aa3ffba9a2b59edfc4a985a76092dc8279586ab4b71390875e7", size = 2052418, upload-time = "2026-05-06T13:37:38.234Z" }, + { url = "https://files.pythonhosted.org/packages/f1/b7/a65fec226f5d78fc39f4a13c4cc0c768c22b113438f60c14adc9d2865038/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b712b53160b79a5850310b912a5ef8e57e56947c8ad690c227f5c9d7e561712", size = 2232274, upload-time = "2026-05-06T13:38:27.753Z" }, + { url = "https://files.pythonhosted.org/packages/68/f0/92039db98b907ef49269a8271f67db9cb78ae2fc68062ef7e4e77adb5f61/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9401557acd873c3a7f3eb9383edef8ac4968f9510e340f4808d427e75667e7b4", size = 2309940, upload-time = "2026-05-06T13:38:05.353Z" }, + { url = "https://files.pythonhosted.org/packages/5f/97/2aab507d3d00ca626e8e57c1eac6a79e4e5fbcc63eb99733ff55d1717f65/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:926c9541b14b12b1681dca8a0b75feb510b06c6341b70a8e500c2fdcff837cce", size = 2094516, upload-time = "2026-05-06T13:39:10.577Z" }, + { url = "https://files.pythonhosted.org/packages/22/37/a8aca44d40d737dde2bc05b3c6c07dff0de07ce6f82e9f3167aeaf4d5dea/pydantic_core-2.46.4-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:56cb4851bcaf3d117eddcef4fe66afd750a50274b0da8e22be256d10e5611987", size = 2136854, upload-time = "2026-05-06T13:40:22.59Z" }, + { url = "https://files.pythonhosted.org/packages/24/99/fcef1b79238c06a8cbec70819ac722ba76e02bc8ada9b0fd66eba40da01b/pydantic_core-2.46.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c68fcd102d71ea85c5b2dfac3f4f8476eff42a9e078fd5faefff6d145063536b", size = 2180306, upload-time = "2026-05-06T13:40:10.666Z" }, + { url = "https://files.pythonhosted.org/packages/ae/6c/fc44000918855b42779d007ae63b0532794739027b2f417321cddbc44f6a/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b2f69dec1725e79a012d920df1707de5caf7ed5e08f3be4435e25803efc47458", size = 2190044, upload-time = "2026-05-06T13:40:43.231Z" }, + { url = "https://files.pythonhosted.org/packages/6b/65/d9cadc9f1920d7a127ad2edba16c1db7916e59719285cd6c94600b0080ba/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:8d0820e8192167f80d88d64038e609c31452eeca865b4e1d9950a27a4609b00b", size = 2329133, upload-time = "2026-05-06T13:39:57.365Z" }, + { url = "https://files.pythonhosted.org/packages/d0/cf/c873d91679f3a30bcf5e7ac280ce5573483e72295307685120d0d5ad3416/pydantic_core-2.46.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fbdb89b3e1c94a30cc5edfce477c6e6a5dc4d8f84665b455c27582f211a1c72c", size = 2374464, upload-time = "2026-05-06T13:38:06.976Z" }, + { url = "https://files.pythonhosted.org/packages/47/bd/6f2fc8188f31bf10590f1e98e7b306336161fac930a8c514cd7bd828c7dc/pydantic_core-2.46.4-cp312-cp312-win32.whl", hash = "sha256:9aa768456404a8bf48a4406685ac2bec8e72b62c69313734fa3b73cf33b3a894", size = 1974823, upload-time = "2026-05-06T13:40:47.985Z" }, + { url = "https://files.pythonhosted.org/packages/40/8c/985c1d41ea1107c2534abd9870e4ed5c8e7669b5c308297835c001e7a1c4/pydantic_core-2.46.4-cp312-cp312-win_amd64.whl", hash = "sha256:e9c26f834c65f5752f3f06cb08cb86a913ceb7274d0db6e267808a708b46bc89", size = 2072919, upload-time = "2026-05-06T13:39:21.153Z" }, + { url = "https://files.pythonhosted.org/packages/c4/ba/f463d006e0c47373ca7ec5e1a261c59dc01ef4d62b2657af925fb0deee3a/pydantic_core-2.46.4-cp312-cp312-win_arm64.whl", hash = "sha256:4fc73cb559bdb54b1134a706a2802a4cddd27a0633f5abb7e53056268751ac6a", size = 2027604, upload-time = "2026-05-06T13:39:03.753Z" }, + { url = "https://files.pythonhosted.org/packages/51/a2/5d30b469c5267a17b39dec53208222f76a8d351dfac4af661888c5aee77d/pydantic_core-2.46.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:5d5902252db0d3cedf8d4a1bc68f70eeb430f7e4c7104c8c476753519b423008", size = 2106306, upload-time = "2026-05-06T13:37:48.029Z" }, + { url = "https://files.pythonhosted.org/packages/c1/81/4fa520eaffa8bd7d1525e644cd6d39e7d60b1592bc5b516693c7340b50f1/pydantic_core-2.46.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c94f0688e7b8d0a67abf40e57a7eaaecd17cc9586706a31b76c031f63df052b4", size = 1951906, upload-time = "2026-05-06T13:37:17.012Z" }, + { url = "https://files.pythonhosted.org/packages/03/d5/fd02da45b659668b05923b17ba3a0100a0a3d5541e3bd8fcc4ecb711309e/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f027324c56cd5406ca49c124b0db10e56c69064fec039acc571c29020cc87c76", size = 1976802, upload-time = "2026-05-06T13:37:35.113Z" }, + { url = "https://files.pythonhosted.org/packages/21/f2/95727e1368be3d3ed485eaab7adbd7dda408f33f7a36e8b48e0144002b91/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e739fee756ba1010f8bcccb534252e85a35fe45ae92c295a06059ce58b74ccd3", size = 2052446, upload-time = "2026-05-06T13:37:12.313Z" }, + { url = "https://files.pythonhosted.org/packages/9c/86/5d99feea3f77c7234b8718075b23db11532773c1a0dbd9b9490215dc2eeb/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d56801be94b86a9da183e5f3766e6310752b99ff647e38b09a9500d88e46e76", size = 2232757, upload-time = "2026-05-06T13:39:01.149Z" }, + { url = "https://files.pythonhosted.org/packages/d2/3a/508ac615935ef7588cf6d9e9b91309fdc2da751af865e02a9098de88258c/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2412e734dcb48da14d4e4006b82b46b74f2518b8a26ee7e58c6844a6cd6d03c4", size = 2309275, upload-time = "2026-05-06T13:37:41.406Z" }, + { url = "https://files.pythonhosted.org/packages/07/f8/41db9de19d7987d6b04715a02b3b40aea467000275d9d758ffaa31af7d50/pydantic_core-2.46.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9551187363ffc0de2a00b2e47c25aeaeb1020b69b668762966df15fc5659dd5a", size = 2094467, upload-time = "2026-05-06T13:39:18.847Z" }, + { url = "https://files.pythonhosted.org/packages/2c/e2/f35033184cb11d0052daf4416e8e10a502ea2ac006fc4f459aee872727d1/pydantic_core-2.46.4-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:0186750b482eefa11d7f435892b09c5c606193ef3375bcf94aa00ae6bfb66262", size = 2134417, upload-time = "2026-05-06T13:40:17.944Z" }, + { url = "https://files.pythonhosted.org/packages/7e/7b/6ceeb1cc90e193862f444ebe373d8fdf613f0a82572dde03fb10734c6c71/pydantic_core-2.46.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5855698a4856556d86e8e6cd8434bc3ac0314ee8e12089ae0e143f64c6256e4e", size = 2179782, upload-time = "2026-05-06T13:40:32.618Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f2/c8d7773ede6af08036423a00ae0ceffce266c3c52a096c435d68c896083f/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:cbaf13819775b7f769bf4a1f066cb6df7a28d4480081a589828ef190226881cd", size = 2188782, upload-time = "2026-05-06T13:36:51.018Z" }, + { url = "https://files.pythonhosted.org/packages/59/31/0c864784e31f09f05cdd87606f08923b9c9e7f6e51dd27f20f62f975ce9f/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:633147d34cf4550417f12e2b1a0383973bdf5cdfde212cb09e9a581cf10820be", size = 2328334, upload-time = "2026-05-06T13:40:37.764Z" }, + { url = "https://files.pythonhosted.org/packages/c2/eb/4f6c8a41efa30baa755590f4141abf3a8c370fab610915733e74134a7270/pydantic_core-2.46.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:82cf5301172168103724d49a1444d3378cb20cdee30b116a1bd6031236298a5d", size = 2372986, upload-time = "2026-05-06T13:39:34.152Z" }, + { url = "https://files.pythonhosted.org/packages/5b/24/b375a480d53113860c299764bfe9f349a3dc9108b3adc0d7f0d786492ebf/pydantic_core-2.46.4-cp313-cp313-win32.whl", hash = "sha256:9fa8ae11da9e2b3126c6426f147e0fba88d96d65921799bb30c6abd1cb2c97fb", size = 1973693, upload-time = "2026-05-06T13:37:55.072Z" }, + { url = "https://files.pythonhosted.org/packages/7e/e8/cff247591966f2d22ec8c003cd7587e27b7ba7b81ab2fb888e3ab75dc285/pydantic_core-2.46.4-cp313-cp313-win_amd64.whl", hash = "sha256:6b3ace8194b0e5204818c92802dcdca7fc6d88aabbb799d7c795540d9cd6d292", size = 2071819, upload-time = "2026-05-06T13:38:49.139Z" }, + { url = "https://files.pythonhosted.org/packages/c6/1a/f4aee670d5670e9e148e0c82c7db98d780be566c6e6a97ee8035528ca0b3/pydantic_core-2.46.4-cp313-cp313-win_arm64.whl", hash = "sha256:184c081504d17f1c1066e430e117142b2c77d9448a97f7b65c6ac9fd9aee238d", size = 2027411, upload-time = "2026-05-06T13:40:45.796Z" }, + { url = "https://files.pythonhosted.org/packages/8d/74/228a26ddad29c6672b805d9fd78e8d251cd04004fa7eed0e622096cd0250/pydantic_core-2.46.4-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:428e04521a40150c85216fc8b85e8d39fece235a9cf5e383761238c7fa9b96fb", size = 2102079, upload-time = "2026-05-06T13:38:41.019Z" }, + { url = "https://files.pythonhosted.org/packages/ad/1f/8970b150a4b4365623ae00fc88603491f763c627311ae8031e3111356d6e/pydantic_core-2.46.4-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:23ace664830ee0bfe014a0c7bc248b1f7f25ed7ad103852c317624a1083af462", size = 1952179, upload-time = "2026-05-06T13:36:59.812Z" }, + { url = "https://files.pythonhosted.org/packages/95/30/5211a831ae054928054b2f79731661087a2bc5c01e825c672b3a4a8f1b3e/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce5c1d2a8b27468f433ca974829c44060b8097eedc39933e3c206a90ee49c4a9", size = 1978926, upload-time = "2026-05-06T13:37:39.933Z" }, + { url = "https://files.pythonhosted.org/packages/57/e9/689668733b1eb67adeef047db3c2e8788fcf65a7fd9c9e2b46b7744fe245/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7283d57845ecf5a163403eb0702dfc220cc4fbdd18919cb5ccea4f95ee1cdab4", size = 2046785, upload-time = "2026-05-06T13:38:01.995Z" }, + { url = "https://files.pythonhosted.org/packages/60/d9/6715260422ff50a2109878fd24d948a6c3446bb2664f34ee78cd972b3acd/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8daafc69c93ee8a0204506a3b6b30f586ef54028f52aeeeb5c4cfc5184fd5914", size = 2228733, upload-time = "2026-05-06T13:40:50.371Z" }, + { url = "https://files.pythonhosted.org/packages/18/ae/fdb2f64316afca925640f8e70bb1a564b0ec2721c1389e25b8eb4bf9a299/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd2213145bcc2ba85884d0ac63d222fece9209678f77b9b4d76f054c561adb28", size = 2307534, upload-time = "2026-05-06T13:37:21.531Z" }, + { url = "https://files.pythonhosted.org/packages/89/1d/8eff589b45bb8190a9d12c49cfad0f176a5cbd1534908a6b5125e2886239/pydantic_core-2.46.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a5f930472650a82629163023e630d160863fce524c616f4e5186e5de9d9a49b", size = 2099732, upload-time = "2026-05-06T13:39:31.942Z" }, + { url = "https://files.pythonhosted.org/packages/06/d5/ee5a3366637fee41dee51a1fc91562dcf12ddbc68fda34e6b253da2324bb/pydantic_core-2.46.4-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:c1b3f518abeca3aa13c712fd202306e145abf59a18b094a6bafb2d2bbf59192c", size = 2129627, upload-time = "2026-05-06T13:37:25.033Z" }, + { url = "https://files.pythonhosted.org/packages/94/33/2414be571d2c6a6c4d08be21f9292b6d3fdb08949a97b6dfe985017821db/pydantic_core-2.46.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a7dd0b3ee80d90150e3495a3a13ac34dbcbfd4f012996a6a1d8900e91b5c0fb", size = 2179141, upload-time = "2026-05-06T13:37:14.046Z" }, + { url = "https://files.pythonhosted.org/packages/7b/79/7daa95be995be0eecc4cf75064cb33f9bbbfe3fe0158caf2f0d4a996a5c7/pydantic_core-2.46.4-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:3fb702cd90b0446a3a1c5e470bfa0dd23c0233b676a9099ddcc964fa6ca13898", size = 2184325, upload-time = "2026-05-06T13:36:53.615Z" }, + { url = "https://files.pythonhosted.org/packages/9f/cb/d0a382f5c0de8a222dc61c65348e0ce831b1f68e0a018450d31c2cace3a5/pydantic_core-2.46.4-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:b8458003118a712e66286df6a707db01c52c0f52f7db8e4a38f0da1d3b94fc4e", size = 2323990, upload-time = "2026-05-06T13:40:29.971Z" }, + { url = "https://files.pythonhosted.org/packages/05/db/d9ba624cc4a5aced1598e88c04fdbd8310c8a69b9d38b9a3d39ce3a61ed7/pydantic_core-2.46.4-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:372429a130e469c9cd698925ce5fc50940b7a1336b0d82038e63d5bbc4edc519", size = 2369978, upload-time = "2026-05-06T13:37:23.027Z" }, + { url = "https://files.pythonhosted.org/packages/f2/20/d15df15ba918c423461905802bfd2981c3af0bfa0e40d05e13edbfa48bc3/pydantic_core-2.46.4-cp314-cp314-win32.whl", hash = "sha256:85bb3611ff1802f3ee7fdd7dbff26b56f343fb432d57a4728fdd49b6ef35e2f4", size = 1966354, upload-time = "2026-05-06T13:38:03.499Z" }, + { url = "https://files.pythonhosted.org/packages/fc/b6/6b8de4c0a7d7ab3004c439c80c5c1e0a3e8d78bbae19379b01960383d9e5/pydantic_core-2.46.4-cp314-cp314-win_amd64.whl", hash = "sha256:811ff8e9c313ab425368bcbb36e5c4ebd7108c2bbf4e4089cfbb0b01eff63fac", size = 2072238, upload-time = "2026-05-06T13:39:40.807Z" }, + { url = "https://files.pythonhosted.org/packages/32/36/51eb763beec1f4cf59b1db243a7dcc39cbb41230f050a09b9d69faaf0a48/pydantic_core-2.46.4-cp314-cp314-win_arm64.whl", hash = "sha256:bfec22eab3c8cc2ceec0248aec886624116dc079afa027ecc8ad4a7e62010f8a", size = 2018251, upload-time = "2026-05-06T13:37:26.72Z" }, + { url = "https://files.pythonhosted.org/packages/e8/91/855af51d625b23aa987116a19e231d2aaef9c4a415273ddc189b79a45fee/pydantic_core-2.46.4-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:af8244b2bef6aaad6d92cda81372de7f8c8d36c9f0c3ea36e827c60e7d9467a0", size = 2099593, upload-time = "2026-05-06T13:39:47.682Z" }, + { url = "https://files.pythonhosted.org/packages/fb/1b/8784a54c65edb5f49f0a14d6977cf1b209bba85a4c77445b255c2de58ab3/pydantic_core-2.46.4-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5a4330cdbc57162e4b3aa303f588ba752257694c9c9be3e7ebb11b4aca659b5d", size = 1935226, upload-time = "2026-05-06T13:40:40.428Z" }, + { url = "https://files.pythonhosted.org/packages/e8/e7/1955d28d1afc56dd4b3ad7cc0cf39df1b9852964cf16e5d13912756d6d6b/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29c61fc04a3d840155ff08e475a04809278972fe6aef51e2720554e96367e34b", size = 1974605, upload-time = "2026-05-06T13:37:32.029Z" }, + { url = "https://files.pythonhosted.org/packages/93/e2/3fedbf0ba7a22850e6e9fd78117f1c0f10f950182344d8a6c535d468fdd8/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c50f2528cf200c5eed56faf3f4e22fcd5f38c157a8b78576e6ba3168ec35f000", size = 2030777, upload-time = "2026-05-06T13:38:55.239Z" }, + { url = "https://files.pythonhosted.org/packages/f8/61/46be275fcaaba0b4f5b9669dd852267ce1ff616592dccf7a7845588df091/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0cbe8b01f948de4286c74cdd6c667aceb38f5c1e26f0693b3983d9d74887c65e", size = 2236641, upload-time = "2026-05-06T13:37:08.096Z" }, + { url = "https://files.pythonhosted.org/packages/60/db/12e93e46a8bac9988be3c016860f83293daea8c716c029c9ace279036f2f/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:617d7e2ca7dcb8c5cf6bcb8c59b8832c94b36196bbf1cbd1bfb56ed341905edd", size = 2286404, upload-time = "2026-05-06T13:40:20.221Z" }, + { url = "https://files.pythonhosted.org/packages/e2/4a/4d8b19008f38d31c53b8219cfedc2e3d5de5fe99d90076b7e767de29274f/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7027560ee92211647d0d34e3f7cd6f50da56399d26a9c8ad0da286d3869a53f3", size = 2109219, upload-time = "2026-05-06T13:38:12.153Z" }, + { url = "https://files.pythonhosted.org/packages/88/70/3cbc40978fefb7bb09c6708d40d4ad1a5d70fd7213c3d17f971de868ec1f/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:f99626688942fb746e545232e7726926f3be91b5975f8b55327665fafda991c7", size = 2110594, upload-time = "2026-05-06T13:40:02.971Z" }, + { url = "https://files.pythonhosted.org/packages/9d/20/b8d36736216e29491125531685b2f9e61aa5b4b2599893f8268551da3338/pydantic_core-2.46.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fc3e9034a63de20e15e8ade85358bc6efc614008cab72898b4b4952bea0509ff", size = 2159542, upload-time = "2026-05-06T13:39:27.506Z" }, + { url = "https://files.pythonhosted.org/packages/1d/a2/367df868eb584dacf6bf82a389272406d7178e301c4ac82545ab98bc2dd9/pydantic_core-2.46.4-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:97e7cf2be5c77b7d1a9713a05605d49460d02c6078d38d8bef3cbe323c548424", size = 2168146, upload-time = "2026-05-06T13:38:31.93Z" }, + { url = "https://files.pythonhosted.org/packages/c1/b8/4460f77f7e201893f649a29ab355dddd3beee8a97bcb1a320db414f9a06e/pydantic_core-2.46.4-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:3bf92c5d0e00fefaab325a4d27828fe6b6e2a21848686b5b60d2d9eeb09d76c6", size = 2306309, upload-time = "2026-05-06T13:37:44.717Z" }, + { url = "https://files.pythonhosted.org/packages/64/c4/be2639293acd87dc8ddbcec41a73cee9b2ebf996fe6d892a1a74e88ad3f7/pydantic_core-2.46.4-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:3ecbc122d18468d06ca279dc26a8c2e2d5acb10943bb35e36ae92096dc3b5565", size = 2369736, upload-time = "2026-05-06T13:37:05.645Z" }, + { url = "https://files.pythonhosted.org/packages/30/a6/9f9f380dbb301f67023bf8f707aaa75daadf84f7152d95c410fd7e81d994/pydantic_core-2.46.4-cp314-cp314t-win32.whl", hash = "sha256:e846ae7835bf0703ae43f534ab79a867146dadd59dc9ca5c8b53d5c8f7c9ef02", size = 1955575, upload-time = "2026-05-06T13:38:51.116Z" }, + { url = "https://files.pythonhosted.org/packages/40/1f/f1eb9eb350e795d1af8586289746f5c5677d16043040d63710e22abc43c9/pydantic_core-2.46.4-cp314-cp314t-win_amd64.whl", hash = "sha256:2108ba5c1c1eca18030634489dc544844144ee36357f2f9f780b93e7ddbb44b5", size = 2051624, upload-time = "2026-05-06T13:38:21.672Z" }, + { url = "https://files.pythonhosted.org/packages/f6/d2/42dd53d0a85c27606f316d3aa5d2869c4e8470a5ed6dec30e4a1abe19192/pydantic_core-2.46.4-cp314-cp314t-win_arm64.whl", hash = "sha256:4fcbe087dbc2068af7eda3aa87634eba216dbda64d1ae73c8684b621d33f6596", size = 2017325, upload-time = "2026-05-06T13:40:52.723Z" }, + { url = "https://files.pythonhosted.org/packages/ee/a4/73995fd4ebbb46ba0ee51e6fa049b8f02c40daebb762208feda8a6b7894d/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:14d4edf427bdcf950a8a02d7cb44a08614388dd6e1bdcbf4f67504fa7887da9c", size = 2111589, upload-time = "2026-05-06T13:37:10.817Z" }, + { url = "https://files.pythonhosted.org/packages/fb/7f/f37d3a5e8bfcc2e403f5c57a730f2d815693fb42119e8ea48b3789335af1/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:0ce40cd7b21210e99342afafbd4d0f76d784eb5b1d60f3bdc566be4983c6c73b", size = 1944552, upload-time = "2026-05-06T13:36:56.717Z" }, + { url = "https://files.pythonhosted.org/packages/15/3c/d7eb777b3ff43e8433a4efb39a17aa8fd98a4ee8561a24a67ef5db07b2d6/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90884113d8b48f760e9587002789ddd741e76ab9f89518cd1e43b1f1a52ec44b", size = 1982984, upload-time = "2026-05-06T13:39:06.207Z" }, + { url = "https://files.pythonhosted.org/packages/63/87/70b9f40170a81afd55ca26c9b2acb25c20d64bcfbf888fafecb3ba077d4c/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66ce7632c22d837c95301830e111ad0128a32b8207533b60896a96c4915192ea", size = 2138417, upload-time = "2026-05-06T13:39:45.476Z" }, + { url = "https://files.pythonhosted.org/packages/9d/1d/8987ad40f65ae1432753072f214fb5c74fe47ffbd0698bb9cbbb585664f8/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:1d8ba486450b14f3b1d63bc521d410ec7565e52f887b9fb671791886436a42f7", size = 2095527, upload-time = "2026-05-06T13:39:52.283Z" }, + { url = "https://files.pythonhosted.org/packages/64/d3/84c282a7eee1d3ac4c0377546ef5a1ea436ce26840d9ac3b7ed54a377507/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:3009f12e4e90b7f88b4f9adb1b0c4a3d58fe7820f3238c190047209d148026df", size = 1936024, upload-time = "2026-05-06T13:40:15.671Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ca/eac61596cdeb4d7e174d3dc0bd8a6238f14f75f97a24e7b7db4c7e7340a0/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad785e92e6dc634c21555edc8bd6b64957ab844541bcb96a1366c202951ae526", size = 1990696, upload-time = "2026-05-06T13:38:34.717Z" }, + { url = "https://files.pythonhosted.org/packages/fa/c3/7c8b240552251faf6b3a957db200fcfbbcec36763c050428b601e0c9b83b/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00c603d540afdd6b80eb39f078f33ebd46211f02f33e34a32d9f053bba711de0", size = 2147590, upload-time = "2026-05-06T13:39:29.883Z" }, + { url = "https://files.pythonhosted.org/packages/11/cb/428de0385b6c8d44b716feba566abfacfbd23ee3c4439faa789a1456242f/pydantic_core-2.46.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:0c563b08bca408dc7f65f700633d8442fffb2421fc47b8101377e9fd65051ff0", size = 2112782, upload-time = "2026-05-06T13:37:04.016Z" }, + { url = "https://files.pythonhosted.org/packages/0b/b5/6a17bdadd0fc1f170adfd05a20d37c832f52b117b4d9131da1f41bb097ce/pydantic_core-2.46.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:db06ffe51636ffe9ca531fe9023dd64bdd794be8754cb5df57c5498ae5b518a7", size = 1952146, upload-time = "2026-05-06T13:39:43.092Z" }, + { url = "https://files.pythonhosted.org/packages/2a/dc/03734d80e362cd43ef65428e9de77c730ce7f2f11c60d2b1e1b39f0fbf99/pydantic_core-2.46.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:133878133d271ade3d41d1bfb2a45ec38dbdbda40bc065921c6b04e4630127e2", size = 2134492, upload-time = "2026-05-06T13:36:58.124Z" }, + { url = "https://files.pythonhosted.org/packages/de/df/5e5ffc085ed07cc22d298134d3d911c63e91f6a0eb91fe646750a3209910/pydantic_core-2.46.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9bc519fbf2b7578398853d815009ae5e4d4603d12f4e3f91da8c06852d3da3e9", size = 2156604, upload-time = "2026-05-06T13:37:49.88Z" }, + { url = "https://files.pythonhosted.org/packages/81/44/6e112a4253e56f5705467cbab7ab5e91ee7398ba3d56d358635958893d3e/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:c7a7bd4e39e8e4c12c39cd480356842b6a8a06e41b23a55a5e3e191718838ddf", size = 2183828, upload-time = "2026-05-06T13:37:43.053Z" }, + { url = "https://files.pythonhosted.org/packages/ac/ad/5565071e937d8e752842ac241463944c9eb14c87e2d269f2658a5bd05e98/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:d396ec2b979760aaf3218e76c24e65bd0aca24983298653b3a9d7a45f9e47b30", size = 2310000, upload-time = "2026-05-06T13:37:56.694Z" }, + { url = "https://files.pythonhosted.org/packages/4f/c3/66883a5cec183e7fba4d024b4cbbe61851a63750ef606b0afecc46d1f2bf/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:86e1a4418c6cd97d60c95c71164158eaf7324fae7b0923264016baa993eba6fc", size = 2361286, upload-time = "2026-05-06T13:40:05.667Z" }, + { url = "https://files.pythonhosted.org/packages/4b/2d/69abac8f838090bbecd5df894befb2c2619e7996a98ddb949db9f3b93225/pydantic_core-2.46.4-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:d51026d73fcfd93610abc7b27789c26b313920fcfb20e27462d74a7f8b06e983", size = 2193071, upload-time = "2026-05-06T13:38:08.682Z" }, +] + +[[package]] +name = "pydantic-settings" +version = "2.14.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic" }, + { name = "python-dotenv" }, + { name = "typing-inspection" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5c/b5/8f48e906c3e0205276e8bd8cb7512217a87b2685304d64be27cad5b3019f/pydantic_settings-2.14.2.tar.gz", hash = "sha256:c19dd64b19097f1de80184f0cc7b0272a13ae6e170cbf240a3e27e381ed14a5f", size = 237700, upload-time = "2026-06-19T13:44:56.324Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/c1/6e422f34e569cf8e18df68d1939c81c099d2b61e4f7d9621c8a77560799c/pydantic_settings-2.14.2-py3-none-any.whl", hash = "sha256:a20c97b37910b6550d5ea50fbcc2d4187defe58cd57070b73863d069419c9440", size = 61715, upload-time = "2026-06-19T13:44:55.02Z" }, +] + +[[package]] +name = "pydeck" +version = "0.9.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2" }, + { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/df/4e9e7f20f8034a37c6571c93809f6d22388c39978c98d174d656c1a18fd2/pydeck-0.9.2.tar.gz", hash = "sha256:c10d9035e81ead6385264cac8d19402471f6866a15ca1f7df1400f52142bcf87", size = 5849672, upload-time = "2026-04-16T18:30:30.089Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/24/b30ee7d723100fd822de1bb4c0adea62f3419884a75a536f35f355d1e7c0/pydeck-0.9.2-py2.py3-none-any.whl", hash = "sha256:8213dfeacc5f6bfe6825f61c8ee34e3850e8a31fc43924379ec98edb34a75b25", size = 11305615, upload-time = "2026-04-16T18:30:28.133Z" }, +] + +[[package]] +name = "pyflakes" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/45/dc/fd034dc20b4b264b3d015808458391acbf9df40b1e54750ef175d39180b1/pyflakes-3.4.0.tar.gz", hash = "sha256:b24f96fafb7d2ab0ec5075b7350b3d2d2218eab42003821c06344973d3ea2f58", size = 64669, upload-time = "2025-06-20T18:45:27.834Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/2f/81d580a0fb83baeb066698975cb14a618bdbed7720678566f1b046a95fe8/pyflakes-3.4.0-py2.py3-none-any.whl", hash = "sha256:f742a7dbd0d9cb9ea41e9a24a918996e8170c799fa528688d40dd582c8265f4f", size = 63551, upload-time = "2025-06-20T18:45:26.937Z" }, +] + +[[package]] +name = "pygments" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, +] + +[[package]] +name = "pyjwt" +version = "2.13.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3b/81/58d0ac84e1ef3a3843791d6954d94c0b33d526c75eeb1efbce9d0a4c4077/pyjwt-2.13.0.tar.gz", hash = "sha256:41571c89ca91598c79e8ef18a2d07367d4810fbbd6f637794879baf1b7703423", size = 107515, upload-time = "2026-05-21T19:54:36.618Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/5e/ecf12fdb62546d64385c158514e9b2b671f7832108ef2ecd2020ce0af2d1/pyjwt-2.13.0-py3-none-any.whl", hash = "sha256:66adcc2aff09b3f1bbd95fc1e1577df8ac8723c978552fd43304c8a290ac5728", size = 31274, upload-time = "2026-05-21T19:54:35.362Z" }, +] + +[package.optional-dependencies] +crypto = [ + { name = "cryptography" }, +] + +[[package]] +name = "pymdown-extensions" +version = "11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown" }, + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/47/67/f1e79672a5f91985577c7984c9709ca110e4fd37fe7fd167b60422e6ccc2/pymdown_extensions-11.0.tar.gz", hash = "sha256:8269cef0247f9e2d0a62fcea10860aba05c1cbab5470fd4b63230b96434dc589", size = 857049, upload-time = "2026-06-23T02:27:45.146Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/af/b6/1ae53367e28b9cffa3be7574e13fbe4589694272fd47710fbdbafd3d63c6/pymdown_extensions-11.0-py3-none-any.whl", hash = "sha256:fbc4acb641814fa9d17521bbd21a5240ef739a662f11c06330c4b78c93e954d6", size = 269415, upload-time = "2026-06-23T02:27:43.826Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/91/9c6ee907786a473bf81c5f53cf703ba0957b23ab84c264080fb5a450416f/pyparsing-3.3.2.tar.gz", hash = "sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc", size = 6851574, upload-time = "2026-01-21T03:57:59.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, +] + +[[package]] +name = "pytest" +version = "9.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e4/47/b9efed96c114afcfa3c9d3fe98a76a1d14c74a9e266d397cf6eb64be5e01/pytest-9.1.1.tar.gz", hash = "sha256:1088fbde8f2b49d95a549a195707afa7a76a3ce9bcadc26b6d71f0ffda5fe313", size = 1636369, upload-time = "2026-06-19T10:58:32.857Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/25/1de2678b631f5a49215c6c96fff41ba892b0a34df68d6d80292b1b48aa7f/pytest-9.1.1-py3-none-any.whl", hash = "sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c", size = 386536, upload-time = "2026-06-19T10:58:31.347Z" }, +] + +[[package]] +name = "pytest-asyncio" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytest" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/43/7c/d36d04db312ecf4298932ef77e6e4a9e8ad017906e24e34f0b0c361a2473/pytest_asyncio-1.4.0.tar.gz", hash = "sha256:c6c0d2259945122819f171a32ecea2c349ead889ee28176caaf492143424be42", size = 58514, upload-time = "2026-05-26T09:56:04.083Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/03/e2/08a497ef684b88559c9cc5f4ad53a37e7b99e727094a86d6ea32536d5d3c/pytest_asyncio-1.4.0-py3-none-any.whl", hash = "sha256:933ca923a23075a87fb7070c0ec272a6848489824d887c85c812670932835aa1", size = 16930, upload-time = "2026-05-26T09:56:02.576Z" }, +] + +[[package]] +name = "pytest-cov" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coverage", extra = ["toml"] }, + { name = "pluggy" }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/51/a849f96e117386044471c8ec2bd6cfebacda285da9525c9106aeb28da671/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2", size = 55592, upload-time = "2026-03-21T20:11:16.284Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/7a/d968e294073affff457b041c2be9868a40c1c71f4a35fcc1e45e5493067b/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678", size = 22876, upload-time = "2026-03-21T20:11:14.438Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "python-dotenv" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" }, +] + +[[package]] +name = "python-multipart" +version = "0.0.32" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5b/42/55c32bb9b12693c092ad250a0e82edb5b31ddeda6eb772de5f308b3804ad/python_multipart-0.0.32.tar.gz", hash = "sha256:be54b7f3fa167bb83e4fcd936b887b708f4e57fe75911c02aebf53efaf8d938e", size = 46881, upload-time = "2026-06-04T16:18:58.647Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/04/e8135ebd1ad02c56ec633277529b2602ff99ff634be76cdba5744cf554fd/python_multipart-0.0.32-py3-none-any.whl", hash = "sha256:ff6d3f776f16878c894e52e107296ffc890e913c611b1a4ec6c44e2821fe2e23", size = 30042, upload-time = "2026-06-04T16:18:57.319Z" }, +] + +[[package]] +name = "pytokens" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b6/34/b4e015b99031667a7b960f888889c5bd34ef585c85e1cb56a594b92836ac/pytokens-0.4.1.tar.gz", hash = "sha256:292052fe80923aae2260c073f822ceba21f3872ced9a68bb7953b348e561179a", size = 23015, upload-time = "2026-01-30T01:03:45.924Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3d/92/790ebe03f07b57e53b10884c329b9a1a308648fc083a6d4a39a10a28c8fc/pytokens-0.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d70e77c55ae8380c91c0c18dea05951482e263982911fc7410b1ffd1dadd3440", size = 160864, upload-time = "2026-01-30T01:02:57.882Z" }, + { url = "https://files.pythonhosted.org/packages/13/25/a4f555281d975bfdd1eba731450e2fe3a95870274da73fb12c40aeae7625/pytokens-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a58d057208cb9075c144950d789511220b07636dd2e4708d5645d24de666bdc", size = 248565, upload-time = "2026-01-30T01:02:59.912Z" }, + { url = "https://files.pythonhosted.org/packages/17/50/bc0394b4ad5b1601be22fa43652173d47e4c9efbf0044c62e9a59b747c56/pytokens-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b49750419d300e2b5a3813cf229d4e5a4c728dae470bcc89867a9ad6f25a722d", size = 260824, upload-time = "2026-01-30T01:03:01.471Z" }, + { url = "https://files.pythonhosted.org/packages/4e/54/3e04f9d92a4be4fc6c80016bc396b923d2a6933ae94b5f557c939c460ee0/pytokens-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d9907d61f15bf7261d7e775bd5d7ee4d2930e04424bab1972591918497623a16", size = 264075, upload-time = "2026-01-30T01:03:04.143Z" }, + { url = "https://files.pythonhosted.org/packages/d1/1b/44b0326cb5470a4375f37988aea5d61b5cc52407143303015ebee94abfd6/pytokens-0.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:ee44d0f85b803321710f9239f335aafe16553b39106384cef8e6de40cb4ef2f6", size = 103323, upload-time = "2026-01-30T01:03:05.412Z" }, + { url = "https://files.pythonhosted.org/packages/41/5d/e44573011401fb82e9d51e97f1290ceb377800fb4eed650b96f4753b499c/pytokens-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:140709331e846b728475786df8aeb27d24f48cbcf7bcd449f8de75cae7a45083", size = 160663, upload-time = "2026-01-30T01:03:06.473Z" }, + { url = "https://files.pythonhosted.org/packages/f0/e6/5bbc3019f8e6f21d09c41f8b8654536117e5e211a85d89212d59cbdab381/pytokens-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d6c4268598f762bc8e91f5dbf2ab2f61f7b95bdc07953b602db879b3c8c18e1", size = 255626, upload-time = "2026-01-30T01:03:08.177Z" }, + { url = "https://files.pythonhosted.org/packages/bf/3c/2d5297d82286f6f3d92770289fd439956b201c0a4fc7e72efb9b2293758e/pytokens-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:24afde1f53d95348b5a0eb19488661147285ca4dd7ed752bbc3e1c6242a304d1", size = 269779, upload-time = "2026-01-30T01:03:09.756Z" }, + { url = "https://files.pythonhosted.org/packages/20/01/7436e9ad693cebda0551203e0bf28f7669976c60ad07d6402098208476de/pytokens-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5ad948d085ed6c16413eb5fec6b3e02fa00dc29a2534f088d3302c47eb59adf9", size = 268076, upload-time = "2026-01-30T01:03:10.957Z" }, + { url = "https://files.pythonhosted.org/packages/2e/df/533c82a3c752ba13ae7ef238b7f8cdd272cf1475f03c63ac6cf3fcfb00b6/pytokens-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:3f901fe783e06e48e8cbdc82d631fca8f118333798193e026a50ce1b3757ea68", size = 103552, upload-time = "2026-01-30T01:03:12.066Z" }, + { url = "https://files.pythonhosted.org/packages/cb/dc/08b1a080372afda3cceb4f3c0a7ba2bde9d6a5241f1edb02a22a019ee147/pytokens-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8bdb9d0ce90cbf99c525e75a2fa415144fd570a1ba987380190e8b786bc6ef9b", size = 160720, upload-time = "2026-01-30T01:03:13.843Z" }, + { url = "https://files.pythonhosted.org/packages/64/0c/41ea22205da480837a700e395507e6a24425151dfb7ead73343d6e2d7ffe/pytokens-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5502408cab1cb18e128570f8d598981c68a50d0cbd7c61312a90507cd3a1276f", size = 254204, upload-time = "2026-01-30T01:03:14.886Z" }, + { url = "https://files.pythonhosted.org/packages/e0/d2/afe5c7f8607018beb99971489dbb846508f1b8f351fcefc225fcf4b2adc0/pytokens-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:29d1d8fb1030af4d231789959f21821ab6325e463f0503a61d204343c9b355d1", size = 268423, upload-time = "2026-01-30T01:03:15.936Z" }, + { url = "https://files.pythonhosted.org/packages/68/d4/00ffdbd370410c04e9591da9220a68dc1693ef7499173eb3e30d06e05ed1/pytokens-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:970b08dd6b86058b6dc07efe9e98414f5102974716232d10f32ff39701e841c4", size = 266859, upload-time = "2026-01-30T01:03:17.458Z" }, + { url = "https://files.pythonhosted.org/packages/a7/c9/c3161313b4ca0c601eeefabd3d3b576edaa9afdefd32da97210700e47652/pytokens-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:9bd7d7f544d362576be74f9d5901a22f317efc20046efe2034dced238cbbfe78", size = 103520, upload-time = "2026-01-30T01:03:18.652Z" }, + { url = "https://files.pythonhosted.org/packages/8f/a7/b470f672e6fc5fee0a01d9e75005a0e617e162381974213a945fcd274843/pytokens-0.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4a14d5f5fc78ce85e426aa159489e2d5961acf0e47575e08f35584009178e321", size = 160821, upload-time = "2026-01-30T01:03:19.684Z" }, + { url = "https://files.pythonhosted.org/packages/80/98/e83a36fe8d170c911f864bfded690d2542bfcfacb9c649d11a9e6eb9dc41/pytokens-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97f50fd18543be72da51dd505e2ed20d2228c74e0464e4262e4899797803d7fa", size = 254263, upload-time = "2026-01-30T01:03:20.834Z" }, + { url = "https://files.pythonhosted.org/packages/0f/95/70d7041273890f9f97a24234c00b746e8da86df462620194cef1d411ddeb/pytokens-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc74c035f9bfca0255c1af77ddd2d6ae8419012805453e4b0e7513e17904545d", size = 268071, upload-time = "2026-01-30T01:03:21.888Z" }, + { url = "https://files.pythonhosted.org/packages/da/79/76e6d09ae19c99404656d7db9c35dfd20f2086f3eb6ecb496b5b31163bad/pytokens-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f66a6bbe741bd431f6d741e617e0f39ec7257ca1f89089593479347cc4d13324", size = 271716, upload-time = "2026-01-30T01:03:23.633Z" }, + { url = "https://files.pythonhosted.org/packages/79/37/482e55fa1602e0a7ff012661d8c946bafdc05e480ea5a32f4f7e336d4aa9/pytokens-0.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:b35d7e5ad269804f6697727702da3c517bb8a5228afa450ab0fa787732055fc9", size = 104539, upload-time = "2026-01-30T01:03:24.788Z" }, + { url = "https://files.pythonhosted.org/packages/30/e8/20e7db907c23f3d63b0be3b8a4fd1927f6da2395f5bcc7f72242bb963dfe/pytokens-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:8fcb9ba3709ff77e77f1c7022ff11d13553f3c30299a9fe246a166903e9091eb", size = 168474, upload-time = "2026-01-30T01:03:26.428Z" }, + { url = "https://files.pythonhosted.org/packages/d6/81/88a95ee9fafdd8f5f3452107748fd04c24930d500b9aba9738f3ade642cc/pytokens-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:79fc6b8699564e1f9b521582c35435f1bd32dd06822322ec44afdeba666d8cb3", size = 290473, upload-time = "2026-01-30T01:03:27.415Z" }, + { url = "https://files.pythonhosted.org/packages/cf/35/3aa899645e29b6375b4aed9f8d21df219e7c958c4c186b465e42ee0a06bf/pytokens-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d31b97b3de0f61571a124a00ffe9a81fb9939146c122c11060725bd5aea79975", size = 303485, upload-time = "2026-01-30T01:03:28.558Z" }, + { url = "https://files.pythonhosted.org/packages/52/a0/07907b6ff512674d9b201859f7d212298c44933633c946703a20c25e9d81/pytokens-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:967cf6e3fd4adf7de8fc73cd3043754ae79c36475c1c11d514fc72cf5490094a", size = 306698, upload-time = "2026-01-30T01:03:29.653Z" }, + { url = "https://files.pythonhosted.org/packages/39/2a/cbbf9250020a4a8dd53ba83a46c097b69e5eb49dd14e708f496f548c6612/pytokens-0.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:584c80c24b078eec1e227079d56dc22ff755e0ba8654d8383b2c549107528918", size = 116287, upload-time = "2026-01-30T01:03:30.912Z" }, + { url = "https://files.pythonhosted.org/packages/c6/78/397db326746f0a342855b81216ae1f0a32965deccfd7c830a2dbc66d2483/pytokens-0.4.1-py3-none-any.whl", hash = "sha256:26cef14744a8385f35d0e095dc8b3a7583f6c953c2e3d269c7f82484bf5ad2de", size = 13729, upload-time = "2026-01-30T01:03:45.029Z" }, +] + +[[package]] +name = "pywin32" +version = "312" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1f/f5/10a6e845a00fc5e7afd0a988b744f403d4d57162a28d160a093c4d9322f0/pywin32-312-cp311-cp311-win32.whl", hash = "sha256:17948aeadbdb091f0ced6ef0841620794e68327b94ee415571c1203594b7215c", size = 6362659, upload-time = "2026-06-04T07:49:21.349Z" }, + { url = "https://files.pythonhosted.org/packages/35/c4/dcd2d62b5944b6d5db53413a5899016ccd57ffcb7278f3f81655d25d2027/pywin32-312-cp311-cp311-win_amd64.whl", hash = "sha256:d11417d84412f859b722fad0841b3614459ed0047f7542d8362e77884f6b6e8a", size = 6928825, upload-time = "2026-06-04T07:49:23.934Z" }, + { url = "https://files.pythonhosted.org/packages/b7/56/3cbb433fe4501cdba2eb9040f56a4e1a8243faa4186b25295564d1a7a79d/pywin32-312-cp311-cp311-win_arm64.whl", hash = "sha256:b2200a054ca6d6625c4842fc56a4976a4b47f96b73dbe5538c3f813a80359f47", size = 6721875, upload-time = "2026-06-04T07:49:26.416Z" }, + { url = "https://files.pythonhosted.org/packages/83/ff/32aa7d2ed0ab12b323aaa64f9b75e6ad4f8fd09f9ccfc28c79414d46838d/pywin32-312-cp312-cp312-win32.whl", hash = "sha256:dab4f65ac9c4e48400a2a0530c46c3c579cd5905ecd11b80692373915269208b", size = 6371877, upload-time = "2026-06-04T07:49:28.836Z" }, + { url = "https://files.pythonhosted.org/packages/03/d9/77040d3b43df3f3be32ea289433d660d2727f5ba327bc73be835127d9d60/pywin32-312-cp312-cp312-win_amd64.whl", hash = "sha256:b457f6d628a47e8a7346ce22acb7e1a46a4a78b52e1d17e1af56871bd19a93bc", size = 6914841, upload-time = "2026-06-04T07:49:31.85Z" }, + { url = "https://files.pythonhosted.org/packages/e3/cc/7b1ec671775756020a0ee7f4feeaf3c568f0ab86bd3900088cf986937a92/pywin32-312-cp312-cp312-win_arm64.whl", hash = "sha256:6017c58e12f6809fbb0555b75df144c2922a9ffd18e4b9b5afa863b6c1a9d950", size = 6727901, upload-time = "2026-06-04T07:49:34.244Z" }, + { url = "https://files.pythonhosted.org/packages/2d/41/12fbfd7f36ed2146d8bc9de96c2741296bf0d490b98508496cff322e274c/pywin32-312-cp313-cp313-win32.whl", hash = "sha256:7a27df850933d16a8eabfbaeb73d52b273e2da667f80d70b01a89d1f6828d02c", size = 6370184, upload-time = "2026-06-04T07:49:36.253Z" }, + { url = "https://files.pythonhosted.org/packages/ba/db/36a78e3403099d31d9746d13fdcde5accc43c1155f375a34d15983a479a7/pywin32-312-cp313-cp313-win_amd64.whl", hash = "sha256:c53e878d15a1c44788082bfe712a905433473aa38f86375b7cf8b45e3acbaaf9", size = 6914298, upload-time = "2026-06-04T07:49:38.876Z" }, + { url = "https://files.pythonhosted.org/packages/84/37/c1697194092b76de9ed47ca124323f02c57ffc8a45c06f88a3d5acaf01eb/pywin32-312-cp313-cp313-win_arm64.whl", hash = "sha256:59aba5d5940842075343a5ddc6b11f1cdf0d1567fe745290359dfbcc7c2eb831", size = 6727640, upload-time = "2026-06-04T07:49:41.083Z" }, + { url = "https://files.pythonhosted.org/packages/fc/2b/1f3cded5822fd49c02f40544cbb5f58c7cfd6b1694869fd476cb6170ee97/pywin32-312-cp314-cp314-win32.whl", hash = "sha256:a77a90fbb6881238d2ca9c6fd797b25817f3768fe78d214a90137ff055a75f5b", size = 6468928, upload-time = "2026-06-04T07:49:43.188Z" }, + { url = "https://files.pythonhosted.org/packages/21/82/3bf86d2e2808902013132e1ce905a7da0da53790f3836c64bf44d55e24f3/pywin32-312-cp314-cp314-win_amd64.whl", hash = "sha256:a4dd3a848290ef724347b19f301045831d8e802fa4464f491b98b1e0a081432e", size = 7024157, upload-time = "2026-06-04T07:49:45.34Z" }, + { url = "https://files.pythonhosted.org/packages/a4/0e/73f6d6800b4f27655abd9e9f6aaeaefcddb2b946e4674efa2bab184a7f7b/pywin32-312-cp314-cp314-win_arm64.whl", hash = "sha256:9fce94568364e0155e6dfb781ac5d95903be8baf28670632beab1b523f300daa", size = 6839598, upload-time = "2026-06-04T07:49:47.613Z" }, + { url = "https://files.pythonhosted.org/packages/eb/61/caa39686032d2ebdd04ff0ab5cbe163126c0066d98e00c9018646e42393b/pywin32-312-cp315-cp315-win32.whl", hash = "sha256:5c1fbe4a937a73ae9297384a3da38518cbc694c68ad8a809b2e19acd350f03ed", size = 6471159, upload-time = "2026-06-04T07:49:50.035Z" }, + { url = "https://files.pythonhosted.org/packages/0f/cd/7e1de64a4a6f69c04214169657ccab0d93a670ea50e35eb8f489d7378249/pywin32-312-cp315-cp315-win_amd64.whl", hash = "sha256:c2f03a0f73f804a13c2735b99392b0cd426bb4f2c4d0178e5ac966a0f21618d5", size = 7025293, upload-time = "2026-06-04T07:49:54.857Z" }, + { url = "https://files.pythonhosted.org/packages/23/ed/4532e9388e65fa16b46776ef47ad631a64eda1631884488af707666350ed/pywin32-312-cp315-cp315-win_arm64.whl", hash = "sha256:a8597d28f267b39074aef51fa593530082b39cbe5a074226096857b1fed2dfb9", size = 6840337, upload-time = "2026-06-04T07:49:57.531Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e", size = 185826, upload-time = "2025-09-25T21:31:58.655Z" }, + { url = "https://files.pythonhosted.org/packages/16/19/13de8e4377ed53079ee996e1ab0a9c33ec2faf808a4647b7b4c0d46dd239/pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824", size = 175577, upload-time = "2025-09-25T21:32:00.088Z" }, + { url = "https://files.pythonhosted.org/packages/0c/62/d2eb46264d4b157dae1275b573017abec435397aa59cbcdab6fc978a8af4/pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c", size = 775556, upload-time = "2025-09-25T21:32:01.31Z" }, + { url = "https://files.pythonhosted.org/packages/10/cb/16c3f2cf3266edd25aaa00d6c4350381c8b012ed6f5276675b9eba8d9ff4/pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00", size = 882114, upload-time = "2025-09-25T21:32:03.376Z" }, + { url = "https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d", size = 806638, upload-time = "2025-09-25T21:32:04.553Z" }, + { url = "https://files.pythonhosted.org/packages/dd/6f/529b0f316a9fd167281a6c3826b5583e6192dba792dd55e3203d3f8e655a/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a", size = 767463, upload-time = "2025-09-25T21:32:06.152Z" }, + { url = "https://files.pythonhosted.org/packages/f2/6a/b627b4e0c1dd03718543519ffb2f1deea4a1e6d42fbab8021936a4d22589/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4", size = 794986, upload-time = "2025-09-25T21:32:07.367Z" }, + { url = "https://files.pythonhosted.org/packages/45/91/47a6e1c42d9ee337c4839208f30d9f09caa9f720ec7582917b264defc875/pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b", size = 142543, upload-time = "2025-09-25T21:32:08.95Z" }, + { url = "https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf", size = 158763, upload-time = "2025-09-25T21:32:09.96Z" }, + { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, + { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, + { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, + { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, + { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, + { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, + { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, + { url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" }, + { url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" }, + { url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" }, + { url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" }, + { url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" }, + { url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" }, + { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" }, + { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" }, + { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" }, + { url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" }, + { url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" }, + { url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" }, + { url = "https://files.pythonhosted.org/packages/02/9e/e5e9b168be58564121efb3de6859c452fccde0ab093d8438905899a3a483/pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788", size = 836355, upload-time = "2025-09-25T21:32:39.178Z" }, + { url = "https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5", size = 794175, upload-time = "2025-09-25T21:32:40.865Z" }, + { url = "https://files.pythonhosted.org/packages/dd/3f/5989debef34dc6397317802b527dbbafb2b4760878a53d4166579111411e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764", size = 755228, upload-time = "2025-09-25T21:32:42.084Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ce/af88a49043cd2e265be63d083fc75b27b6ed062f5f9fd6cdc223ad62f03e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35", size = 789194, upload-time = "2025-09-25T21:32:43.362Z" }, + { url = "https://files.pythonhosted.org/packages/23/20/bb6982b26a40bb43951265ba29d4c246ef0ff59c9fdcdf0ed04e0687de4d/pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac", size = 156429, upload-time = "2025-09-25T21:32:57.844Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f4/a4541072bb9422c8a883ab55255f918fa378ecf083f5b85e87fc2b4eda1b/pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3", size = 143912, upload-time = "2025-09-25T21:32:59.247Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f9/07dd09ae774e4616edf6cda684ee78f97777bdd15847253637a6f052a62f/pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3", size = 189108, upload-time = "2025-09-25T21:32:44.377Z" }, + { url = "https://files.pythonhosted.org/packages/4e/78/8d08c9fb7ce09ad8c38ad533c1191cf27f7ae1effe5bb9400a46d9437fcf/pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba", size = 183641, upload-time = "2025-09-25T21:32:45.407Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5b/3babb19104a46945cf816d047db2788bcaf8c94527a805610b0289a01c6b/pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c", size = 831901, upload-time = "2025-09-25T21:32:48.83Z" }, + { url = "https://files.pythonhosted.org/packages/8b/cc/dff0684d8dc44da4d22a13f35f073d558c268780ce3c6ba1b87055bb0b87/pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702", size = 861132, upload-time = "2025-09-25T21:32:50.149Z" }, + { url = "https://files.pythonhosted.org/packages/b1/5e/f77dc6b9036943e285ba76b49e118d9ea929885becb0a29ba8a7c75e29fe/pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c", size = 839261, upload-time = "2025-09-25T21:32:51.808Z" }, + { url = "https://files.pythonhosted.org/packages/ce/88/a9db1376aa2a228197c58b37302f284b5617f56a5d959fd1763fb1675ce6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065", size = 805272, upload-time = "2025-09-25T21:32:52.941Z" }, + { url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" }, + { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" }, +] + +[[package]] +name = "pyyaml-env-tag" +version = "1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/2e/79c822141bfd05a853236b504869ebc6b70159afc570e1d5a20641782eaa/pyyaml_env_tag-1.1.tar.gz", hash = "sha256:2eb38b75a2d21ee0475d6d97ec19c63287a7e140231e4214969d0eac923cd7ff", size = 5737, upload-time = "2025-05-13T15:24:01.64Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl", hash = "sha256:17109e1a528561e32f026364712fee1264bc2ea6715120891174ed1b980d2e04", size = 4722, upload-time = "2025-05-13T15:23:59.629Z" }, +] + +[[package]] +name = "referencing" +version = "0.37.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, +] + +[[package]] +name = "requests" +version = "2.34.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ac/c3/e2a2b89f2d3e2179abd6d00ebd70bff6273f37fb3e0cc209f48b39d00cbf/requests-2.34.2.tar.gz", hash = "sha256:f288924cae4e29463698d6d60bc6a4da69c89185ad1e0bcc4104f584e960b9ed", size = 142856, upload-time = "2026-05-14T19:25:27.735Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/f4/c67b0b3f1b9245e8d266f0f112c500d50e5b4e83cb6f3b71b6528104182a/requests-2.34.2-py3-none-any.whl", hash = "sha256:2a0d60c172f83ac6ab31e4554906c0f3b3588d37b5cb939b1c061f4907e278e0", size = 73075, upload-time = "2026-05-14T19:25:26.443Z" }, +] + +[[package]] +name = "retrying" +version = "1.4.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/5a/b17e1e257d3e6f2e7758930e1256832c9ddd576f8631781e6a072914befa/retrying-1.4.2.tar.gz", hash = "sha256:d102e75d53d8d30b88562d45361d6c6c934da06fab31bd81c0420acb97a8ba39", size = 11411, upload-time = "2025-08-03T03:35:25.189Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/f3/6cd296376653270ac1b423bb30bd70942d9916b6978c6f40472d6ac038e7/retrying-1.4.2-py3-none-any.whl", hash = "sha256:bbc004aeb542a74f3569aeddf42a2516efefcdaff90df0eb38fbfbf19f179f59", size = 10859, upload-time = "2025-08-03T03:35:23.829Z" }, +] + +[[package]] +name = "rpds-py" +version = "2026.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/2a/9618a122aeb2a169a28b03889a2995fe297588964333d4a7d67bdf46e147/rpds_py-2026.6.3.tar.gz", hash = "sha256:1cebd1337c242e4ec2293e541f712b2da849b29f48f0c293684b71c0632625d4", size = 64051, upload-time = "2026-06-30T07:17:53.009Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/1f/a2dca5ffdbf1d475ffc4e80e4d5d720ff3a00f691795910116960ee12511/rpds_py-2026.6.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:7b689145a1485c335569bd056464f3243a29af7ed3871c7be31ad624ba239bc7", size = 342174, upload-time = "2026-06-30T07:14:54.821Z" }, + { url = "https://files.pythonhosted.org/packages/4d/dc/323d08583c0832911768663d1944f0107fcd4088704858d84b5e06d105a0/rpds_py-2026.6.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:db08f45aecde626498fb3df07bcf6d2ec040af42e859a4f5040d79c200342911", size = 345513, upload-time = "2026-06-30T07:14:56.515Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2a/e31989834d18d2f26ec1d2774c5b1eb3331df4ea8ada525175294c94b48a/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:acc992ab27b15f852c76755eb2ab7dce86585ddadba6fa5946e58556088845b4", size = 373783, upload-time = "2026-06-30T07:14:57.736Z" }, + { url = "https://files.pythonhosted.org/packages/87/fe/e80107ee3639585c9941c17d6a42cd65325022f656c023191fce78c324c8/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f88d653e7b3b779d71ae7454e20dcc9b6bae903f33c269db9f2be41bda3f261", size = 378316, upload-time = "2026-06-30T07:14:59.077Z" }, + { url = "https://files.pythonhosted.org/packages/22/6f/81e3adf81acfb6fa694de2a6e4e7d8863121e3e0799e0a7725e6cf5679c4/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e52655eaf81e32593abedaa4bfe33170c8cfedf3365ed9be6e11e07f148f0278", size = 499423, upload-time = "2026-06-30T07:15:00.488Z" }, + { url = "https://files.pythonhosted.org/packages/2d/9a/41263969df0ce3d9af2a96d5005a288200af1989aed3354bfceb5fc0b21f/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dfcc8b909769d19db55c7cc9541eb64b9b774b1057ffffb4f1048070475bb9f9", size = 386077, upload-time = "2026-06-30T07:15:01.911Z" }, + { url = "https://files.pythonhosted.org/packages/5e/19/7e98f468bd50346faff5b10e5297374b443bfdddacc8e9fbc65984539597/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c1255b302953c86a486b81d330d5ee1d5bd937691ce271b6be0ef0e299eaab7", size = 371315, upload-time = "2026-06-30T07:15:03.317Z" }, + { url = "https://files.pythonhosted.org/packages/99/3c/2b973b4d371906a134b03decfea7f5d9835a2c6d263454392e15b64b5b18/rpds_py-2026.6.3-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:8d2294a31386bfa251d8c8a39472beee17db67d4f1a6eabea665d35c9a4461c3", size = 383502, upload-time = "2026-06-30T07:15:04.627Z" }, + { url = "https://files.pythonhosted.org/packages/98/2a/12e2799500af0a307bca76b63361c51f9fe479223561489c29eea1f2ee41/rpds_py-2026.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f8f23ead891a3b762f35ab3b04623da7056545b48aa60d59957e6789914545da", size = 402673, upload-time = "2026-06-30T07:15:05.856Z" }, + { url = "https://files.pythonhosted.org/packages/2d/e3/21e5872d165fe08be4f229e3d5ee9d90019c0bf0e5538de60dbd54009450/rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:421aba32367055614287a4292b6a17f1939c9452299f7a0209c117e990b646d4", size = 549964, upload-time = "2026-06-30T07:15:07.159Z" }, + { url = "https://files.pythonhosted.org/packages/1a/d0/5ee0fe36844297de8123bee27bc12078c1a7416ad9f1b8a8ca18d6b0c0ac/rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1e5822dfc2f0d4ab7e745eaa6d85945069329beeccef965af3f3bb26058fcab6", size = 615446, upload-time = "2026-06-30T07:15:08.531Z" }, + { url = "https://files.pythonhosted.org/packages/b1/80/1ea5873cb683f2fbe5f21b23ea1f6d179ead19f3c5b249b7eb5dca568ef2/rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:83e35b57523816c8613fd0776b40cd8bb9f596b37ddd2692eb4a6bb5ab2f8c93", size = 576975, upload-time = "2026-06-30T07:15:09.97Z" }, + { url = "https://files.pythonhosted.org/packages/c9/e1/90ef639217a5ddb15b7f4f61b1c33911fd044ad03c311bafdd2bcab85582/rpds_py-2026.6.3-cp311-cp311-win32.whl", hash = "sha256:de3eceba0b683bcbb1ab93da016d0270df1f9ae7be716b40214c5dafac6ea45a", size = 204453, upload-time = "2026-06-30T07:15:11.324Z" }, + { url = "https://files.pythonhosted.org/packages/f2/b7/b7a1695d7af36f521fb11e80d6d3adbd744f73b921859bd3c2a2c0dc706f/rpds_py-2026.6.3-cp311-cp311-win_amd64.whl", hash = "sha256:2c54a076ca4d370980ab57bc0e31df57bbe8d41340436a90ef8b1219a3cbb127", size = 223219, upload-time = "2026-06-30T07:15:12.476Z" }, + { url = "https://files.pythonhosted.org/packages/d7/a2/145afacf796e4506062825941176ad9445c2dcf2b3b6a1f13d3030a15e19/rpds_py-2026.6.3-cp311-cp311-win_arm64.whl", hash = "sha256:168c733a7112e071bb7a66460e667edfcff06c017a3c523f7a8a8e08d0140804", size = 219137, upload-time = "2026-06-30T07:15:13.631Z" }, + { url = "https://files.pythonhosted.org/packages/5c/be/2e8974163072e7bab7df1a5acd54c4498e75e35d6d18b864d3a9d5dadc92/rpds_py-2026.6.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a0811d33247c3d6128a3001d763f2aa056bb3425204335400ac54f89eec3a0d0", size = 343691, upload-time = "2026-06-30T07:15:14.96Z" }, + { url = "https://files.pythonhosted.org/packages/a4/73/319dfa745dd668efe89309141ded489126461fcecd2b8f3a3cda185129b6/rpds_py-2026.6.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:538949e262e46caa31ac01bdb3c1e8f642622922cacbabbae6a8445d9dc33eaf", size = 338542, upload-time = "2026-06-30T07:15:16.267Z" }, + { url = "https://files.pythonhosted.org/packages/21/63/4239893be1c4d09b709b1a8f6be4188f0870084ff547f46606b8a75f1b03/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55927d532399c2c646100ff7feb48eaa940ad70f42cd68e1328f3ded9f81ca24", size = 368180, upload-time = "2026-06-30T07:15:17.62Z" }, + { url = "https://files.pythonhosted.org/packages/1c/ca/9c5de382225234ceb37b1844ebdb140db12b2a278bb9efe2fcd19f6c82ce/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f56f1695bc5c0871cbc33dc0130fcf503aab0c57dcc5a6700a4f49eba4f2652e", size = 375067, upload-time = "2026-06-30T07:15:18.952Z" }, + { url = "https://files.pythonhosted.org/packages/87/dc/863f69d1bf04ade34b7fe0d59b9fdf6f0135fe2d7cbca74f1d665589559d/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:270b293dae9058fc9fcedab50f13cebf46fb8ed1d1d54e0521a9da5d6b211975", size = 490509, upload-time = "2026-06-30T07:15:20.434Z" }, + { url = "https://files.pythonhosted.org/packages/ce/ef/eac16a12048b45ec7c7fa94f2be3438a5f26bf9cc8580b18a1cfd609b7f6/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:127565fead0a10943b282957bd5447804ff3160ad79f2ad2635e6d249e380680", size = 382754, upload-time = "2026-06-30T07:15:21.831Z" }, + { url = "https://files.pythonhosted.org/packages/04/8f/d2f3f532616be4d06c316ef119683e832bd3d41e112bf3a88f4151c95b17/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecabd69db66de867690f9797f2f8fa27ba501bbc24540cbdbdc649cd15888ba6", size = 366189, upload-time = "2026-06-30T07:15:23.371Z" }, + { url = "https://files.pythonhosted.org/packages/e3/29/41a7b0e98a4b44cd676ab7598419623373eb43b20be68c084935c1a8cf88/rpds_py-2026.6.3-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:58eadac9cd119677b60e1cf8ac4052f35949d71b8a9e5556efccbe82533cf22a", size = 377750, upload-time = "2026-06-30T07:15:24.659Z" }, + { url = "https://files.pythonhosted.org/packages/2e/05/ecda0bec46f9a1565090bcdc941d023f6a25aff85fda28f89f8d19878152/rpds_py-2026.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7491ee23305ac3eb59e492b6945881f5cd77a6f731061a3f25b77fd40f9e99a4", size = 395576, upload-time = "2026-06-30T07:15:25.987Z" }, + { url = "https://files.pythonhosted.org/packages/68/a8/6ed52f03ee6cb854ce78785cc9a9a672eb880e83fd7224d471f667d151f1/rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2c99f7e8ccb3dd6e3e4bfeac657a7b208c9bac8075f4b078c02d7404c34107fa", size = 543807, upload-time = "2026-06-30T07:15:27.356Z" }, + { url = "https://files.pythonhosted.org/packages/8f/d6/156c0d3eea27ba09b92562ba2364ba124c0a061b199e17eac637cd25a5e2/rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:62698275682bf121181861295c9181e789030a2d516071f5b8f3c23c170cd0fc", size = 611187, upload-time = "2026-06-30T07:15:28.931Z" }, + { url = "https://files.pythonhosted.org/packages/f1/31/774212ed989c62f7f310220089f9b0a3fb8f40f5443d1727abd5d9f52bc9/rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a214c993455f99a89aaeadc9b21241900037adc9d97203e374d75513c5911822", size = 573030, upload-time = "2026-06-30T07:15:30.553Z" }, + { url = "https://files.pythonhosted.org/packages/c9/50/22f73127a41f1ce4f87fe39aadfb9a126345801c274aa93ae88456249327/rpds_py-2026.6.3-cp312-cp312-win32.whl", hash = "sha256:501f9f04a588d6a09179368c57071301445191767c64e4b52a6aa9871f1ef5ed", size = 202185, upload-time = "2026-06-30T07:15:32.027Z" }, + { url = "https://files.pythonhosted.org/packages/04/3a/f0ee4d4dde9d3b69dedf1b5f74e7a40017046d55052d173e418c6a94f960/rpds_py-2026.6.3-cp312-cp312-win_amd64.whl", hash = "sha256:2c958bf94822e9290a40aaf2a822d4bc5c88099093e3948ad6c571eca9272e5f", size = 220394, upload-time = "2026-06-30T07:15:33.359Z" }, + { url = "https://files.pythonhosted.org/packages/f3/83/3382fe37f809b59f02aac04dbc4e765b480b46ee0227ed516e3bdc4d3dfc/rpds_py-2026.6.3-cp312-cp312-win_arm64.whl", hash = "sha256:22bffe6042b9bcb0822bcd1955ec00e245daf17b4344e4ed8e9551b976b63e96", size = 215753, upload-time = "2026-06-30T07:15:34.778Z" }, + { url = "https://files.pythonhosted.org/packages/a4/9e/b818ee580026ec578138e961027a68820c40afeb1ec8f6819b54fb99e196/rpds_py-2026.6.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:3cfe765c1da0072636ca06628261e0ea05688e160d5c8a03e0217c3854037223", size = 343012, upload-time = "2026-06-30T07:15:36.005Z" }, + { url = "https://files.pythonhosted.org/packages/f3/6b/686d9dc4359a8f163cfbbf89ee0b4e586431de22fe8248edb63a8cf50d49/rpds_py-2026.6.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f4d78253f6996be4901669ad25319f842f740eccf4d58e3c7f3dd39e6dde1d8f", size = 338203, upload-time = "2026-06-30T07:15:37.462Z" }, + { url = "https://files.pythonhosted.org/packages/9e/9b/069aa329940f8207615e091f5eedbbd40e1e15eac68a0790fd05ccdf796c/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54f45a148e28767bf343d33a684693c70e451c6f4c0e9904709a723fafbdfc1f", size = 367984, upload-time = "2026-06-30T07:15:39.008Z" }, + { url = "https://files.pythonhosted.org/packages/14/db/34c203e4becff3703e4d3bc121842c00b8689197f398161203a880052f4e/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:842e7b070435622248c7a2c44ae53fa1440e073cc3023bc919fed570884097a7", size = 374815, upload-time = "2026-06-30T07:15:40.253Z" }, + { url = "https://files.pythonhosted.org/packages/ee/7d/8071067d2cc453d916ad836e828c943f575e8a44612537759002a1e07381/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8020133a74bd81b4572dd8e4be028a6b1ebcd70e6726edc3918008c08bee6ee6", size = 490545, upload-time = "2026-06-30T07:15:41.729Z" }, + { url = "https://files.pythonhosted.org/packages/a3/42/da06c5aa8f0484ff07f270787434204d9f4535e2f8c3b51ed402267e63c3/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cdc7e35386f3847df728fbcb5e887e2d79c19e2fa1eba9e51b6621d23e3243af", size = 382828, upload-time = "2026-06-30T07:15:43.327Z" }, + { url = "https://files.pythonhosted.org/packages/57/d7/fe978efc2ae50abe48eb7464668ea99f53c010c60aeebb7b35ad27f23661/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acac386b453c2516111b50985d60ce46e7fadb5ea71ae7b25f4c946935bf27cf", size = 365678, upload-time = "2026-06-30T07:15:44.992Z" }, + { url = "https://files.pythonhosted.org/packages/69/9d/1d8922e1990b2a6eb532b6ff53d3e73d2b3bbffc84116c75826bee73dfc6/rpds_py-2026.6.3-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:425560c6fa0415f27261727bb20bd097568485e5eb0c121f1949417d1c516885", size = 377811, upload-time = "2026-06-30T07:15:46.523Z" }, + { url = "https://files.pythonhosted.org/packages/b1/3d/198dceafb4fb034a6a47347e1b0735d34e0bd4a50be4e898d408ee66cb14/rpds_py-2026.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a550fb4950a06dde3beb4721f5ad4b25bf4513784665b0a8522c792e2bd822a4", size = 395382, upload-time = "2026-06-30T07:15:47.955Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f1/13968e49655d40b6b19d8b9140296bbc6f1d86b3f0f6c346cf9f1adddf4b/rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4f4bca01b63096f606e095734dd56e74e175f94cfbf24ff3d63281cec61f7bb7", size = 543832, upload-time = "2026-06-30T07:15:49.33Z" }, + { url = "https://files.pythonhosted.org/packages/ac/ab/289bcb1b90bd3e40a2900c561fa0e2087345ecbb094f0b870f2345142b7c/rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ccffae9a092a00deb7efd545fe5e2c33c33b88e7c054337e9a74c179347d0b7d", size = 611011, upload-time = "2026-06-30T07:15:50.847Z" }, + { url = "https://files.pythonhosted.org/packages/1e/16/5043105e679436ccfbc8e5e0dd2d663ed18a8b8113515fd06a5e5d77c83e/rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1cf01971c4f2c5553b772a542e4aaf191789cd331bc2cd4ff0e6e65ba49e1e97", size = 572431, upload-time = "2026-06-30T07:15:52.394Z" }, + { url = "https://files.pythonhosted.org/packages/85/ed/adab103321c0a6565d5ae1c2998349bc3ee175b82ccc5ae8fc04cc413075/rpds_py-2026.6.3-cp313-cp313-win32.whl", hash = "sha256:8c3d1e9c15b9d51ca0391e13da1a25a0a4df3c58a37c9dc368e0736cf7f69df0", size = 201710, upload-time = "2026-06-30T07:15:53.894Z" }, + { url = "https://files.pythonhosted.org/packages/7b/ed/a03b09668e74e5dabbf2e211f6468e1820c0552f7b0500082da31841bf7b/rpds_py-2026.6.3-cp313-cp313-win_amd64.whl", hash = "sha256:9250a9a0a6fd4648b3f868da8d91a4c52b5811a62df58e753d50ae4454a36f80", size = 219454, upload-time = "2026-06-30T07:15:55.25Z" }, + { url = "https://files.pythonhosted.org/packages/27/17/b8642c12930b71bc2b25831f6708ccf0f75abcd11883932ec9ce54ba3a78/rpds_py-2026.6.3-cp313-cp313-win_arm64.whl", hash = "sha256:900a67df3fd1660b035a4761c4ce73c382ea6b35f90f9863c36c6fd8bf8b09bb", size = 215063, upload-time = "2026-06-30T07:15:56.573Z" }, + { url = "https://files.pythonhosted.org/packages/b6/36/7fbe9dcdaf857fb3f63c2a2284b62492d95f5e8334e947e5fb6e7f68c9be/rpds_py-2026.6.3-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:931908d9fc855d8f74783377822be318edb6dcb19e47169dc038f9a1bf60b06e", size = 344510, upload-time = "2026-06-30T07:15:57.921Z" }, + { url = "https://files.pythonhosted.org/packages/ba/54/f785cc3d3f60839ca57a5af4927a9f347b07b2799c373fc20f7949f87c7e/rpds_py-2026.6.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:d7469697dce35be237db177d42e2a2ee26e6dcc5fc052078a6fefabd288c6edd", size = 339495, upload-time = "2026-06-30T07:15:59.238Z" }, + { url = "https://files.pythonhosted.org/packages/63/ef/d4cdaf309e6b095b43597103cf8c0b951d6cca2acce68c474f75ec12e0c7/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bcfbcf66006befb9fd2aeaa9e01feaf881b4dc330a02ba07d2322b1c11be7b5d", size = 369454, upload-time = "2026-06-30T07:16:01.021Z" }, + { url = "https://files.pythonhosted.org/packages/96/4a/9559a68b7ee15db09d7981212e8c2e219d2a1d6d4faa0391d813c3496a36/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:847927daf4cffbd4e90e42bc890069897101edd015f956cb8721b3473372edda", size = 374583, upload-time = "2026-06-30T07:16:02.287Z" }, + { url = "https://files.pythonhosted.org/packages/ef/75/8964aa7d2c6e8ac43eba8eb6e6b0fdda1f46d39f2fc3e6aa9f2cb17f485d/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aca6c1ef08a82bfe327cc156da694660f599923e2e6665b6d81c9c2d0ac9ffc8", size = 492919, upload-time = "2026-06-30T07:16:03.723Z" }, + { url = "https://files.pythonhosted.org/packages/8f/97/6908094ac804115e65aedfd90f1b5fee4eebebd3f6c4cfc5419939267565/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ae50181a047c871561212bb97f7932a2d45fb53e947bd9b57ebad85b529cbc53", size = 383725, upload-time = "2026-06-30T07:16:05.305Z" }, + { url = "https://files.pythonhosted.org/packages/d1/9c/0d1fdc2e7aba23e290d603bc494e97bd205bae262ce33c6b32a69768ed5e/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc319e5a1de4b6913aac94bf6a2f9e847371e0a140a43dd4991db1a09bc2d504", size = 367255, upload-time = "2026-06-30T07:16:07.086Z" }, + { url = "https://files.pythonhosted.org/packages/c4/fe/f0209ca4a9ed074bc8acb44dfd0e81c3122e94c9689f5645b7973a866719/rpds_py-2026.6.3-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:e4316bf32babbed84e691e352faf967ce2f0f024174a8643c37c94a1080374fc", size = 379060, upload-time = "2026-06-30T07:16:08.525Z" }, + { url = "https://files.pythonhosted.org/packages/c6/8d/f1cc54c616b9d8897de8738aac148d20afca93f68187475fe194d09a71b9/rpds_py-2026.6.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8c6e5a2f750cc71c3e3b11d71661f21d6f9bc6cebc6564b1466417a1ec03ec77", size = 395960, upload-time = "2026-06-30T07:16:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/fb/04/aafff00f73aeca2945f734f1d483c64ab8f472d0864ab02377fd8e89c3b2/rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:4470ce197d4090875cf6affbf1f853338387428df97c4fb7b7106317b8214698", size = 545356, upload-time = "2026-06-30T07:16:11.816Z" }, + { url = "https://files.pythonhosted.org/packages/fd/cc/e229663b9e4ddac5a4acbe9085dd80a71af2a5d356b8b39d6bff233f24b0/rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ea964164cc9afa72d4d9b23cc28dafae93693c0a53e0b42acbff15b22c3f9ddd", size = 612319, upload-time = "2026-06-30T07:16:13.586Z" }, + { url = "https://files.pythonhosted.org/packages/e3/7a/8a0e6d3e6cd066af108b71b43122c3fe158dd9eb86acac626593a2582eb1/rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:639c8929aa0afe81be836b04de888460d6bed38b9c54cfc18da8f6bfabf5af5d", size = 573508, upload-time = "2026-06-30T07:16:15.23Z" }, + { url = "https://files.pythonhosted.org/packages/87/03/2a69ab618a789cf6cf85c86bb844c62d090e700ab1a2aa676b3741b6c516/rpds_py-2026.6.3-cp314-cp314-win32.whl", hash = "sha256:882076c00c0a608b131187055ddc5ae29f2e7eaf870d6168980420d58528a5c8", size = 202504, upload-time = "2026-06-30T07:16:16.893Z" }, + { url = "https://files.pythonhosted.org/packages/85/62/a3892ba945f4e24c78f352e5de3c7620d8479f73f211406a97263d13c7d2/rpds_py-2026.6.3-cp314-cp314-win_amd64.whl", hash = "sha256:0be972be84cfcaf46c8c6edf690ca0f154ac17babf1f6a955a51579b34ad2dc5", size = 220380, upload-time = "2026-06-30T07:16:18.108Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e7/c2bd44dc831931815ad11ebb5f430b5a0a4d3caa9de837107876c30c3432/rpds_py-2026.6.3-cp314-cp314-win_arm64.whl", hash = "sha256:2a9c6f195058cb45335e8cc3802745c603d716eb96bc9625950c1aac71c0c703", size = 215976, upload-time = "2026-06-30T07:16:19.654Z" }, + { url = "https://files.pythonhosted.org/packages/79/9c/fff7b74bce9a091ec9a012a03f9ff5f69364eaf9451060dfc4486da2ffdd/rpds_py-2026.6.3-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:f90938e92afda60266da758ee7d363447f7f0138c9559f9e1811629580582d90", size = 346840, upload-time = "2026-06-30T07:16:21.268Z" }, + { url = "https://files.pythonhosted.org/packages/e9/44/77bcb1168b33704908295533d27f10eb811e9e3e193e8993dc99572211d3/rpds_py-2026.6.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ec829541c45bca16e61c7ae50c20501f213605beb75d1aba91a6ee37fbbb56a4", size = 340282, upload-time = "2026-06-30T07:16:22.875Z" }, + { url = "https://files.pythonhosted.org/packages/87/3c/7a9081c7c9e645b39efe19e4ffbeccd80add246327cd9b888aecffd72317/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afd70d95892096cdb26f15a00c45907b17817577aa8d1c76b2dcc2788391f9e9", size = 370403, upload-time = "2026-06-30T07:16:24.415Z" }, + { url = "https://files.pythonhosted.org/packages/f7/69/af47021eb7dad6ff3396cb001c08f0f3c4d06c20253f75be6421a59fe6b7/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29dfa0533a5d4c94d4dfa1b694fcb56c9c63aad8330ffdd816fd225d0a7a162f", size = 376055, upload-time = "2026-06-30T07:16:26.111Z" }, + { url = "https://files.pythonhosted.org/packages/81/fc/a3bcf517084396a6dd258c592567a3c011ba4557f2fde23dceaf26e74f2e/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:af05d726809bff6b141be124d4c7ce998f9c9c7f30edb1f46c07aa103d540b41", size = 494419, upload-time = "2026-06-30T07:16:27.596Z" }, + { url = "https://files.pythonhosted.org/packages/c9/eb/13d529d1788135425c7bf207f8463458ca5d92e43f3f701365b83e9dffc1/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9826217f048f620d9a712672818bf231442c1b35d96b227a07eabd11b4bb6945", size = 384848, upload-time = "2026-06-30T07:16:29.183Z" }, + { url = "https://files.pythonhosted.org/packages/8e/f4/b7ac49f30013aba8f7b9566b1dd07e81de95e708c1374b7bacc5b9bc5c9c/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:536bceea4fa4acf7e1c61da2b5786304367c816c8895be71b8f537c480b0ea1f", size = 371369, upload-time = "2026-06-30T07:16:30.912Z" }, + { url = "https://files.pythonhosted.org/packages/31/86/6260bafa622f788b07ddec0e52d810305c8b9b0b8c27f58a2ab04bf62b4f/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:bc0011654b91cc4fb2ae701bec0a0ba1e552c0714247fa7af6c59e0ccfa3a4e1", size = 379673, upload-time = "2026-06-30T07:16:32.486Z" }, + { url = "https://files.pythonhosted.org/packages/19/c3/03f1ee79a047b48daeca157c89a18509cde22b6b951d642b9b0af1be660a/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:539d75de9e0d536c84ff18dfeb805398e58227001ce09231a26a08b9aed1ee0e", size = 397500, upload-time = "2026-06-30T07:16:34.471Z" }, + { url = "https://files.pythonhosted.org/packages/f0/95/8ed0cd8c377dca12aea498f119fe639fc474d1461545c39d2b5872eb1c0f/rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:166cf54d9f44fc6ceb53c7860258dde44a81406646de79f8ed3234fca3b6e538", size = 545978, upload-time = "2026-06-30T07:16:36.45Z" }, + { url = "https://files.pythonhosted.org/packages/d3/f2/0eb57f0eaa83f8fc152a7e03de968ab77e1f00732bebc892b190c6eebde7/rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:d34c20167764fbcf927194d532dd7e0c56772f0a5f943fa5ef9e9afbba8fb9db", size = 613350, upload-time = "2026-06-30T07:16:38.213Z" }, + { url = "https://files.pythonhosted.org/packages/5b/de/e0674bdbc3ef7634989b3f854c3f34bc1f587d36e5bfdc5c378d57034619/rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ea7bb13b7c9a29791f87a0387ba7d3ad3a6d783d827e4d3f27b40a0ff44495e2", size = 576486, upload-time = "2026-06-30T07:16:39.797Z" }, + { url = "https://files.pythonhosted.org/packages/f2/f6/21101359743cd136ada781e8210a85769578422ba460672eea0e29739200/rpds_py-2026.6.3-cp314-cp314t-win32.whl", hash = "sha256:6de4744d05bd1aa1be4ed7ea1189e3979196808008113bbbf899a460966b925e", size = 201068, upload-time = "2026-06-30T07:16:41.316Z" }, + { url = "https://files.pythonhosted.org/packages/a6/b2/9574d4d44f7760c2aa32d92a0a4f41698e33f5b204a0bf5c9758f52c79d5/rpds_py-2026.6.3-cp314-cp314t-win_amd64.whl", hash = "sha256:c7b9a2f8f4d8e90af72571d3d495deebdd7e3c75451f5b41719aee166e940fc2", size = 220600, upload-time = "2026-06-30T07:16:43.091Z" }, + { url = "https://files.pythonhosted.org/packages/08/ae/f23a2697e6ee6340a578b0f136be6483657bef0c6f9497b752bb5c0964bb/rpds_py-2026.6.3-cp315-cp315-macosx_10_12_x86_64.whl", hash = "sha256:e059c5dde6452b44424bd1834557556c226b57781dee1227af23518459722b13", size = 344726, upload-time = "2026-06-30T07:16:44.5Z" }, + { url = "https://files.pythonhosted.org/packages/c3/63/e7b3a1a5358dd32c930a1062d8e15b67fd6e8922e81df9e91706d66ee5c8/rpds_py-2026.6.3-cp315-cp315-macosx_11_0_arm64.whl", hash = "sha256:2f7c26fbc5acd2522b95d4177fe4710ffd8e9b20529e703ffbf8db4d93903f05", size = 339587, upload-time = "2026-06-30T07:16:46.255Z" }, + { url = "https://files.pythonhosted.org/packages/ec/64/10a85681916ca55fffb91b0a211f84e34297c109243484dd6394660a8a7c/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3086b538543802f84c843911242db20447de00d8752dd0efc936dbcf02218ba", size = 369585, upload-time = "2026-06-30T07:16:48.101Z" }, + { url = "https://files.pythonhosted.org/packages/76/c2/baf95c7c38823e12ba34407c5f5767a89e5cf2233895e56f608167ae9493/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8f2e5c5ee828d42cb11760761c0af6507927bec42d0ad5458f97c9203b054617", size = 375479, upload-time = "2026-06-30T07:16:49.93Z" }, + { url = "https://files.pythonhosted.org/packages/6a/94/0aad06c72d65101e11d33528d438cda99a39ce0da99466e156158f2541d3/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed0c1e5d10cdc7135537988c74a0188da68e2f3c30813ba3744ab1e42e0480f9", size = 492418, upload-time = "2026-06-30T07:16:51.641Z" }, + { url = "https://files.pythonhosted.org/packages/b5/17/de3f5a479a1f056535d7489819639d8cd591ea6281d700390b43b1abd745/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c2642a7603ec0b16ed77da4555db3b4b472341904873788327c0b0d7b95f1bb", size = 384123, upload-time = "2026-06-30T07:16:53.622Z" }, + { url = "https://files.pythonhosted.org/packages/46/7d/bf09bd1b145bb2671c03e1e6d1ab8651858d90d8c7dfeadd85a37a934fd8/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e4320744c1ffdd95a603def63344bfab2d33edeab301c5007e7de9f9f5b3885", size = 367351, upload-time = "2026-06-30T07:16:55.241Z" }, + { url = "https://files.pythonhosted.org/packages/a3/ea/1bb734f314b8be319149ddee80b18bd41372bdcfbdf88d28131c0cd37719/rpds_py-2026.6.3-cp315-cp315-manylinux_2_31_riscv64.whl", hash = "sha256:a9f4645593036b81bbdb36b9c8e0ea0d1c3fee968c4d59db0344c14087ef143a", size = 378827, upload-time = "2026-06-30T07:16:56.841Z" }, + { url = "https://files.pythonhosted.org/packages/4b/93/d9611e5b25e26df9a3649813ed66193ace9347a7c7fc4ab7cf70e94851c0/rpds_py-2026.6.3-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e55d236be29255554da47abe5c577637db7c24a02b8b46f0ca9524c855801868", size = 395966, upload-time = "2026-06-30T07:16:58.557Z" }, + { url = "https://files.pythonhosted.org/packages/c3/cb/99d77e16e5534ae1d90629bbe419ba6ee170833a6a85e3aa1cc41726fbbc/rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_aarch64.whl", hash = "sha256:24e9c5386e16669b674a69c156c8eeefcb578f3b3397b713b08e6d60f3c7b187", size = 545680, upload-time = "2026-06-30T07:17:00.164Z" }, + { url = "https://files.pythonhosted.org/packages/59/15/11a29755f790cef7a2f755e8e14f4f0c33f39489e1893a632a2eee59672b/rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_i686.whl", hash = "sha256:c60924535c75f1566b6eb75b5c31a48a43fef04fa2d0d201acbad8a9969c6107", size = 611853, upload-time = "2026-06-30T07:17:01.962Z" }, + { url = "https://files.pythonhosted.org/packages/68/86/0c27547e21644da938fb530f7e1a8148dd24d02db07e7a5f2567a17ce710/rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_x86_64.whl", hash = "sha256:38a2fea2787428f811719ceb9114cb78964a3138838320c29ac39526c79c16ba", size = 573715, upload-time = "2026-06-30T07:17:03.693Z" }, + { url = "https://files.pythonhosted.org/packages/29/71/4d8fcf700931815594bce892255bbd973b94efaf0fc1932b0590df18d886/rpds_py-2026.6.3-cp315-cp315-win32.whl", hash = "sha256:d483fe17f01ad64b7bf7cc38fcefff1ca9fb83f8c2b2542b68f97ffe0611b369", size = 202864, upload-time = "2026-06-30T07:17:05.746Z" }, + { url = "https://files.pythonhosted.org/packages/eb/62/b577562de0edbb55b2be85ce5fd09c33e386b9b13eee09833af4240fd5c4/rpds_py-2026.6.3-cp315-cp315-win_amd64.whl", hash = "sha256:67e3a721ffc5d8d2210d3671872298c4a84e4b8035cfe42ffd7cde35d772b146", size = 220430, upload-time = "2026-06-30T07:17:07.471Z" }, + { url = "https://files.pythonhosted.org/packages/c8/95/d6d0b2509825141eef60669a5739eec88dbc6a48053d6c92993a5704defe/rpds_py-2026.6.3-cp315-cp315-win_arm64.whl", hash = "sha256:6e84adbcf4bf841aed8116a8264b9f50b4cb3e7bd89b516122e616ac56ca269e", size = 215877, upload-time = "2026-06-30T07:17:09.008Z" }, + { url = "https://files.pythonhosted.org/packages/b7/bf/f3ea278f0afd615c1d0f19cb69043a41526e2bb600c2b536eb192218eb27/rpds_py-2026.6.3-cp315-cp315t-macosx_10_12_x86_64.whl", hash = "sha256:ae6dd8f10bd17aad820876d24caec9efdafd80a318d16c0a48edb5e136902c6b", size = 346933, upload-time = "2026-06-30T07:17:10.762Z" }, + { url = "https://files.pythonhosted.org/packages/9d/29/9907bdf1c5346763cf10b7f6852aad86652168c259def904cbe0082c5864/rpds_py-2026.6.3-cp315-cp315t-macosx_11_0_arm64.whl", hash = "sha256:bdbd97738551fca3917c1bd7188bec1920bb520104f28e7e1007f9ceb17b7690", size = 340274, upload-time = "2026-06-30T07:17:12.266Z" }, + { url = "https://files.pythonhosted.org/packages/6f/2c/8e03767b5778ef25cebf74a7a91a2c3806f8eced4c92cb7406bbe060756d/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b95977e7211527ab0ba576e286d023389fbeeb32a6b7b771665d333c60e5342", size = 370763, upload-time = "2026-06-30T07:17:14.107Z" }, + { url = "https://files.pythonhosted.org/packages/2e/e1/df2a7e1ba2efd796af26194250b8d42c821b46592311595162af9ef0528d/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d15fde0e6fb0d88a60d221204873743e5d9f0b7d29165e62cd86d0413ad74ba6", size = 376467, upload-time = "2026-06-30T07:17:15.76Z" }, + { url = "https://files.pythonhosted.org/packages/6b/de/8a0814d1946af29cb068fb259aa8622f856df1d0bab58429448726b537f5/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a136d453475ac0fcbda502ef1e6504bd28d6d904700915d278deeab0d00fe140", size = 496689, upload-time = "2026-06-30T07:17:17.308Z" }, + { url = "https://files.pythonhosted.org/packages/df/f3/f19e0c852ba13694f5a79f3b719331051573cb5693feacf8a88ffffc3a71/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f826877d462181e5eb1c26a0026b8d0cab05d99844ecb6d8bf3627a2ca0c0442", size = 385340, upload-time = "2026-06-30T07:17:18.928Z" }, + { url = "https://files.pythonhosted.org/packages/e2/ae/7ec3a9d2d4351f99e37bcb06b6b6f954512646bfdbf9742e1de727865daf/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79486287de1730dbaff3dbd124d0ca4d2ef7f9d29bf2544f1f93c09b5bcbbd12", size = 372179, upload-time = "2026-06-30T07:17:20.539Z" }, + { url = "https://files.pythonhosted.org/packages/d3/ac/9cee911dff2aaa9a5a8354f6610bf2e6a616de9197c5fff4f54f82585f1e/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_31_riscv64.whl", hash = "sha256:808345f53cb952433ca2816f1604ff3515608a81784954f38d4452acfe8e61d5", size = 379993, upload-time = "2026-06-30T07:17:22.212Z" }, + { url = "https://files.pythonhosted.org/packages/83/6b/7c2a07ba88d1e9a936612f7a5d067467ed03d971d5a06f7d309dff044a7e/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1967debc37f64f2c4dc90a7f563aec558b471966e12adcac4e1c4240496b6ebf", size = 398909, upload-time = "2026-06-30T07:17:23.66Z" }, + { url = "https://files.pythonhosted.org/packages/97/0b/776ffcb66783637b0031f6d58d6fb55913c8b5abf00aeecd46bf933fb477/rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_aarch64.whl", hash = "sha256:f0840b5b17057f7fd918b76183a4b5a0635f43e14eb2ce60dce1d4ee4707ea00", size = 546584, upload-time = "2026-06-30T07:17:25.264Z" }, + { url = "https://files.pythonhosted.org/packages/55/33/ba3bc04d7092bd553c9b2b195624992d2cc4f3de1f380b7b93cbee67bd79/rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_i686.whl", hash = "sha256:faa679d19a6696fd54259ad321251ad77a13e70e03dd834daa762a44fb6196ef", size = 614357, upload-time = "2026-06-30T07:17:26.888Z" }, + { url = "https://files.pythonhosted.org/packages/8b/71/14edf065f04630b1a8472f7653cad03f6c478bcf95ea0e6aed55451e33ea/rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_x86_64.whl", hash = "sha256:23a439f31ccbeff1574e24889128821d1f7917470e830cf6544dced1c662262a", size = 576533, upload-time = "2026-06-30T07:17:28.546Z" }, + { url = "https://files.pythonhosted.org/packages/ba/76/65002b08596c389105720a8c0d22298b8dc25a4baf89b2ce431343c8b1de/rpds_py-2026.6.3-cp315-cp315t-win32.whl", hash = "sha256:913ca42ccad3f8cc6e292b587ae8ae49c8c823e5dce51a736252fc7c7cdfa577", size = 201204, upload-time = "2026-06-30T07:17:30.193Z" }, + { url = "https://files.pythonhosted.org/packages/8c/97/d855d6b3c322d1f27e26f5241c42016b56cf01377ea8ed348285f54652f0/rpds_py-2026.6.3-cp315-cp315t-win_amd64.whl", hash = "sha256:ae3d4fe8c0b9213624fdce7279d70e3b148b682ca20719ebd193a23ebfa47324", size = 220719, upload-time = "2026-06-30T07:17:31.788Z" }, + { url = "https://files.pythonhosted.org/packages/b4/9c/f0d19ac587fd0e4ab6b72cda355e9c5a6166b01ef7e064e437aef8eb9fef/rpds_py-2026.6.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:4cf2d36a2357e4d07bb5a4f98801265327b48256867816cfd2ceb001e9754a8f", size = 349791, upload-time = "2026-06-30T07:17:33.315Z" }, + { url = "https://files.pythonhosted.org/packages/38/c7/1d49d204c9fd2ee6c537601dc4c1ba921e03363ca576bfab94a00254ac9a/rpds_py-2026.6.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:30c6dc199b24a5e3e81d50da0f00858c5bbdb2617a750395687f4339c5818171", size = 352842, upload-time = "2026-06-30T07:17:34.897Z" }, + { url = "https://files.pythonhosted.org/packages/ac/e5/c0b5dc93cd0d4c06ce1f438907649514e2ea077bcd911e3154a51e96c38e/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9891e594296ab9dada6551c8e7b387b2721f27a67eecd528412e8906247a7b90", size = 382094, upload-time = "2026-06-30T07:17:36.514Z" }, + { url = "https://files.pythonhosted.org/packages/0d/54/ec0e907b4ca8d541112db352409bd15f871c9b243e0c92c9b5a46ae96f01/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b5c2dc92304aa48a4a60443b548bb12f12e119d4b72f314015e67b9e1be97fca", size = 388662, upload-time = "2026-06-30T07:17:38.235Z" }, + { url = "https://files.pythonhosted.org/packages/d3/f4/921c22a4fd0f1c1ac13a3996ffbf0aa67951e2c8ad0d1d9574938a2932e8/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:127e08c0642d880cf32ca47ec2a4a77b901f7e2dd1ad9762adb13955d72ffcc9", size = 504896, upload-time = "2026-06-30T07:17:39.689Z" }, + { url = "https://files.pythonhosted.org/packages/0b/1b/a114b972cefa1ab1cdb3c7bb177cd3844a12826c507c722d3a73516dbbaf/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8bb68f03f395eb793220b45c097bd4d8c32944393da0fad8b999efac0868fc8c", size = 391545, upload-time = "2026-06-30T07:17:41.336Z" }, + { url = "https://files.pythonhosted.org/packages/4e/98/af9b3db77d47fcbe6c8c1f36e2c2147ec70292819e99c325f871584a1c11/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3450b693fde92133e9f51060568a4c31fcca76d5e53bbd611e689ca446517e9", size = 380059, upload-time = "2026-06-30T07:17:42.857Z" }, + { url = "https://files.pythonhosted.org/packages/c9/ba/0efd8668b97c1d26a61566386c636a7a7a09829e474fdf807caa15a2c844/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:5e8d07bddee435a2ff6f1920e18feff28d0bc4533e42f4bf6927fbd073312c41", size = 393235, upload-time = "2026-06-30T07:17:44.637Z" }, + { url = "https://files.pythonhosted.org/packages/62/90/8c139ee9690f73b0829f32647de6f40d826f8f443af6fa72644f96351aac/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3a83ae6c67b7676b9878378547ca8e93ed77a580037bcbcd1d32f739e1e6089c", size = 413008, upload-time = "2026-06-30T07:17:46.225Z" }, + { url = "https://files.pythonhosted.org/packages/9c/97/0043896fdd7828ce09a1d9a8b06433714d0960fc4ff3fc4aa72b666b764e/rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2bfd04c19ddbd6640de0b51894d764bd2758854d5b75bd102d2ef10cb9c293a9", size = 558118, upload-time = "2026-06-30T07:17:47.759Z" }, + { url = "https://files.pythonhosted.org/packages/f6/40/02355f0e134f783a8f9814c4680a1bd311d37671577a5964ea838573ff37/rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:ca6546b66be9dc4738b1b043d5ebd5488c66c578c5ff0fd0e8065313fe3afb76", size = 623138, upload-time = "2026-06-30T07:17:49.355Z" }, + { url = "https://files.pythonhosted.org/packages/10/85/48f0abdcef5cce4e034c7a5b0ceeceba0b01bf0d942824f4bb720afe2dec/rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:8e65860d238379ed982fd9ba690579b5e95af2f4840f99c772816dbe573cb826", size = 586486, upload-time = "2026-06-30T07:17:51.141Z" }, +] + +[[package]] +name = "scipy" +version = "1.17.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.12' and sys_platform == 'win32'", + "python_full_version < '3.12' and sys_platform == 'emscripten'", + "python_full_version < '3.12' and sys_platform != 'emscripten' and sys_platform != 'win32'", +] +dependencies = [ + { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/75/b4ce781849931fef6fd529afa6b63711d5a733065722d0c3e2724af9e40a/scipy-1.17.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:1f95b894f13729334fb990162e911c9e5dc1ab390c58aa6cbecb389c5b5e28ec", size = 31613675, upload-time = "2026-02-23T00:16:00.13Z" }, + { url = "https://files.pythonhosted.org/packages/f7/58/bccc2861b305abdd1b8663d6130c0b3d7cc22e8d86663edbc8401bfd40d4/scipy-1.17.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:e18f12c6b0bc5a592ed23d3f7b891f68fd7f8241d69b7883769eb5d5dfb52696", size = 28162057, upload-time = "2026-02-23T00:16:09.456Z" }, + { url = "https://files.pythonhosted.org/packages/6d/ee/18146b7757ed4976276b9c9819108adbc73c5aad636e5353e20746b73069/scipy-1.17.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a3472cfbca0a54177d0faa68f697d8ba4c80bbdc19908c3465556d9f7efce9ee", size = 20334032, upload-time = "2026-02-23T00:16:17.358Z" }, + { url = "https://files.pythonhosted.org/packages/ec/e6/cef1cf3557f0c54954198554a10016b6a03b2ec9e22a4e1df734936bd99c/scipy-1.17.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:766e0dc5a616d026a3a1cffa379af959671729083882f50307e18175797b3dfd", size = 22709533, upload-time = "2026-02-23T00:16:25.791Z" }, + { url = "https://files.pythonhosted.org/packages/4d/60/8804678875fc59362b0fb759ab3ecce1f09c10a735680318ac30da8cd76b/scipy-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:744b2bf3640d907b79f3fd7874efe432d1cf171ee721243e350f55234b4cec4c", size = 33062057, upload-time = "2026-02-23T00:16:36.931Z" }, + { url = "https://files.pythonhosted.org/packages/09/7d/af933f0f6e0767995b4e2d705a0665e454d1c19402aa7e895de3951ebb04/scipy-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43af8d1f3bea642559019edfe64e9b11192a8978efbd1539d7bc2aaa23d92de4", size = 35349300, upload-time = "2026-02-23T00:16:49.108Z" }, + { url = "https://files.pythonhosted.org/packages/b4/3d/7ccbbdcbb54c8fdc20d3b6930137c782a163fa626f0aef920349873421ba/scipy-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cd96a1898c0a47be4520327e01f874acfd61fb48a9420f8aa9f6483412ffa444", size = 35127333, upload-time = "2026-02-23T00:17:01.293Z" }, + { url = "https://files.pythonhosted.org/packages/e8/19/f926cb11c42b15ba08e3a71e376d816ac08614f769b4f47e06c3580c836a/scipy-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4eb6c25dd62ee8d5edf68a8e1c171dd71c292fdae95d8aeb3dd7d7de4c364082", size = 37741314, upload-time = "2026-02-23T00:17:12.576Z" }, + { url = "https://files.pythonhosted.org/packages/95/da/0d1df507cf574b3f224ccc3d45244c9a1d732c81dcb26b1e8a766ae271a8/scipy-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:d30e57c72013c2a4fe441c2fcb8e77b14e152ad48b5464858e07e2ad9fbfceff", size = 36607512, upload-time = "2026-02-23T00:17:23.424Z" }, + { url = "https://files.pythonhosted.org/packages/68/7f/bdd79ceaad24b671543ffe0ef61ed8e659440eb683b66f033454dcee90eb/scipy-1.17.1-cp311-cp311-win_arm64.whl", hash = "sha256:9ecb4efb1cd6e8c4afea0daa91a87fbddbce1b99d2895d151596716c0b2e859d", size = 24599248, upload-time = "2026-02-23T00:17:34.561Z" }, + { url = "https://files.pythonhosted.org/packages/35/48/b992b488d6f299dbe3f11a20b24d3dda3d46f1a635ede1c46b5b17a7b163/scipy-1.17.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8", size = 31610954, upload-time = "2026-02-23T00:17:49.855Z" }, + { url = "https://files.pythonhosted.org/packages/b2/02/cf107b01494c19dc100f1d0b7ac3cc08666e96ba2d64db7626066cee895e/scipy-1.17.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76", size = 28172662, upload-time = "2026-02-23T00:18:01.64Z" }, + { url = "https://files.pythonhosted.org/packages/cf/a9/599c28631bad314d219cf9ffd40e985b24d603fc8a2f4ccc5ae8419a535b/scipy-1.17.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086", size = 20344366, upload-time = "2026-02-23T00:18:12.015Z" }, + { url = "https://files.pythonhosted.org/packages/35/f5/906eda513271c8deb5af284e5ef0206d17a96239af79f9fa0aebfe0e36b4/scipy-1.17.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b", size = 22704017, upload-time = "2026-02-23T00:18:21.502Z" }, + { url = "https://files.pythonhosted.org/packages/da/34/16f10e3042d2f1d6b66e0428308ab52224b6a23049cb2f5c1756f713815f/scipy-1.17.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21", size = 32927842, upload-time = "2026-02-23T00:18:35.367Z" }, + { url = "https://files.pythonhosted.org/packages/01/8e/1e35281b8ab6d5d72ebe9911edcdffa3f36b04ed9d51dec6dd140396e220/scipy-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458", size = 35235890, upload-time = "2026-02-23T00:18:49.188Z" }, + { url = "https://files.pythonhosted.org/packages/c5/5c/9d7f4c88bea6e0d5a4f1bc0506a53a00e9fcb198de372bfe4d3652cef482/scipy-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb", size = 35003557, upload-time = "2026-02-23T00:18:54.74Z" }, + { url = "https://files.pythonhosted.org/packages/65/94/7698add8f276dbab7a9de9fb6b0e02fc13ee61d51c7c3f85ac28b65e1239/scipy-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea", size = 37625856, upload-time = "2026-02-23T00:19:00.307Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/dc08d77fbf3d87d3ee27f6a0c6dcce1de5829a64f2eae85a0ecc1f0daa73/scipy-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87", size = 36549682, upload-time = "2026-02-23T00:19:07.67Z" }, + { url = "https://files.pythonhosted.org/packages/bc/98/fe9ae9ffb3b54b62559f52dedaebe204b408db8109a8c66fdd04869e6424/scipy-1.17.1-cp312-cp312-win_arm64.whl", hash = "sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3", size = 24547340, upload-time = "2026-02-23T00:19:12.024Z" }, + { url = "https://files.pythonhosted.org/packages/76/27/07ee1b57b65e92645f219b37148a7e7928b82e2b5dbeccecb4dff7c64f0b/scipy-1.17.1-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c", size = 31590199, upload-time = "2026-02-23T00:19:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ae/db19f8ab842e9b724bf5dbb7db29302a91f1e55bc4d04b1025d6d605a2c5/scipy-1.17.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f", size = 28154001, upload-time = "2026-02-23T00:19:22.241Z" }, + { url = "https://files.pythonhosted.org/packages/5b/58/3ce96251560107b381cbd6e8413c483bbb1228a6b919fa8652b0d4090e7f/scipy-1.17.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d", size = 20325719, upload-time = "2026-02-23T00:19:26.329Z" }, + { url = "https://files.pythonhosted.org/packages/b2/83/15087d945e0e4d48ce2377498abf5ad171ae013232ae31d06f336e64c999/scipy-1.17.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b", size = 22683595, upload-time = "2026-02-23T00:19:30.304Z" }, + { url = "https://files.pythonhosted.org/packages/b4/e0/e58fbde4a1a594c8be8114eb4aac1a55bcd6587047efc18a61eb1f5c0d30/scipy-1.17.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6", size = 32896429, upload-time = "2026-02-23T00:19:35.536Z" }, + { url = "https://files.pythonhosted.org/packages/f5/5f/f17563f28ff03c7b6799c50d01d5d856a1d55f2676f537ca8d28c7f627cd/scipy-1.17.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464", size = 35203952, upload-time = "2026-02-23T00:19:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a5/9afd17de24f657fdfe4df9a3f1ea049b39aef7c06000c13db1530d81ccca/scipy-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950", size = 34979063, upload-time = "2026-02-23T00:19:47.547Z" }, + { url = "https://files.pythonhosted.org/packages/8b/13/88b1d2384b424bf7c924f2038c1c409f8d88bb2a8d49d097861dd64a57b2/scipy-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369", size = 37598449, upload-time = "2026-02-23T00:19:53.238Z" }, + { url = "https://files.pythonhosted.org/packages/35/e5/d6d0e51fc888f692a35134336866341c08655d92614f492c6860dc45bb2c/scipy-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448", size = 36510943, upload-time = "2026-02-23T00:20:50.89Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fd/3be73c564e2a01e690e19cc618811540ba5354c67c8680dce3281123fb79/scipy-1.17.1-cp313-cp313-win_arm64.whl", hash = "sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87", size = 24545621, upload-time = "2026-02-23T00:20:55.871Z" }, + { url = "https://files.pythonhosted.org/packages/6f/6b/17787db8b8114933a66f9dcc479a8272e4b4da75fe03b0c282f7b0ade8cd/scipy-1.17.1-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a", size = 31936708, upload-time = "2026-02-23T00:19:58.694Z" }, + { url = "https://files.pythonhosted.org/packages/38/2e/524405c2b6392765ab1e2b722a41d5da33dc5c7b7278184a8ad29b6cb206/scipy-1.17.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0", size = 28570135, upload-time = "2026-02-23T00:20:03.934Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c3/5bd7199f4ea8556c0c8e39f04ccb014ac37d1468e6cfa6a95c6b3562b76e/scipy-1.17.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce", size = 20741977, upload-time = "2026-02-23T00:20:07.935Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b8/8ccd9b766ad14c78386599708eb745f6b44f08400a5fd0ade7cf89b6fc93/scipy-1.17.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6", size = 23029601, upload-time = "2026-02-23T00:20:12.161Z" }, + { url = "https://files.pythonhosted.org/packages/6d/a0/3cb6f4d2fb3e17428ad2880333cac878909ad1a89f678527b5328b93c1d4/scipy-1.17.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e", size = 33019667, upload-time = "2026-02-23T00:20:17.208Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c3/2d834a5ac7bf3a0c806ad1508efc02dda3c8c61472a56132d7894c312dea/scipy-1.17.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475", size = 35264159, upload-time = "2026-02-23T00:20:23.087Z" }, + { url = "https://files.pythonhosted.org/packages/4d/77/d3ed4becfdbd217c52062fafe35a72388d1bd82c2d0ba5ca19d6fcc93e11/scipy-1.17.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50", size = 35102771, upload-time = "2026-02-23T00:20:28.636Z" }, + { url = "https://files.pythonhosted.org/packages/bd/12/d19da97efde68ca1ee5538bb261d5d2c062f0c055575128f11a2730e3ac1/scipy-1.17.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca", size = 37665910, upload-time = "2026-02-23T00:20:34.743Z" }, + { url = "https://files.pythonhosted.org/packages/06/1c/1172a88d507a4baaf72c5a09bb6c018fe2ae0ab622e5830b703a46cc9e44/scipy-1.17.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c", size = 36562980, upload-time = "2026-02-23T00:20:40.575Z" }, + { url = "https://files.pythonhosted.org/packages/70/b0/eb757336e5a76dfa7911f63252e3b7d1de00935d7705cf772db5b45ec238/scipy-1.17.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49", size = 24856543, upload-time = "2026-02-23T00:20:45.313Z" }, + { url = "https://files.pythonhosted.org/packages/cf/83/333afb452af6f0fd70414dc04f898647ee1423979ce02efa75c3b0f2c28e/scipy-1.17.1-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:a48a72c77a310327f6a3a920092fa2b8fd03d7deaa60f093038f22d98e096717", size = 31584510, upload-time = "2026-02-23T00:21:01.015Z" }, + { url = "https://files.pythonhosted.org/packages/ed/a6/d05a85fd51daeb2e4ea71d102f15b34fedca8e931af02594193ae4fd25f7/scipy-1.17.1-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:45abad819184f07240d8a696117a7aacd39787af9e0b719d00285549ed19a1e9", size = 28170131, upload-time = "2026-02-23T00:21:05.888Z" }, + { url = "https://files.pythonhosted.org/packages/db/7b/8624a203326675d7746a254083a187398090a179335b2e4a20e2ddc46e83/scipy-1.17.1-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:3fd1fcdab3ea951b610dc4cef356d416d5802991e7e32b5254828d342f7b7e0b", size = 20342032, upload-time = "2026-02-23T00:21:09.904Z" }, + { url = "https://files.pythonhosted.org/packages/c9/35/2c342897c00775d688d8ff3987aced3426858fd89d5a0e26e020b660b301/scipy-1.17.1-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7bdf2da170b67fdf10bca777614b1c7d96ae3ca5794fd9587dce41eb2966e866", size = 22678766, upload-time = "2026-02-23T00:21:14.313Z" }, + { url = "https://files.pythonhosted.org/packages/ef/f2/7cdb8eb308a1a6ae1e19f945913c82c23c0c442a462a46480ce487fdc0ac/scipy-1.17.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:adb2642e060a6549c343603a3851ba76ef0b74cc8c079a9a58121c7ec9fe2350", size = 32957007, upload-time = "2026-02-23T00:21:19.663Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2e/7eea398450457ecb54e18e9d10110993fa65561c4f3add5e8eccd2b9cd41/scipy-1.17.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:eee2cfda04c00a857206a4330f0c5e3e56535494e30ca445eb19ec624ae75118", size = 35221333, upload-time = "2026-02-23T00:21:25.278Z" }, + { url = "https://files.pythonhosted.org/packages/d9/77/5b8509d03b77f093a0d52e606d3c4f79e8b06d1d38c441dacb1e26cacf46/scipy-1.17.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d2650c1fb97e184d12d8ba010493ee7b322864f7d3d00d3f9bb97d9c21de4068", size = 35042066, upload-time = "2026-02-23T00:21:31.358Z" }, + { url = "https://files.pythonhosted.org/packages/f9/df/18f80fb99df40b4070328d5ae5c596f2f00fffb50167e31439e932f29e7d/scipy-1.17.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:08b900519463543aa604a06bec02461558a6e1cef8fdbb8098f77a48a83c8118", size = 37612763, upload-time = "2026-02-23T00:21:37.247Z" }, + { url = "https://files.pythonhosted.org/packages/4b/39/f0e8ea762a764a9dc52aa7dabcfad51a354819de1f0d4652b6a1122424d6/scipy-1.17.1-cp314-cp314-win_amd64.whl", hash = "sha256:3877ac408e14da24a6196de0ddcace62092bfc12a83823e92e49e40747e52c19", size = 37290984, upload-time = "2026-02-23T00:22:35.023Z" }, + { url = "https://files.pythonhosted.org/packages/7c/56/fe201e3b0f93d1a8bcf75d3379affd228a63d7e2d80ab45467a74b494947/scipy-1.17.1-cp314-cp314-win_arm64.whl", hash = "sha256:f8885db0bc2bffa59d5c1b72fad7a6a92d3e80e7257f967dd81abb553a90d293", size = 25192877, upload-time = "2026-02-23T00:22:39.798Z" }, + { url = "https://files.pythonhosted.org/packages/96/ad/f8c414e121f82e02d76f310f16db9899c4fcde36710329502a6b2a3c0392/scipy-1.17.1-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:1cc682cea2ae55524432f3cdff9e9a3be743d52a7443d0cba9017c23c87ae2f6", size = 31949750, upload-time = "2026-02-23T00:21:42.289Z" }, + { url = "https://files.pythonhosted.org/packages/7c/b0/c741e8865d61b67c81e255f4f0a832846c064e426636cd7de84e74d209be/scipy-1.17.1-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:2040ad4d1795a0ae89bfc7e8429677f365d45aa9fd5e4587cf1ea737f927b4a1", size = 28585858, upload-time = "2026-02-23T00:21:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/ed/1b/3985219c6177866628fa7c2595bfd23f193ceebbe472c98a08824b9466ff/scipy-1.17.1-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:131f5aaea57602008f9822e2115029b55d4b5f7c070287699fe45c661d051e39", size = 20757723, upload-time = "2026-02-23T00:21:52.039Z" }, + { url = "https://files.pythonhosted.org/packages/c0/19/2a04aa25050d656d6f7b9e7b685cc83d6957fb101665bfd9369ca6534563/scipy-1.17.1-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9cdc1a2fcfd5c52cfb3045feb399f7b3ce822abdde3a193a6b9a60b3cb5854ca", size = 23043098, upload-time = "2026-02-23T00:21:56.185Z" }, + { url = "https://files.pythonhosted.org/packages/86/f1/3383beb9b5d0dbddd030335bf8a8b32d4317185efe495374f134d8be6cce/scipy-1.17.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e3dcd57ab780c741fde8dc68619de988b966db759a3c3152e8e9142c26295ad", size = 33030397, upload-time = "2026-02-23T00:22:01.404Z" }, + { url = "https://files.pythonhosted.org/packages/41/68/8f21e8a65a5a03f25a79165ec9d2b28c00e66dc80546cf5eb803aeeff35b/scipy-1.17.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a9956e4d4f4a301ebf6cde39850333a6b6110799d470dbbb1e25326ac447f52a", size = 35281163, upload-time = "2026-02-23T00:22:07.024Z" }, + { url = "https://files.pythonhosted.org/packages/84/8d/c8a5e19479554007a5632ed7529e665c315ae7492b4f946b0deb39870e39/scipy-1.17.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:a4328d245944d09fd639771de275701ccadf5f781ba0ff092ad141e017eccda4", size = 35116291, upload-time = "2026-02-23T00:22:12.585Z" }, + { url = "https://files.pythonhosted.org/packages/52/52/e57eceff0e342a1f50e274264ed47497b59e6a4e3118808ee58ddda7b74a/scipy-1.17.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a77cbd07b940d326d39a1d1b37817e2ee4d79cb30e7338f3d0cddffae70fcaa2", size = 37682317, upload-time = "2026-02-23T00:22:18.513Z" }, + { url = "https://files.pythonhosted.org/packages/11/2f/b29eafe4a3fbc3d6de9662b36e028d5f039e72d345e05c250e121a230dd4/scipy-1.17.1-cp314-cp314t-win_amd64.whl", hash = "sha256:eb092099205ef62cd1782b006658db09e2fed75bffcae7cc0d44052d8aa0f484", size = 37345327, upload-time = "2026-02-23T00:22:24.442Z" }, + { url = "https://files.pythonhosted.org/packages/07/39/338d9219c4e87f3e708f18857ecd24d22a0c3094752393319553096b98af/scipy-1.17.1-cp314-cp314t-win_arm64.whl", hash = "sha256:200e1050faffacc162be6a486a984a0497866ec54149a01270adc8a59b7c7d21", size = 25489165, upload-time = "2026-02-23T00:22:29.563Z" }, +] + +[[package]] +name = "scipy" +version = "1.18.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'win32'", + "python_full_version >= '3.14' and sys_platform == 'emscripten'", + "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", + "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", +] +dependencies = [ + { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/25/c2700dfaf6442b4effaa91af24ebce5dc9d31bb4a69706313aae70d72cd0/scipy-1.18.0.tar.gz", hash = "sha256:67b2ad2ad54c72ca6d04975a9b2df8c3638c34ddd5b28738e94fc2b57929d378", size = 30774447, upload-time = "2026-06-19T15:01:43.456Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/19/ca10ead60b0acc80b2b833c2c4a4f2ff753d0f58b811f70d911c7e94a25c/scipy-1.18.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:7bd21faaf5a1a3b2eff922d02db5f191b99a6518db9078a8fb23169f6d22259a", size = 31056519, upload-time = "2026-06-19T14:59:45.203Z" }, + { url = "https://files.pythonhosted.org/packages/96/72/1e6442a00cd2924d361aa1b642ab6373ec35c6fabf311a760be9f76e0f13/scipy-1.18.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:265915e79107de9f946b855e50d7470d5893ec3f54b342e1aa6201cbdcd8bb6b", size = 28681889, upload-time = "2026-06-19T14:59:48.103Z" }, + { url = "https://files.pythonhosted.org/packages/9b/2d/11dd93d21e147a73ba22bd75c0b9208d3a2e0ec76d53170ce7d9029b1015/scipy-1.18.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9ab7b758be6940954a713ee466e2043e9f6e2ed965c1fce5c91039f4be3d90a9", size = 20423580, upload-time = "2026-06-19T14:59:50.665Z" }, + { url = "https://files.pythonhosted.org/packages/9c/01/93552f75e0d2a7dd115a45e59209c51e8d514daff02fc887d2623be06fe1/scipy-1.18.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:97b6cddaaee0a779ef6b5ca83c9604b27cc16b2b8fc22c142652df8793319fb8", size = 23054441, upload-time = "2026-06-19T14:59:53.564Z" }, + { url = "https://files.pythonhosted.org/packages/3c/23/21f5e703643d66f21faa6b4c73195bfcad70c55efcb4f1ab327cd7c4101a/scipy-1.18.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:52a96e21517c7292375c0e27dd796a811f03fcea5fd4d108fdfea8145dcf17ab", size = 33968720, upload-time = "2026-06-19T14:59:56.415Z" }, + { url = "https://files.pythonhosted.org/packages/dd/aa/1b939f6c67ed68635bb538e6752d3dacc02f66535182e939a89581a44e9c/scipy-1.18.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f55797419e16e7f30cf88ffb3113ce0467f00cfe3f70d5c281730b21769bfc2", size = 35287115, upload-time = "2026-06-19T14:59:59.411Z" }, + { url = "https://files.pythonhosted.org/packages/b6/ff/eec46be7e9234208f801062b53e1983085eddebd693f6c9bfb03b459830d/scipy-1.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ad033410e2e0672ffdc1042110cef20e1c46f8fd0616cee1d44d8d58fad8fc11", size = 35577989, upload-time = "2026-06-19T15:00:02.235Z" }, + { url = "https://files.pythonhosted.org/packages/84/ca/210d4759c7210bb7d269437421959b39a33434e2776b60c5cb8a763bb30a/scipy-1.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4a55985d54c769c872e64b7f4c8a81cc30ef700cc04296abbbf3705439c126de", size = 37421717, upload-time = "2026-06-19T15:00:05.102Z" }, + { url = "https://files.pythonhosted.org/packages/2b/54/9a9edb45345bd6744da5ddfb6628e5d5185920494c6a67ec45b6381004cb/scipy-1.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:71ccc8faa2dd16ac310233203474a8b5cb67f10dedd54a3116d34943f4b19132", size = 36597428, upload-time = "2026-06-19T15:00:08.112Z" }, + { url = "https://files.pythonhosted.org/packages/99/0e/33f32a2a58987e26aec0f7df252cbbad1e90ae77bdbc76f40dd4ed0cf0ea/scipy-1.18.0-cp312-cp312-win_arm64.whl", hash = "sha256:d88363fd9d8fbd3511bd273f1a49efb2a540773ddf92a91d57498ce7dd7f3e76", size = 24351481, upload-time = "2026-06-19T15:00:11.103Z" }, + { url = "https://files.pythonhosted.org/packages/05/52/9c0136c2de7ae0779b7b366447766cec6d9f0702c56bb8ffeb04c8fd3af4/scipy-1.18.0-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:09143f676d157d9f546d663504ef9c1becb819824f1afc018814176411942446", size = 31036107, upload-time = "2026-06-19T15:00:14.03Z" }, + { url = "https://files.pythonhosted.org/packages/02/73/0291a64843270f4efb86cdcf2ee0f2048631b65ec6b405398b2b4dbf11bf/scipy-1.18.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:5efe260f69417b97ddae455bfb5a95e8359f7f66ad7fa9522a60feb66f169520", size = 28663303, upload-time = "2026-06-19T15:00:16.819Z" }, + { url = "https://files.pythonhosted.org/packages/d3/0f/10ffa0b697a572f4e0d48b92a88895d366422f019f723e7e14a84c050dac/scipy-1.18.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:68363b7eaacd8b5dd426df56d782cc156468ac79a127a1b87ca597d6e2e82197", size = 20404960, upload-time = "2026-06-19T15:00:19.635Z" }, + { url = "https://files.pythonhosted.org/packages/7e/d2/e896cea21ba8edd6c81d4c55b1ffcc717e79698dcbebf9641b4cfb4c6622/scipy-1.18.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:c5557d8be5da8e41353fcd4d21491fdbab83b062fc579e94dc09a7c8ab4f669b", size = 23034074, upload-time = "2026-06-19T15:00:22.107Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b2/e83ea34279a52c03374477c74006256ec78df65fc877baa4617d6de1d202/scipy-1.18.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0d13bca67c096d89fb95ced0d8921807300fce0275643aef9533cc63a0773468", size = 33942038, upload-time = "2026-06-19T15:00:24.964Z" }, + { url = "https://files.pythonhosted.org/packages/f6/af/e8fe5fb136f51e2b01678b92cb4106d10d8cd68ec147ead2e7cb0ac75398/scipy-1.18.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a46f9273dbd0eb1cefba61c9b8648b4dfe3cbc14a080176f9a73e44b8336dc7f", size = 35266390, upload-time = "2026-06-19T15:00:28.059Z" }, + { url = "https://files.pythonhosted.org/packages/3a/49/2c5cbb907b56695fc67517811d1db234dfd83381a84814ec220aded2794d/scipy-1.18.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5aba46108853ddfc77906b6557aac839d2b52e900c1d72a1180adaaab58d265f", size = 35551324, upload-time = "2026-06-19T15:00:31.014Z" }, + { url = "https://files.pythonhosted.org/packages/bb/73/eda39f7a2d306ff0ffc574afd13c0bbb6d10a603d9a413998ee269487a80/scipy-1.18.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b6f758e35f12757b5d95c00bc6de2438e229c2664b7a92e96f205959d9f2dfa4", size = 37404785, upload-time = "2026-06-19T15:00:34.072Z" }, + { url = "https://files.pythonhosted.org/packages/b7/d2/ae881ee28d014f38e0ccbfd974a06a919ba9af34f1f74bf42b5301891d63/scipy-1.18.0-cp313-cp313-win_amd64.whl", hash = "sha256:1afac4a847207c7ff8efd321734a50b06d0280b3b2a2c0fc2f413101747ad7c7", size = 36554943, upload-time = "2026-06-19T15:00:36.903Z" }, + { url = "https://files.pythonhosted.org/packages/70/3a/21154e2d54eb3639c6bf4dbae2e531c68356bfe95990daa30df33b30d556/scipy-1.18.0-cp313-cp313-win_arm64.whl", hash = "sha256:c5dbddf60e58c2312316d097271a8e73d40eaf2eabfa4d95ed7d3695bbf2ce7b", size = 24350911, upload-time = "2026-06-19T15:00:40.062Z" }, + { url = "https://files.pythonhosted.org/packages/78/b5/915a19b3de2f7430062b509653563db1633ddbb6f021b06731521115d4e2/scipy-1.18.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:4c256ee70c0d1a8a2ace807e199ccd4e3f57037433842abb3fb36bc17eaa9578", size = 31036253, upload-time = "2026-06-19T15:00:43.216Z" }, + { url = "https://files.pythonhosted.org/packages/d7/88/b72def7262e150d16be13fca37a96481138d624e700340bc3362a7588929/scipy-1.18.0-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:2ef3abc54a4ffc53765374b0d5728532dfdd2585ed23f6b11c206a1f0b1b9af8", size = 28673758, upload-time = "2026-06-19T15:00:46.663Z" }, + { url = "https://files.pythonhosted.org/packages/91/02/2e636a61a525632c373cf6a9c24442a3ffb79e364d38e98b32042964ac32/scipy-1.18.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:f2a6af57bd9e4a75d70e4117e78a1bbee84f79ae3fbb6d0111005d6ebcc4cb8d", size = 20415514, upload-time = "2026-06-19T15:00:49.399Z" }, + { url = "https://files.pythonhosted.org/packages/c9/b6/2135974442f6aba159d9d39d774a1c8cb19947016725d69fecc685df45bf/scipy-1.18.0-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:3f1ac564d3bf6c03d861d2cd87a1bea0da2887136f7fb1bf519c05a8971452d6", size = 23034398, upload-time = "2026-06-19T15:00:51.941Z" }, + { url = "https://files.pythonhosted.org/packages/f6/e6/ba89ec5abf6ee9257c0d1ec985573f3ae32742c24bc03e016388a40b1b15/scipy-1.18.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40395a5fcd1abee49a5c7aaa98c29db393eedc835138560a588c47ec16156690", size = 33998032, upload-time = "2026-06-19T15:00:54.838Z" }, + { url = "https://files.pythonhosted.org/packages/7f/c4/bc41eb19b0fd0db868f4132920879019318d80cc522ad8f2bca4611af808/scipy-1.18.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8ca01e8ae69f1b18e9a58d91afead31be3cef0dd905a10249dac559ee15460a0", size = 35283333, upload-time = "2026-06-19T15:00:58.152Z" }, + { url = "https://files.pythonhosted.org/packages/53/a4/cbdeef6eb3830a8462a9d4ada814de5fc984345cc9ecf17cbec51a036f1e/scipy-1.18.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7a7f3b01647384dbc3a711e8c6778e0aabbe93959249fef5c7393396bcac0867", size = 35610216, upload-time = "2026-06-19T15:01:01.155Z" }, + { url = "https://files.pythonhosted.org/packages/80/4d/b2b82502b65f661d1b789c1665dcdf315d5f12194e06fc0b37946294ebae/scipy-1.18.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6aa94e78ec192a30063a5e72e561c28af769dc311190b24fe91774eff1969709", size = 37418960, upload-time = "2026-06-19T15:01:04.155Z" }, + { url = "https://files.pythonhosted.org/packages/93/3e/902d836831474b0ab5a37d16404f7bc5fafd9efba632890e271ba952635f/scipy-1.18.0-cp314-cp314-win_amd64.whl", hash = "sha256:2d8bbdc6c817f5b4006a54d799d4f5bab6f910193cbb9a1ff310833d4d270f61", size = 37288845, upload-time = "2026-06-19T15:01:07.822Z" }, + { url = "https://files.pythonhosted.org/packages/b6/43/8d73b337a3bdb14daa0314f0434210747c02d79d729ce1777574a817dcf6/scipy-1.18.0-cp314-cp314-win_arm64.whl", hash = "sha256:18e9575f1569b2c54174e6159d32942e03731177f63dce7975f0a0c88d102f5b", size = 24988971, upload-time = "2026-06-19T15:01:11.076Z" }, + { url = "https://files.pythonhosted.org/packages/b4/b4/f11918b0508a2787031a0499a03fbe3546f3bb5ca05d01038c45b278c09a/scipy-1.18.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:f351e0dd702687d12a402b867a1b4146a256923e1c38317cbc472f6372b94707", size = 31399325, upload-time = "2026-06-19T15:01:13.723Z" }, + { url = "https://files.pythonhosted.org/packages/7b/d1/1f287b57c0ff0ee5185dff3946d92c8017d39b0e431f0ae79a3ff1859512/scipy-1.18.0-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:7c7a51b33ce387193c97f228320cf8e87361daa1bba750638677729598b3e677", size = 29092110, upload-time = "2026-06-19T15:01:16.908Z" }, + { url = "https://files.pythonhosted.org/packages/ff/1a/7b74eb6c392fdcb27d414c0e7558a6d0231eb3b6d73571f479bb81ea8794/scipy-1.18.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:84031d7b052a54fae2f8632e0ec802073d385476eb9a63079bce6e23ef9283d4", size = 20833811, upload-time = "2026-06-19T15:01:20.488Z" }, + { url = "https://files.pythonhosted.org/packages/7c/ad/f3941716320a7b9cb4d68734a903b45fe16eff5fb7da7e16f2e619304979/scipy-1.18.0-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:56abf29a7c067dde59be8b9a22d606a4ea1b2f2a4b756d9d903c62818f5dacce", size = 23396644, upload-time = "2026-06-19T15:01:23.364Z" }, + { url = "https://files.pythonhosted.org/packages/22/22/1446b62ffe07f9719b7d9b1b6a4e05a772833ae8f441fe4c22c34c9b250f/scipy-1.18.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ad44305cfa24b1ba5803cbbebf033590ccbac1aa5d612d727b785325ab408b0", size = 34079318, upload-time = "2026-06-19T15:01:26.002Z" }, + { url = "https://files.pythonhosted.org/packages/56/3b/b87da667098bb470fa30c7011b0ba351ee976dd395c78798c66e941665a3/scipy-1.18.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:945c1761b93f38d7f99ae81ae80c63e621471608c7eeead563f6df025585cd58", size = 35324320, upload-time = "2026-06-19T15:01:28.881Z" }, + { url = "https://files.pythonhosted.org/packages/f8/a1/c7932f91909759b0267f75fdea34e91309f96b895757534b76a90b6b4344/scipy-1.18.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1a4441f15d620578772a49e5ab48c0ee1f7a0220e387110283062729136b2553", size = 35699541, upload-time = "2026-06-19T15:01:31.968Z" }, + { url = "https://files.pythonhosted.org/packages/f7/86/5185061a1fcc41d18c5dc2463969b3a3964b31d9ac67b2fb05d4c7ff7670/scipy-1.18.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9aac6192fac56bf2ca534389d24623f07b39ff83317d58287285e7fbd622ff76", size = 37472480, upload-time = "2026-06-19T15:01:35.136Z" }, + { url = "https://files.pythonhosted.org/packages/31/8e/f04c68e39919a010d34f2ee1367fd705b0a25a02f609d755f0bfbc0a15fc/scipy-1.18.0-cp314-cp314t-win_amd64.whl", hash = "sha256:e40baea28ae7f5475c779741e2d90b1247c78531207b49c7030e698ff81cee3f", size = 37365390, upload-time = "2026-06-19T15:01:38.091Z" }, + { url = "https://files.pythonhosted.org/packages/d5/19/969dc072906c84dd0a3b05dcf57ea750936087d7873549e408b35cfc3f97/scipy-1.18.0-cp314-cp314t-win_arm64.whl", hash = "sha256:368e0a705903c466aa5f08eefb39e6b1b6b2d659e7352a31fd9e2438365be0f8", size = 25279661, upload-time = "2026-06-19T15:01:40.817Z" }, +] + +[[package]] +name = "selectolax" +version = "0.4.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/47/df/d19f9b47eb6c1aa0ddf95259c757c018c39682facb569e81c23e173bbf35/selectolax-0.4.10.tar.gz", hash = "sha256:89764b4d1e32d38e635dfb270a639fc707af4315b863fd161357a517321e5046", size = 4880217, upload-time = "2026-05-26T15:43:06.411Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/34/cee18c79edc4268b679ff7af60c58918f2c8279de7715998c81ff4f39eff/selectolax-0.4.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b65ce508ed7f3951a2f36f807494c253d0ebe99d2b18ede149f9a97b99be7d7a", size = 2216148, upload-time = "2026-05-26T15:41:39.522Z" }, + { url = "https://files.pythonhosted.org/packages/8a/29/60ddd1570386ea2e13683848b7d21ffbd1d41c921cb88df20cd10fd6679d/selectolax-0.4.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c1bb382bd7009676716814ee81327015ab3d472aff0148fccbd20322d37af83d", size = 2270171, upload-time = "2026-05-26T15:41:40.929Z" }, + { url = "https://files.pythonhosted.org/packages/41/e7/7bef2f76dfd0d270899277d07d7418df82623f1985d570f73ad0a0b963a9/selectolax-0.4.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48c238f4f2b4ebd3d94ec260363d2bbab7df2825b592a1f9b12d59a9a9e9ee9a", size = 2347593, upload-time = "2026-05-26T15:41:42.391Z" }, + { url = "https://files.pythonhosted.org/packages/5b/f5/fdb59ef99828ee43e2792507bd67f7d5dfd844dbb1ac6512698e16fa8add/selectolax-0.4.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:975bf1199c80965307168a05c4d88312a62b8151ac27216ed1248fbd175695bb", size = 2399514, upload-time = "2026-05-26T15:41:44.151Z" }, + { url = "https://files.pythonhosted.org/packages/6e/03/46ed77c44e877278723c31ce8fac7942a6909d46a4d50c87cd6d685b21ce/selectolax-0.4.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c74168deeb116a1271e74e7a157e329930b7f54e328b323ce00bf7089f39dc9", size = 2352416, upload-time = "2026-05-26T15:41:45.56Z" }, + { url = "https://files.pythonhosted.org/packages/c7/80/cb89e578a53cf51674c9083e3a9518a45bf5b8af56309cc1fa63cc007703/selectolax-0.4.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:547de570413e22ae5cbc8432d6224dd5a2d5bc66d1a50e34b705e5940d035caa", size = 2409794, upload-time = "2026-05-26T15:41:47.374Z" }, + { url = "https://files.pythonhosted.org/packages/06/af/5346ac7a2053a502687b136c836c0902d0570398e8f71d73182492a3863b/selectolax-0.4.10-cp311-cp311-win32.whl", hash = "sha256:e053064c5e00788a6bcc5427a753e41c058f29e4285bf84a3e663989b7218cdb", size = 1768531, upload-time = "2026-05-26T15:41:49.111Z" }, + { url = "https://files.pythonhosted.org/packages/81/8c/ae5b0f04d1e39bc212f3a3e1cf308a8c5f117f03cd3c089b6a04e8d8fbc7/selectolax-0.4.10-cp311-cp311-win_amd64.whl", hash = "sha256:db236a92e49b27369a98b9e8ac6c97e1534368d83281d097f3e50c2ba597f112", size = 1865401, upload-time = "2026-05-26T15:41:50.695Z" }, + { url = "https://files.pythonhosted.org/packages/cf/b5/7eb96a229cbdd7773c223c7ecfd0b0eead78b330218c6768179ab5daa2d1/selectolax-0.4.10-cp311-cp311-win_arm64.whl", hash = "sha256:746838a34df35ceff5f6154991b09aa6c27f044dc1fe9a4137f8c57e3e9f1203", size = 1816391, upload-time = "2026-05-26T15:41:52.135Z" }, + { url = "https://files.pythonhosted.org/packages/33/26/a7966a2e2667463717c71903851b4c8a434afd3b592e8528bc87efa1cb1e/selectolax-0.4.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c1933f53fe7410777b3373b9900010ae8d392a6d245f019d8f011d12f700e389", size = 2241715, upload-time = "2026-05-26T15:41:53.81Z" }, + { url = "https://files.pythonhosted.org/packages/76/55/0181dfa3cdec4c5db9868ca489fc50b5521a74c1847a0628db6e08bd3359/selectolax-0.4.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40babac4aea579edfb32b74acdacdb4c38bacb1ee3d1c4189f9665c52c67586f", size = 2292823, upload-time = "2026-05-26T15:41:55.692Z" }, + { url = "https://files.pythonhosted.org/packages/47/95/6d821c8de1bcc8be380c4f9efc6688a433796a5c18809b77219e9616a918/selectolax-0.4.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4d41b7e95ab0e025053efcba71267af12a6c12bc624e3bdf5dd83c6534f3d696", size = 2375082, upload-time = "2026-05-26T15:41:57.243Z" }, + { url = "https://files.pythonhosted.org/packages/2e/c5/23903b34869f6721c36a46b8231da202b7af729f6e28b54fbb06f59e5195/selectolax-0.4.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:98e41ac4a761c5d4589ce9c40866a80fa2c5d413ac6b3af9546b43a2b3a8da18", size = 2422073, upload-time = "2026-05-26T15:41:58.667Z" }, + { url = "https://files.pythonhosted.org/packages/23/f3/85f1ac82944254822d7bc8b20bae674d9bb4fb93fd3e101f6f807c7f075c/selectolax-0.4.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:425288d4f5b18cfb0049fd1d6f3bddfba319657b9547b0e2bd24103b4b69435e", size = 2379122, upload-time = "2026-05-26T15:42:00.089Z" }, + { url = "https://files.pythonhosted.org/packages/47/61/c4e8aa47d25245644cc0ce60ea2eb922f501ccea8f642ba01c5d551e8959/selectolax-0.4.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1ff2585eaf13ddc5c6614b10a7e47679b0c18a78821495e0c448364f8871592e", size = 2441931, upload-time = "2026-05-26T15:42:01.522Z" }, + { url = "https://files.pythonhosted.org/packages/67/73/05eda9364c5f1053f166648a1e69c546e53af0e01901a2f218b32c2a7010/selectolax-0.4.10-cp312-cp312-win32.whl", hash = "sha256:2428f04d2a48ba5f4c182f0d7234a7e38ac799b3358b3063f0ae41f754ee1c4a", size = 1763584, upload-time = "2026-05-26T15:42:03.055Z" }, + { url = "https://files.pythonhosted.org/packages/10/66/abcf20676cd05eeefef58f6644855216575ae3988b719e914d359ffa3104/selectolax-0.4.10-cp312-cp312-win_amd64.whl", hash = "sha256:c4b4b7c5d09a20539d369891332a107a869ee170453254048fbc18f893deb4f9", size = 1859909, upload-time = "2026-05-26T15:42:04.843Z" }, + { url = "https://files.pythonhosted.org/packages/fc/a5/6a84520df37873cbc08af4fd8a719a495d5971a7c370c2ed8512e8391935/selectolax-0.4.10-cp312-cp312-win_arm64.whl", hash = "sha256:98f93b92d23a8feb88efc7c8e692221456bae30dc551d86d376931491152b909", size = 1810017, upload-time = "2026-05-26T15:42:06.561Z" }, + { url = "https://files.pythonhosted.org/packages/37/88/f932da5e018dcec1fa4286414db4798afdd244fbf95a46ac79db018318e1/selectolax-0.4.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3236fc0fbea9e237ee963274ebae700e68b9d6784bf91e0b3693eda63b393fa2", size = 2241128, upload-time = "2026-05-26T15:42:08.34Z" }, + { url = "https://files.pythonhosted.org/packages/9a/10/0a2caaceda0c6cf226fe5e43f6d7b9134207cf61642bed651712c7599646/selectolax-0.4.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b43da45acece07f94e4b0d555e073f1a91314c98cb86d10860a1b291bc498976", size = 2291992, upload-time = "2026-05-26T15:42:09.723Z" }, + { url = "https://files.pythonhosted.org/packages/fb/d5/687dfb8c09110a5986a4f3f8e424b61c0f71716c5784077b76f02e4e81d7/selectolax-0.4.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a5c80477a3a93f0ee350d832c6fc764cd2df1299914a816bcd5ed4f0c9701b9b", size = 2374518, upload-time = "2026-05-26T15:42:11.201Z" }, + { url = "https://files.pythonhosted.org/packages/64/44/ac6011d2785f643baf3be4b8910e657e71427d37e41a15a513274b794425/selectolax-0.4.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:16055f712bd93507ce61ecac156bb7acf96b2e46c4d4d30c616e810f74f4da6e", size = 2421458, upload-time = "2026-05-26T15:42:12.656Z" }, + { url = "https://files.pythonhosted.org/packages/e6/fa/0cd29c8a629fe890a53ef2db9cf9282dffad9f4d0cf9a41553a87058f82c/selectolax-0.4.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d42566a7e649d4e5461e763a241f46542df2613876422e0530bc59999063f36d", size = 2378999, upload-time = "2026-05-26T15:42:14.011Z" }, + { url = "https://files.pythonhosted.org/packages/fd/d0/3f9ba04dba314c2f3237aca73e5b6c9578d693297bc0c91b2224d48b2455/selectolax-0.4.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6517b40e41ae5cc7756f92d88c59f178eb4a3683c7ce39c66bd5617587f628e5", size = 2441425, upload-time = "2026-05-26T15:42:15.66Z" }, + { url = "https://files.pythonhosted.org/packages/34/f3/83e49b1b8dd68d4844a85930a6d68cbf14636be222cda03229833b8326be/selectolax-0.4.10-cp313-cp313-win32.whl", hash = "sha256:7c596b424c55ae87003140f55e6aa6f88e060b645781fa69e947ef60691b2bde", size = 1763466, upload-time = "2026-05-26T15:42:17.674Z" }, + { url = "https://files.pythonhosted.org/packages/16/6b/e77507d5aa7d5724c94333fa229694e108c0a4ca88a1c39ea9ae9ed7afc3/selectolax-0.4.10-cp313-cp313-win_amd64.whl", hash = "sha256:1bb589f6ed0f1ec28784c2cd29de111a5b6f8129c3ecf0e71b9665e588667b97", size = 1861934, upload-time = "2026-05-26T15:42:19.194Z" }, + { url = "https://files.pythonhosted.org/packages/23/69/7e31bb9427fee2d7506d20da60257ec3f72c278c176dbf47b7e0c494d521/selectolax-0.4.10-cp313-cp313-win_arm64.whl", hash = "sha256:ec333fe02c4b7d8a03c0aa58c7c2265edd3312b1ef309f03efd020f595f6dae1", size = 1810021, upload-time = "2026-05-26T15:42:21.185Z" }, + { url = "https://files.pythonhosted.org/packages/5f/21/e48766fb5f921d4a84456a87135a0605d72678753b912be3fd25344f104d/selectolax-0.4.10-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:a95f67ed9d5947562e9268332cc7165660c7db0cd3faea959e13b6901b4d323f", size = 2256784, upload-time = "2026-05-26T15:42:22.946Z" }, + { url = "https://files.pythonhosted.org/packages/df/a5/121f398a2ff01a5947b5601ed16f99e29771dbc21b23b18c8f4527f99a40/selectolax-0.4.10-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:01c1354b158f8c87b72ab50a12b4b6d7b276150ded39210d1078d65d1e24ae0d", size = 2308754, upload-time = "2026-05-26T15:42:24.897Z" }, + { url = "https://files.pythonhosted.org/packages/5b/65/3cef0d30585e22c808bc09848e318ccf30b3d00a9123e66ec3d5eb5e5899/selectolax-0.4.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d60cabbf1899916a6389fa36f2908b1a76e00dd044f710ae3dd2d0b14919dfc7", size = 2374320, upload-time = "2026-05-26T15:42:26.771Z" }, + { url = "https://files.pythonhosted.org/packages/4c/63/99e3598c137d638ff67aba0b53d99649e560c04230c838776328be98fd64/selectolax-0.4.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ab8f95b196b2dfb2be3ea7274673d45bb251ec2e16a0e7a3c1fc21c1c20d0722", size = 2420463, upload-time = "2026-05-26T15:42:28.328Z" }, + { url = "https://files.pythonhosted.org/packages/b3/a9/c17ed28a06b6f9214845719c8fd73edfa21013cd03da31ce9a2d83951259/selectolax-0.4.10-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a96d59ba2a8ba01e4f732913816f5684d30d0646b7cd0fa17377fc9d1032cc0d", size = 2395397, upload-time = "2026-05-26T15:42:29.774Z" }, + { url = "https://files.pythonhosted.org/packages/14/60/b1bd8724aa041b233a32d9eba3135fd7d4f285b1f216c39b5ba7263680d4/selectolax-0.4.10-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:794a10f0c2cb9662ad85c5a970a72ca072057d68f7f0b3cf7b3230e5f2a8f221", size = 2458486, upload-time = "2026-05-26T15:42:31.592Z" }, + { url = "https://files.pythonhosted.org/packages/04/7d/a964ceb566a6042170bbb42bd4f22117a13afe15db285c0ab858477c5963/selectolax-0.4.10-cp314-cp314-win32.whl", hash = "sha256:5d5b5437ce7548e7bc0b7712114de07dd0e4f94a30b06c968a6344148621df50", size = 1875157, upload-time = "2026-05-26T15:42:32.959Z" }, + { url = "https://files.pythonhosted.org/packages/7b/e1/0a1f9004a48d1229d90ea42efcd9093688c3afc852c2d122245c499e5821/selectolax-0.4.10-cp314-cp314-win_amd64.whl", hash = "sha256:ab07fc342cf477c0320d22fac52917b824871caf5ab177a0fd94377a901ab657", size = 1970092, upload-time = "2026-05-26T15:42:34.325Z" }, + { url = "https://files.pythonhosted.org/packages/f4/71/1a1d8196ffa9fc84c64a66294ef1ecdbb9951c7a04b9bb6c6d224d776712/selectolax-0.4.10-cp314-cp314-win_arm64.whl", hash = "sha256:8b57c64690e3c86b5d07386e2e598f4d3b4990144b1d5717db7038d0b675a97e", size = 1920951, upload-time = "2026-05-26T15:42:35.627Z" }, + { url = "https://files.pythonhosted.org/packages/0a/9b/74df013d85601d21c5e79682576ead17abe660ffce39a6fb7c300494f829/selectolax-0.4.10-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:3c21749e3d252419581160f3a3e43c1ad95dd0f83a13fe0d8c8fe6256bf7bbe6", size = 2272452, upload-time = "2026-05-26T15:42:37.379Z" }, + { url = "https://files.pythonhosted.org/packages/9f/a4/c4f94d1ae0d3da58a3dc410d0c59a8e37429c74b38287a2ab0ed0480123d/selectolax-0.4.10-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:88475ef523fe5426d113e8319eeb741806a51cc025840f337661734c65cf1aa4", size = 2318066, upload-time = "2026-05-26T15:42:39.203Z" }, + { url = "https://files.pythonhosted.org/packages/b5/9e/f977b33c18e8957fca9fcbdf445e5501a7dd1afd57b3fc15d07de249e6fc/selectolax-0.4.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40ecd0ff315dffa4a55840107367b0a54f2cd35be66e700c619364e0cd087ace", size = 2379516, upload-time = "2026-05-26T15:42:40.8Z" }, + { url = "https://files.pythonhosted.org/packages/43/4a/3f086f729dd47423719e5101f64342bd637e4420b0dafb3e5df61a9b37c8/selectolax-0.4.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d199a73894368b83e5d744f64bddf80c22a37c160253a8e81c1a6000be607b", size = 2430207, upload-time = "2026-05-26T15:42:42.751Z" }, + { url = "https://files.pythonhosted.org/packages/84/9d/51a5283bb95c679448bc5d3e1da9a00ebd5e3ad983e2247d1a1190ef3ba6/selectolax-0.4.10-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:4b0e1ad8b3d3d11bc173d33bb0fcf9d3ef8c667f1f3debd31ac8e9e3880ee174", size = 2404374, upload-time = "2026-05-26T15:42:44.835Z" }, + { url = "https://files.pythonhosted.org/packages/b4/2b/39cc5599b5531423a4eb68510a395baf8ce8ba9c3655dd86e7b4bc6140ba/selectolax-0.4.10-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:373298d5c2e22a73740ba8f60a5813fd6bdb8fa2c0fd170841341ad0119bdf6b", size = 2466741, upload-time = "2026-05-26T15:42:46.492Z" }, + { url = "https://files.pythonhosted.org/packages/fb/7f/b20bb6b03b5cf8e9ff6d524796942291d9157ccfcdbf6bcc5fc322fd2d2b/selectolax-0.4.10-cp314-cp314t-win32.whl", hash = "sha256:67f826152635521e1751665e315f3be82d027fe79d6446bf8434e0f7069e55db", size = 1923995, upload-time = "2026-05-26T15:42:48.041Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e5/8fbe188c6c2aa41e10bd83b46e0498b60ed36584f9ce0a7796ca7f7cd34e/selectolax-0.4.10-cp314-cp314t-win_amd64.whl", hash = "sha256:9c4c9afbd28b81892806e9699ecd323656e1eff7318c1245e80cd6bb78566a99", size = 2039696, upload-time = "2026-05-26T15:42:49.456Z" }, + { url = "https://files.pythonhosted.org/packages/1b/02/e511474facfd324529509626097f981986b7adc935fb4eb436c0812c540f/selectolax-0.4.10-cp314-cp314t-win_arm64.whl", hash = "sha256:68e1ef717b47f5cdcd1b151b2176d7184c38cb3772f8964509979840575203ef", size = 1944297, upload-time = "2026-05-26T15:42:50.906Z" }, +] + +[[package]] +name = "setuptools" +version = "82.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz", hash = "sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9", size = 1152316, upload-time = "2026-03-09T12:47:17.221Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "smmap" +version = "5.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/ea/49c993d6dfdd7338c9b1000a0f36817ed7ec84577ae2e52f890d1a4ff909/smmap-5.0.3.tar.gz", hash = "sha256:4d9debb8b99007ae47165abc08670bd74cb74b5227dda7f643eccc4e9eb5642c", size = 22506, upload-time = "2026-03-09T03:43:26.1Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/d4/59e74daffcb57a07668852eeeb6035af9f32cbfd7a1d2511f17d2fe6a738/smmap-5.0.3-py3-none-any.whl", hash = "sha256:c106e05d5a61449cf6ba9a1e650227ecfb141590d2a98412103ff35d89fc7b2f", size = 24390, upload-time = "2026-03-09T03:43:24.361Z" }, +] + +[[package]] +name = "sse-starlette" +version = "3.4.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "starlette" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d2/1b/bc9e3e7a72dcdad7dc7888758f5d00f56f8909ed5cfdff822bd72bb4c520/sse_starlette-3.4.5.tar.gz", hash = "sha256:83072538bc211a2f68b7b0422226c4af3e9b62e106e07034664b832ca019842a", size = 35249, upload-time = "2026-06-20T17:36:58.322Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/75/c88d3f5dafd59c791da1ce27650d30bf5b70cbf1cbf01cd00e5f9e360915/sse_starlette-3.4.5-py3-none-any.whl", hash = "sha256:e71bad53323f65573c3864a6c3bd0c1eb6e5f092b2e48082b0c35927d19ca296", size = 16518, upload-time = "2026-06-20T17:36:56.729Z" }, +] + +[[package]] +name = "starlette" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/eb/e3/7c1dc7381d9f8ab7d854328ebfa884e62cb3f3d8549ddfd37c7814f42afa/starlette-1.3.1.tar.gz", hash = "sha256:05d0213193f2fbaae60e2ecb593b4add4262ad4e46536b54abe36f11a71724e0", size = 2703240, upload-time = "2026-06-12T09:23:11.602Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/bb/2799cc2ede3ed41131f8975621e7213dfc7ef4acbbaadfa440f32500c370/starlette-1.3.1-py3-none-any.whl", hash = "sha256:c7372aae11c3c3f26a42df7bd626cec2f47d03483d261d369516a615a53714c6", size = 73632, upload-time = "2026-06-12T09:23:10.017Z" }, +] + +[[package]] +name = "streamlit" +version = "1.58.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "altair" }, + { name = "anyio" }, + { name = "blinker" }, + { name = "cachetools" }, + { name = "click" }, + { name = "gitpython" }, + { name = "httptools" }, + { name = "itsdangerous" }, + { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pillow" }, + { name = "protobuf" }, + { name = "pyarrow" }, + { name = "pydeck" }, + { name = "python-multipart" }, + { name = "requests" }, + { name = "starlette" }, + { name = "tenacity" }, + { name = "toml" }, + { name = "typing-extensions" }, + { name = "uvicorn" }, + { name = "watchdog", marker = "sys_platform != 'darwin'" }, + { name = "websockets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/91/74/20dac6d6200d6ec0e1c230fb8eeb6a1a423645eacb76e8d802adfc246456/streamlit-1.58.0.tar.gz", hash = "sha256:78a22e7085b053af7ce544442bf4b670771e68c509ba1bdaa056ba0708f49c3d", size = 8721149, upload-time = "2026-05-28T18:02:44.606Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/84/14c36a92fb24f8e1cea452f53b0744b5da69d52cdd2fe22e71e6fbf765d5/streamlit-1.58.0-py3-none-any.whl", hash = "sha256:4ca8a7afc5bd16a5f176ccf4be1e34e8121cad0240becd127fb58a103ea3178d", size = 9219185, upload-time = "2026-05-28T18:02:41.993Z" }, +] + +[[package]] +name = "strenum" +version = "0.4.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/85/ad/430fb60d90e1d112a62ff57bdd1f286ec73a2a0331272febfddd21f330e1/StrEnum-0.4.15.tar.gz", hash = "sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff", size = 23384, upload-time = "2023-06-29T22:02:58.399Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/81/69/297302c5f5f59c862faa31e6cb9a4cd74721cd1e052b38e464c5b402df8b/StrEnum-0.4.15-py3-none-any.whl", hash = "sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659", size = 8851, upload-time = "2023-06-29T22:02:56.947Z" }, +] + +[[package]] +name = "supervisor" +version = "4.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/b5/37e7a3706de436a8a2d75334711dad1afb4ddffab09f25e31d89e467542f/supervisor-4.3.0.tar.gz", hash = "sha256:4a2bf149adf42997e1bb44b70c43b613275ec9852c3edacca86a9166b27e945e", size = 468912, upload-time = "2025-08-23T18:25:02.418Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/65/5e726c372da8a5e35022a94388b12252710aad0c2351699c3d76ae8dba78/supervisor-4.3.0-py2.py3-none-any.whl", hash = "sha256:0bcb763fddafba410f35cbde226aa7f8514b9fb82eb05a0c85f6588d1c13f8db", size = 320736, upload-time = "2025-08-23T18:25:00.767Z" }, +] + +[[package]] +name = "tenacity" +version = "9.1.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/47/c6/ee486fd809e357697ee8a44d3d69222b344920433d3b6666ccd9b374630c/tenacity-9.1.4.tar.gz", hash = "sha256:adb31d4c263f2bd041081ab33b498309a57c77f9acf2db65aadf0898179cf93a", size = 49413, upload-time = "2026-02-07T10:45:33.841Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d7/c1/eb8f9debc45d3b7918a32ab756658a0904732f75e555402972246b0b8e71/tenacity-9.1.4-py3-none-any.whl", hash = "sha256:6095a360c919085f28c6527de529e76a06ad89b23659fa881ae0649b867a9d55", size = 28926, upload-time = "2026-02-07T10:45:32.24Z" }, +] + +[[package]] +name = "toml" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/be/ba/1f744cdc819428fc6b5084ec34d9b30660f6f9daaf70eead706e3203ec3c/toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f", size = 22253, upload-time = "2020-11-01T01:40:22.204Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", size = 16588, upload-time = "2020-11-01T01:40:20.672Z" }, +] + +[[package]] +name = "tomli" +version = "2.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/de/48c59722572767841493b26183a0d1cc411d54fd759c5607c4590b6563a6/tomli-2.4.1.tar.gz", hash = "sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f", size = 17543, upload-time = "2026-03-25T20:22:03.828Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/11/db3d5885d8528263d8adc260bb2d28ebf1270b96e98f0e0268d32b8d9900/tomli-2.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f8f0fc26ec2cc2b965b7a3b87cd19c5c6b8c5e5f436b984e85f486d652285c30", size = 154704, upload-time = "2026-03-25T20:21:10.473Z" }, + { url = "https://files.pythonhosted.org/packages/6d/f7/675db52c7e46064a9aa928885a9b20f4124ecb9bc2e1ce74c9106648d202/tomli-2.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ab97e64ccda8756376892c53a72bd1f964e519c77236368527f758fbc36a53a", size = 149454, upload-time = "2026-03-25T20:21:12.036Z" }, + { url = "https://files.pythonhosted.org/packages/61/71/81c50943cf953efa35bce7646caab3cf457a7d8c030b27cfb40d7235f9ee/tomli-2.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96481a5786729fd470164b47cdb3e0e58062a496f455ee41b4403be77cb5a076", size = 237561, upload-time = "2026-03-25T20:21:13.098Z" }, + { url = "https://files.pythonhosted.org/packages/48/c1/f41d9cb618acccca7df82aaf682f9b49013c9397212cb9f53219e3abac37/tomli-2.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5a881ab208c0baf688221f8cecc5401bd291d67e38a1ac884d6736cbcd8247e9", size = 243824, upload-time = "2026-03-25T20:21:14.569Z" }, + { url = "https://files.pythonhosted.org/packages/22/e4/5a816ecdd1f8ca51fb756ef684b90f2780afc52fc67f987e3c61d800a46d/tomli-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47149d5bd38761ac8be13a84864bf0b7b70bc051806bc3669ab1cbc56216b23c", size = 242227, upload-time = "2026-03-25T20:21:15.712Z" }, + { url = "https://files.pythonhosted.org/packages/6b/49/2b2a0ef529aa6eec245d25f0c703e020a73955ad7edf73e7f54ddc608aa5/tomli-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec9bfaf3ad2df51ace80688143a6a4ebc09a248f6ff781a9945e51937008fcbc", size = 247859, upload-time = "2026-03-25T20:21:17.001Z" }, + { url = "https://files.pythonhosted.org/packages/83/bd/6c1a630eaca337e1e78c5903104f831bda934c426f9231429396ce3c3467/tomli-2.4.1-cp311-cp311-win32.whl", hash = "sha256:ff2983983d34813c1aeb0fa89091e76c3a22889ee83ab27c5eeb45100560c049", size = 97204, upload-time = "2026-03-25T20:21:18.079Z" }, + { url = "https://files.pythonhosted.org/packages/42/59/71461df1a885647e10b6bb7802d0b8e66480c61f3f43079e0dcd315b3954/tomli-2.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:5ee18d9ebdb417e384b58fe414e8d6af9f4e7a0ae761519fb50f721de398dd4e", size = 108084, upload-time = "2026-03-25T20:21:18.978Z" }, + { url = "https://files.pythonhosted.org/packages/b8/83/dceca96142499c069475b790e7913b1044c1a4337e700751f48ed723f883/tomli-2.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:c2541745709bad0264b7d4705ad453b76ccd191e64aa6f0fc66b69a293a45ece", size = 95285, upload-time = "2026-03-25T20:21:20.309Z" }, + { url = "https://files.pythonhosted.org/packages/c1/ba/42f134a3fe2b370f555f44b1d72feebb94debcab01676bf918d0cb70e9aa/tomli-2.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c742f741d58a28940ce01d58f0ab2ea3ced8b12402f162f4d534dfe18ba1cd6a", size = 155924, upload-time = "2026-03-25T20:21:21.626Z" }, + { url = "https://files.pythonhosted.org/packages/dc/c7/62d7a17c26487ade21c5422b646110f2162f1fcc95980ef7f63e73c68f14/tomli-2.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7f86fd587c4ed9dd76f318225e7d9b29cfc5a9d43de44e5754db8d1128487085", size = 150018, upload-time = "2026-03-25T20:21:23.002Z" }, + { url = "https://files.pythonhosted.org/packages/5c/05/79d13d7c15f13bdef410bdd49a6485b1c37d28968314eabee452c22a7fda/tomli-2.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ff18e6a727ee0ab0388507b89d1bc6a22b138d1e2fa56d1ad494586d61d2eae9", size = 244948, upload-time = "2026-03-25T20:21:24.04Z" }, + { url = "https://files.pythonhosted.org/packages/10/90/d62ce007a1c80d0b2c93e02cab211224756240884751b94ca72df8a875ca/tomli-2.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:136443dbd7e1dee43c68ac2694fde36b2849865fa258d39bf822c10e8068eac5", size = 253341, upload-time = "2026-03-25T20:21:25.177Z" }, + { url = "https://files.pythonhosted.org/packages/1a/7e/caf6496d60152ad4ed09282c1885cca4eea150bfd007da84aea07bcc0a3e/tomli-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5e262d41726bc187e69af7825504c933b6794dc3fbd5945e41a79bb14c31f585", size = 248159, upload-time = "2026-03-25T20:21:26.364Z" }, + { url = "https://files.pythonhosted.org/packages/99/e7/c6f69c3120de34bbd882c6fba7975f3d7a746e9218e56ab46a1bc4b42552/tomli-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5cb41aa38891e073ee49d55fbc7839cfdb2bc0e600add13874d048c94aadddd1", size = 253290, upload-time = "2026-03-25T20:21:27.46Z" }, + { url = "https://files.pythonhosted.org/packages/d6/2f/4a3c322f22c5c66c4b836ec58211641a4067364f5dcdd7b974b4c5da300c/tomli-2.4.1-cp312-cp312-win32.whl", hash = "sha256:da25dc3563bff5965356133435b757a795a17b17d01dbc0f42fb32447ddfd917", size = 98141, upload-time = "2026-03-25T20:21:28.492Z" }, + { url = "https://files.pythonhosted.org/packages/24/22/4daacd05391b92c55759d55eaee21e1dfaea86ce5c571f10083360adf534/tomli-2.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:52c8ef851d9a240f11a88c003eacb03c31fc1c9c4ec64a99a0f922b93874fda9", size = 108847, upload-time = "2026-03-25T20:21:29.386Z" }, + { url = "https://files.pythonhosted.org/packages/68/fd/70e768887666ddd9e9f5d85129e84910f2db2796f9096aa02b721a53098d/tomli-2.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:f758f1b9299d059cc3f6546ae2af89670cb1c4d48ea29c3cacc4fe7de3058257", size = 95088, upload-time = "2026-03-25T20:21:30.677Z" }, + { url = "https://files.pythonhosted.org/packages/07/06/b823a7e818c756d9a7123ba2cda7d07bc2dd32835648d1a7b7b7a05d848d/tomli-2.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:36d2bd2ad5fb9eaddba5226aa02c8ec3fa4f192631e347b3ed28186d43be6b54", size = 155866, upload-time = "2026-03-25T20:21:31.65Z" }, + { url = "https://files.pythonhosted.org/packages/14/6f/12645cf7f08e1a20c7eb8c297c6f11d31c1b50f316a7e7e1e1de6e2e7b7e/tomli-2.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:eb0dc4e38e6a1fd579e5d50369aa2e10acfc9cace504579b2faabb478e76941a", size = 149887, upload-time = "2026-03-25T20:21:33.028Z" }, + { url = "https://files.pythonhosted.org/packages/5c/e0/90637574e5e7212c09099c67ad349b04ec4d6020324539297b634a0192b0/tomli-2.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c7f2c7f2b9ca6bdeef8f0fa897f8e05085923eb091721675170254cbc5b02897", size = 243704, upload-time = "2026-03-25T20:21:34.51Z" }, + { url = "https://files.pythonhosted.org/packages/10/8f/d3ddb16c5a4befdf31a23307f72828686ab2096f068eaf56631e136c1fdd/tomli-2.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f3c6818a1a86dd6dca7ddcaaf76947d5ba31aecc28cb1b67009a5877c9a64f3f", size = 251628, upload-time = "2026-03-25T20:21:36.012Z" }, + { url = "https://files.pythonhosted.org/packages/e3/f1/dbeeb9116715abee2485bf0a12d07a8f31af94d71608c171c45f64c0469d/tomli-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d312ef37c91508b0ab2cee7da26ec0b3ed2f03ce12bd87a588d771ae15dcf82d", size = 247180, upload-time = "2026-03-25T20:21:37.136Z" }, + { url = "https://files.pythonhosted.org/packages/d3/74/16336ffd19ed4da28a70959f92f506233bd7cfc2332b20bdb01591e8b1d1/tomli-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:51529d40e3ca50046d7606fa99ce3956a617f9b36380da3b7f0dd3dd28e68cb5", size = 251674, upload-time = "2026-03-25T20:21:38.298Z" }, + { url = "https://files.pythonhosted.org/packages/16/f9/229fa3434c590ddf6c0aa9af64d3af4b752540686cace29e6281e3458469/tomli-2.4.1-cp313-cp313-win32.whl", hash = "sha256:2190f2e9dd7508d2a90ded5ed369255980a1bcdd58e52f7fe24b8162bf9fedbd", size = 97976, upload-time = "2026-03-25T20:21:39.316Z" }, + { url = "https://files.pythonhosted.org/packages/6a/1e/71dfd96bcc1c775420cb8befe7a9d35f2e5b1309798f009dca17b7708c1e/tomli-2.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:8d65a2fbf9d2f8352685bc1364177ee3923d6baf5e7f43ea4959d7d8bc326a36", size = 108755, upload-time = "2026-03-25T20:21:40.248Z" }, + { url = "https://files.pythonhosted.org/packages/83/7a/d34f422a021d62420b78f5c538e5b102f62bea616d1d75a13f0a88acb04a/tomli-2.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:4b605484e43cdc43f0954ddae319fb75f04cc10dd80d830540060ee7cd0243cd", size = 95265, upload-time = "2026-03-25T20:21:41.219Z" }, + { url = "https://files.pythonhosted.org/packages/3c/fb/9a5c8d27dbab540869f7c1f8eb0abb3244189ce780ba9cd73f3770662072/tomli-2.4.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:fd0409a3653af6c147209d267a0e4243f0ae46b011aa978b1080359fddc9b6cf", size = 155726, upload-time = "2026-03-25T20:21:42.23Z" }, + { url = "https://files.pythonhosted.org/packages/62/05/d2f816630cc771ad836af54f5001f47a6f611d2d39535364f148b6a92d6b/tomli-2.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:a120733b01c45e9a0c34aeef92bf0cf1d56cfe81ed9d47d562f9ed591a9828ac", size = 149859, upload-time = "2026-03-25T20:21:43.386Z" }, + { url = "https://files.pythonhosted.org/packages/ce/48/66341bdb858ad9bd0ceab5a86f90eddab127cf8b046418009f2125630ecb/tomli-2.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:559db847dc486944896521f68d8190be1c9e719fced785720d2216fe7022b662", size = 244713, upload-time = "2026-03-25T20:21:44.474Z" }, + { url = "https://files.pythonhosted.org/packages/df/6d/c5fad00d82b3c7a3ab6189bd4b10e60466f22cfe8a08a9394185c8a8111c/tomli-2.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01f520d4f53ef97964a240a035ec2a869fe1a37dde002b57ebc4417a27ccd853", size = 252084, upload-time = "2026-03-25T20:21:45.62Z" }, + { url = "https://files.pythonhosted.org/packages/00/71/3a69e86f3eafe8c7a59d008d245888051005bd657760e96d5fbfb0b740c2/tomli-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7f94b27a62cfad8496c8d2513e1a222dd446f095fca8987fceef261225538a15", size = 247973, upload-time = "2026-03-25T20:21:46.937Z" }, + { url = "https://files.pythonhosted.org/packages/67/50/361e986652847fec4bd5e4a0208752fbe64689c603c7ae5ea7cb16b1c0ca/tomli-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:ede3e6487c5ef5d28634ba3f31f989030ad6af71edfb0055cbbd14189ff240ba", size = 256223, upload-time = "2026-03-25T20:21:48.467Z" }, + { url = "https://files.pythonhosted.org/packages/8c/9a/b4173689a9203472e5467217e0154b00e260621caa227b6fa01feab16998/tomli-2.4.1-cp314-cp314-win32.whl", hash = "sha256:3d48a93ee1c9b79c04bb38772ee1b64dcf18ff43085896ea460ca8dec96f35f6", size = 98973, upload-time = "2026-03-25T20:21:49.526Z" }, + { url = "https://files.pythonhosted.org/packages/14/58/640ac93bf230cd27d002462c9af0d837779f8773bc03dee06b5835208214/tomli-2.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:88dceee75c2c63af144e456745e10101eb67361050196b0b6af5d717254dddf7", size = 109082, upload-time = "2026-03-25T20:21:50.506Z" }, + { url = "https://files.pythonhosted.org/packages/d5/2f/702d5e05b227401c1068f0d386d79a589bb12bf64c3d2c72ce0631e3bc49/tomli-2.4.1-cp314-cp314-win_arm64.whl", hash = "sha256:b8c198f8c1805dc42708689ed6864951fd2494f924149d3e4bce7710f8eb5232", size = 96490, upload-time = "2026-03-25T20:21:51.474Z" }, + { url = "https://files.pythonhosted.org/packages/45/4b/b877b05c8ba62927d9865dd980e34a755de541eb65fffba52b4cc495d4d2/tomli-2.4.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:d4d8fe59808a54658fcc0160ecfb1b30f9089906c50b23bcb4c69eddc19ec2b4", size = 164263, upload-time = "2026-03-25T20:21:52.543Z" }, + { url = "https://files.pythonhosted.org/packages/24/79/6ab420d37a270b89f7195dec5448f79400d9e9c1826df982f3f8e97b24fd/tomli-2.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7008df2e7655c495dd12d2a4ad038ff878d4ca4b81fccaf82b714e07eae4402c", size = 160736, upload-time = "2026-03-25T20:21:53.674Z" }, + { url = "https://files.pythonhosted.org/packages/02/e0/3630057d8eb170310785723ed5adcdfb7d50cb7e6455f85ba8a3deed642b/tomli-2.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1d8591993e228b0c930c4bb0db464bdad97b3289fb981255d6c9a41aedc84b2d", size = 270717, upload-time = "2026-03-25T20:21:55.129Z" }, + { url = "https://files.pythonhosted.org/packages/7a/b4/1613716072e544d1a7891f548d8f9ec6ce2faf42ca65acae01d76ea06bb0/tomli-2.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:734e20b57ba95624ecf1841e72b53f6e186355e216e5412de414e3c51e5e3c41", size = 278461, upload-time = "2026-03-25T20:21:56.228Z" }, + { url = "https://files.pythonhosted.org/packages/05/38/30f541baf6a3f6df77b3df16b01ba319221389e2da59427e221ef417ac0c/tomli-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8a650c2dbafa08d42e51ba0b62740dae4ecb9338eefa093aa5c78ceb546fcd5c", size = 274855, upload-time = "2026-03-25T20:21:57.653Z" }, + { url = "https://files.pythonhosted.org/packages/77/a3/ec9dd4fd2c38e98de34223b995a3b34813e6bdadf86c75314c928350ed14/tomli-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:504aa796fe0569bb43171066009ead363de03675276d2d121ac1a4572397870f", size = 283144, upload-time = "2026-03-25T20:21:59.089Z" }, + { url = "https://files.pythonhosted.org/packages/ef/be/605a6261cac79fba2ec0c9827e986e00323a1945700969b8ee0b30d85453/tomli-2.4.1-cp314-cp314t-win32.whl", hash = "sha256:b1d22e6e9387bf4739fbe23bfa80e93f6b0373a7f1b96c6227c32bef95a4d7a8", size = 108683, upload-time = "2026-03-25T20:22:00.214Z" }, + { url = "https://files.pythonhosted.org/packages/12/64/da524626d3b9cc40c168a13da8335fe1c51be12c0a63685cc6db7308daae/tomli-2.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:2c1c351919aca02858f740c6d33adea0c5deea37f9ecca1cc1ef9e884a619d26", size = 121196, upload-time = "2026-03-25T20:22:01.169Z" }, + { url = "https://files.pythonhosted.org/packages/5a/cd/e80b62269fc78fc36c9af5a6b89c835baa8af28ff5ad28c7028d60860320/tomli-2.4.1-cp314-cp314t-win_arm64.whl", hash = "sha256:eab21f45c7f66c13f2a9e0e1535309cee140182a9cdae1e041d02e47291e8396", size = 100393, upload-time = "2026-03-25T20:22:02.137Z" }, + { url = "https://files.pythonhosted.org/packages/7b/61/cceae43728b7de99d9b847560c262873a1f6c98202171fd5ed62640b494b/tomli-2.4.1-py3-none-any.whl", hash = "sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe", size = 14583, upload-time = "2026-03-25T20:22:03.012Z" }, +] + +[[package]] +name = "trendify" +source = { editable = "." } +dependencies = [ + { name = "dash" }, + { name = "filelock" }, + { name = "flask" }, + { name = "grafana-api" }, + { name = "jinja2" }, + { name = "matplotlib" }, + { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "numpydantic" }, + { name = "pandas" }, + { name = "plotly" }, + { name = "pydantic" }, + { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "scipy", version = "1.18.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "streamlit" }, + { name = "strenum" }, + { name = "supervisor" }, + { name = "waitress" }, +] + +[package.dev-dependencies] +dev = [ + { name = "black" }, + { name = "flake8" }, + { name = "griffe-pydantic" }, + { name = "hatchling" }, + { name = "isort" }, + { name = "markdown-callouts" }, + { name = "markdown-include" }, + { name = "mdx-gh-links" }, + { name = "mike" }, + { name = "mkdocs" }, + { name = "mkdocs-autorefs" }, + { name = "mkdocs-click" }, + { name = "mkdocs-exclude" }, + { name = "mkdocs-gen-files" }, + { name = "mkdocs-glightbox" }, + { name = "mkdocs-literate-nav" }, + { name = "mkdocs-material" }, + { name = "mkdocs-redirects" }, + { name = "mkdocs-section-index" }, + { name = "mkdocs-snippets" }, + { name = "mkdocstrings" }, + { name = "mkdocstrings-python" }, + { name = "pymdown-extensions" }, + { name = "pytest" }, + { name = "pytest-asyncio" }, + { name = "pytest-cov" }, +] + +[package.metadata] +requires-dist = [ + { name = "dash", specifier = ">=4.3.0" }, + { name = "filelock", specifier = ">=3.29.4" }, + { name = "flask", specifier = ">=3.1.3" }, + { name = "grafana-api", specifier = ">=1.0.3" }, + { name = "jinja2", specifier = ">=3.1.6" }, + { name = "matplotlib", specifier = ">=3.11.0" }, + { name = "numpy", specifier = ">=2.4.6" }, + { name = "numpydantic", specifier = ">=1.10.0" }, + { name = "pandas", specifier = ">=3.0.3" }, + { name = "plotly", specifier = ">=6.8.0" }, + { name = "pydantic", specifier = ">=2.13.4" }, + { name = "scipy", specifier = ">=1.17.1" }, + { name = "streamlit", specifier = ">=1.58.0" }, + { name = "strenum", specifier = ">=0.4.15" }, + { name = "supervisor", specifier = ">=4.3.0" }, + { name = "waitress", specifier = ">=3.0.2" }, +] + +[package.metadata.requires-dev] +dev = [ + { name = "black", specifier = ">=26.5.1" }, + { name = "flake8", specifier = ">=7.3.0" }, + { name = "griffe-pydantic", specifier = ">=1.3.1" }, + { name = "hatchling", specifier = ">=1.30.1" }, + { name = "isort", specifier = ">=8.0.1" }, + { name = "markdown-callouts", specifier = ">=0.4.0" }, + { name = "markdown-include", specifier = ">=0.8.1" }, + { name = "mdx-gh-links", specifier = ">=0.4" }, + { name = "mike", specifier = ">=2.2.0" }, + { name = "mkdocs", specifier = ">=1.6.1" }, + { name = "mkdocs-autorefs", specifier = ">=1.4.4" }, + { name = "mkdocs-click", specifier = ">=0.9.0" }, + { name = "mkdocs-exclude", specifier = ">=1.0.2" }, + { name = "mkdocs-gen-files", specifier = ">=0.6.1" }, + { name = "mkdocs-glightbox", specifier = ">=0.5.2" }, + { name = "mkdocs-literate-nav", specifier = ">=0.6.3" }, + { name = "mkdocs-material", specifier = ">=9.7.6" }, + { name = "mkdocs-redirects", specifier = ">=1.2.3" }, + { name = "mkdocs-section-index", specifier = ">=0.3.12" }, + { name = "mkdocs-snippets", specifier = ">=1.3.2" }, + { name = "mkdocstrings", specifier = ">=1.0.4" }, + { name = "mkdocstrings-python", specifier = ">=2.0.5" }, + { name = "pymdown-extensions", specifier = ">=11.0" }, + { name = "pytest", specifier = ">=9.1.1" }, + { name = "pytest-asyncio", specifier = ">=1.4.0" }, + { name = "pytest-cov", specifier = ">=7.1.0" }, +] + +[[package]] +name = "trove-classifiers" +version = "2026.6.1.19" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c2/e3/7ca82ee24c82d344584abd5b8637b3bd056f2900226e8d82fc22f1184b92/trove_classifiers-2026.6.1.19.tar.gz", hash = "sha256:c5132b4b61a829d11cfbd2d72e97f20a45ed6edb95e45c5efdeb5e00836b2745", size = 17059, upload-time = "2026-06-01T19:41:34.649Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7c/a4/81502f486f01db95bc8320646a8a12511f5e556cb63d5e224d91816605c4/trove_classifiers-2026.6.1.19-py3-none-any.whl", hash = "sha256:ab4c4ec93cc4a4e7815fa759906e05e6bb3f2fbd92ea0f897288c6a43efd15b3", size = 14211, upload-time = "2026-06-01T19:41:33.434Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, +] + +[[package]] +name = "typing-inspection" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/55/e3/70399cb7dd41c10ac53367ae42139cf4b1ca5f36bb3dc6c9d33acdb43655/typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464", size = 75949, upload-time = "2025-10-01T02:14:41.687Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7", size = 14611, upload-time = "2025-10-01T02:14:40.154Z" }, +] + +[[package]] +name = "tzdata" +version = "2026.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/19/1b9b0e29f30c6d35cb345486df41110984ea67ae69dddbc0e8a100999493/tzdata-2026.2.tar.gz", hash = "sha256:9173fde7d80d9018e02a662e168e5a2d04f87c41ea174b139fbef642eda62d10", size = 198254, upload-time = "2026-04-24T15:22:08.651Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/e4/dccd7f47c4b64213ac01ef921a1337ee6e30e8c6466046018326977efd95/tzdata-2026.2-py2.py3-none-any.whl", hash = "sha256:bbe9af844f658da81a5f95019480da3a89415801f6cc966806612cc7169bffe7", size = 349321, upload-time = "2026-04-24T15:22:05.876Z" }, +] + +[[package]] +name = "urllib3" +version = "2.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/53/0c/06f8b233b8fd13b9e5ee11424ef85419ba0d8ba0b3138bf360be2ff56953/urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c", size = 433602, upload-time = "2026-05-07T16:13:18.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/3e/5db95bcf282c52709639744ca2a8b149baccf648e39c8cc87553df9eae0c/urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897", size = 131087, upload-time = "2026-05-07T16:13:17.151Z" }, +] + +[[package]] +name = "uvicorn" +version = "0.49.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c4/1f/fa18009dea8469069cca78a4e877a008ab78f08b064bfc9ab891579077ff/uvicorn-0.49.0.tar.gz", hash = "sha256:ebf4271aa580d9de97f93192d4595176df6e91f9aae919ca73e4fc07df1e66a3", size = 91284, upload-time = "2026-06-03T22:01:30.448Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/fa/e1388bbcf24ef3274f45c0c1c7b501fd14971037c1b6ee23610553307497/uvicorn-0.49.0-py3-none-any.whl", hash = "sha256:ba3d14c3ee7e41c6c654c46c9eb489d33213cdd30aa1696eab1374337c13f68f", size = 71376, upload-time = "2026-06-03T22:01:29.037Z" }, +] + +[[package]] +name = "verspec" +version = "0.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/44/8126f9f0c44319b2efc65feaad589cadef4d77ece200ae3c9133d58464d0/verspec-0.1.0.tar.gz", hash = "sha256:c4504ca697b2056cdb4bfa7121461f5a0e81809255b41c03dda4ba823637c01e", size = 27123, upload-time = "2020-11-30T02:24:09.646Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/ce/3b6fee91c85626eaf769d617f1be9d2e15c1cca027bbdeb2e0d751469355/verspec-0.1.0-py3-none-any.whl", hash = "sha256:741877d5633cc9464c45a469ae2a31e801e6dbbaa85b9675d481cda100f11c31", size = 19640, upload-time = "2020-11-30T02:24:08.387Z" }, +] + +[[package]] +name = "waitress" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bf/cb/04ddb054f45faa306a230769e868c28b8065ea196891f09004ebace5b184/waitress-3.0.2.tar.gz", hash = "sha256:682aaaf2af0c44ada4abfb70ded36393f0e307f4ab9456a215ce0020baefc31f", size = 179901, upload-time = "2024-11-16T20:02:35.195Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/57/a27182528c90ef38d82b636a11f606b0cbb0e17588ed205435f8affe3368/waitress-3.0.2-py3-none-any.whl", hash = "sha256:c56d67fd6e87c2ee598b76abdd4e96cfad1f24cacdea5078d382b1f9d7b5ed2e", size = 56232, upload-time = "2024-11-16T20:02:33.858Z" }, +] + +[[package]] +name = "watchdog" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/db/7d/7f3d619e951c88ed75c6037b246ddcf2d322812ee8ea189be89511721d54/watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282", size = 131220, upload-time = "2024-11-01T14:07:13.037Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e0/24/d9be5cd6642a6aa68352ded4b4b10fb0d7889cb7f45814fb92cecd35f101/watchdog-6.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c", size = 96393, upload-time = "2024-11-01T14:06:31.756Z" }, + { url = "https://files.pythonhosted.org/packages/63/7a/6013b0d8dbc56adca7fdd4f0beed381c59f6752341b12fa0886fa7afc78b/watchdog-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2", size = 88392, upload-time = "2024-11-01T14:06:32.99Z" }, + { url = "https://files.pythonhosted.org/packages/d1/40/b75381494851556de56281e053700e46bff5b37bf4c7267e858640af5a7f/watchdog-6.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c", size = 89019, upload-time = "2024-11-01T14:06:34.963Z" }, + { url = "https://files.pythonhosted.org/packages/39/ea/3930d07dafc9e286ed356a679aa02d777c06e9bfd1164fa7c19c288a5483/watchdog-6.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948", size = 96471, upload-time = "2024-11-01T14:06:37.745Z" }, + { url = "https://files.pythonhosted.org/packages/12/87/48361531f70b1f87928b045df868a9fd4e253d9ae087fa4cf3f7113be363/watchdog-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860", size = 88449, upload-time = "2024-11-01T14:06:39.748Z" }, + { url = "https://files.pythonhosted.org/packages/5b/7e/8f322f5e600812e6f9a31b75d242631068ca8f4ef0582dd3ae6e72daecc8/watchdog-6.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0", size = 89054, upload-time = "2024-11-01T14:06:41.009Z" }, + { url = "https://files.pythonhosted.org/packages/68/98/b0345cabdce2041a01293ba483333582891a3bd5769b08eceb0d406056ef/watchdog-6.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c", size = 96480, upload-time = "2024-11-01T14:06:42.952Z" }, + { url = "https://files.pythonhosted.org/packages/85/83/cdf13902c626b28eedef7ec4f10745c52aad8a8fe7eb04ed7b1f111ca20e/watchdog-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134", size = 88451, upload-time = "2024-11-01T14:06:45.084Z" }, + { url = "https://files.pythonhosted.org/packages/fe/c4/225c87bae08c8b9ec99030cd48ae9c4eca050a59bf5c2255853e18c87b50/watchdog-6.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b", size = 89057, upload-time = "2024-11-01T14:06:47.324Z" }, + { url = "https://files.pythonhosted.org/packages/a9/c7/ca4bf3e518cb57a686b2feb4f55a1892fd9a3dd13f470fca14e00f80ea36/watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13", size = 79079, upload-time = "2024-11-01T14:06:59.472Z" }, + { url = "https://files.pythonhosted.org/packages/5c/51/d46dc9332f9a647593c947b4b88e2381c8dfc0942d15b8edc0310fa4abb1/watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379", size = 79078, upload-time = "2024-11-01T14:07:01.431Z" }, + { url = "https://files.pythonhosted.org/packages/d4/57/04edbf5e169cd318d5f07b4766fee38e825d64b6913ca157ca32d1a42267/watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e", size = 79076, upload-time = "2024-11-01T14:07:02.568Z" }, + { url = "https://files.pythonhosted.org/packages/ab/cc/da8422b300e13cb187d2203f20b9253e91058aaf7db65b74142013478e66/watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f", size = 79077, upload-time = "2024-11-01T14:07:03.893Z" }, + { url = "https://files.pythonhosted.org/packages/2c/3b/b8964e04ae1a025c44ba8e4291f86e97fac443bca31de8bd98d3263d2fcf/watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26", size = 79078, upload-time = "2024-11-01T14:07:05.189Z" }, + { url = "https://files.pythonhosted.org/packages/62/ae/a696eb424bedff7407801c257d4b1afda455fe40821a2be430e173660e81/watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c", size = 79077, upload-time = "2024-11-01T14:07:06.376Z" }, + { url = "https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2", size = 79078, upload-time = "2024-11-01T14:07:07.547Z" }, + { url = "https://files.pythonhosted.org/packages/07/f6/d0e5b343768e8bcb4cda79f0f2f55051bf26177ecd5651f84c07567461cf/watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a", size = 79065, upload-time = "2024-11-01T14:07:09.525Z" }, + { url = "https://files.pythonhosted.org/packages/db/d9/c495884c6e548fce18a8f40568ff120bc3a4b7b99813081c8ac0c936fa64/watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680", size = 79070, upload-time = "2024-11-01T14:07:10.686Z" }, + { url = "https://files.pythonhosted.org/packages/33/e8/e40370e6d74ddba47f002a32919d91310d6074130fe4e17dabcafc15cbf1/watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f", size = 79067, upload-time = "2024-11-01T14:07:11.845Z" }, +] + +[[package]] +name = "websockets" +version = "16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/db/de907251b4ff46ae804ad0409809504153b3f30984daf82a1d84a9875830/websockets-16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:31a52addea25187bde0797a97d6fc3d2f92b6f72a9370792d65a6e84615ac8a8", size = 177340, upload-time = "2026-01-10T09:22:34.539Z" }, + { url = "https://files.pythonhosted.org/packages/f3/fa/abe89019d8d8815c8781e90d697dec52523fb8ebe308bf11664e8de1877e/websockets-16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:417b28978cdccab24f46400586d128366313e8a96312e4b9362a4af504f3bbad", size = 175022, upload-time = "2026-01-10T09:22:36.332Z" }, + { url = "https://files.pythonhosted.org/packages/58/5d/88ea17ed1ded2079358b40d31d48abe90a73c9e5819dbcde1606e991e2ad/websockets-16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:af80d74d4edfa3cb9ed973a0a5ba2b2a549371f8a741e0800cb07becdd20f23d", size = 175319, upload-time = "2026-01-10T09:22:37.602Z" }, + { url = "https://files.pythonhosted.org/packages/d2/ae/0ee92b33087a33632f37a635e11e1d99d429d3d323329675a6022312aac2/websockets-16.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:08d7af67b64d29823fed316505a89b86705f2b7981c07848fb5e3ea3020c1abe", size = 184631, upload-time = "2026-01-10T09:22:38.789Z" }, + { url = "https://files.pythonhosted.org/packages/c8/c5/27178df583b6c5b31b29f526ba2da5e2f864ecc79c99dae630a85d68c304/websockets-16.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7be95cfb0a4dae143eaed2bcba8ac23f4892d8971311f1b06f3c6b78952ee70b", size = 185870, upload-time = "2026-01-10T09:22:39.893Z" }, + { url = "https://files.pythonhosted.org/packages/87/05/536652aa84ddc1c018dbb7e2c4cbcd0db884580bf8e95aece7593fde526f/websockets-16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d6297ce39ce5c2e6feb13c1a996a2ded3b6832155fcfc920265c76f24c7cceb5", size = 185361, upload-time = "2026-01-10T09:22:41.016Z" }, + { url = "https://files.pythonhosted.org/packages/6d/e2/d5332c90da12b1e01f06fb1b85c50cfc489783076547415bf9f0a659ec19/websockets-16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1c1b30e4f497b0b354057f3467f56244c603a79c0d1dafce1d16c283c25f6e64", size = 184615, upload-time = "2026-01-10T09:22:42.442Z" }, + { url = "https://files.pythonhosted.org/packages/77/fb/d3f9576691cae9253b51555f841bc6600bf0a983a461c79500ace5a5b364/websockets-16.0-cp311-cp311-win32.whl", hash = "sha256:5f451484aeb5cafee1ccf789b1b66f535409d038c56966d6101740c1614b86c6", size = 178246, upload-time = "2026-01-10T09:22:43.654Z" }, + { url = "https://files.pythonhosted.org/packages/54/67/eaff76b3dbaf18dcddabc3b8c1dba50b483761cccff67793897945b37408/websockets-16.0-cp311-cp311-win_amd64.whl", hash = "sha256:8d7f0659570eefb578dacde98e24fb60af35350193e4f56e11190787bee77dac", size = 178684, upload-time = "2026-01-10T09:22:44.941Z" }, + { url = "https://files.pythonhosted.org/packages/84/7b/bac442e6b96c9d25092695578dda82403c77936104b5682307bd4deb1ad4/websockets-16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00", size = 177365, upload-time = "2026-01-10T09:22:46.787Z" }, + { url = "https://files.pythonhosted.org/packages/b0/fe/136ccece61bd690d9c1f715baaeefd953bb2360134de73519d5df19d29ca/websockets-16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79", size = 175038, upload-time = "2026-01-10T09:22:47.999Z" }, + { url = "https://files.pythonhosted.org/packages/40/1e/9771421ac2286eaab95b8575b0cb701ae3663abf8b5e1f64f1fd90d0a673/websockets-16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39", size = 175328, upload-time = "2026-01-10T09:22:49.809Z" }, + { url = "https://files.pythonhosted.org/packages/18/29/71729b4671f21e1eaa5d6573031ab810ad2936c8175f03f97f3ff164c802/websockets-16.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c", size = 184915, upload-time = "2026-01-10T09:22:51.071Z" }, + { url = "https://files.pythonhosted.org/packages/97/bb/21c36b7dbbafc85d2d480cd65df02a1dc93bf76d97147605a8e27ff9409d/websockets-16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f", size = 186152, upload-time = "2026-01-10T09:22:52.224Z" }, + { url = "https://files.pythonhosted.org/packages/4a/34/9bf8df0c0cf88fa7bfe36678dc7b02970c9a7d5e065a3099292db87b1be2/websockets-16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1", size = 185583, upload-time = "2026-01-10T09:22:53.443Z" }, + { url = "https://files.pythonhosted.org/packages/47/88/4dd516068e1a3d6ab3c7c183288404cd424a9a02d585efbac226cb61ff2d/websockets-16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2", size = 184880, upload-time = "2026-01-10T09:22:55.033Z" }, + { url = "https://files.pythonhosted.org/packages/91/d6/7d4553ad4bf1c0421e1ebd4b18de5d9098383b5caa1d937b63df8d04b565/websockets-16.0-cp312-cp312-win32.whl", hash = "sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89", size = 178261, upload-time = "2026-01-10T09:22:56.251Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f0/f3a17365441ed1c27f850a80b2bc680a0fa9505d733fe152fdf5e98c1c0b/websockets-16.0-cp312-cp312-win_amd64.whl", hash = "sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea", size = 178693, upload-time = "2026-01-10T09:22:57.478Z" }, + { url = "https://files.pythonhosted.org/packages/cc/9c/baa8456050d1c1b08dd0ec7346026668cbc6f145ab4e314d707bb845bf0d/websockets-16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9", size = 177364, upload-time = "2026-01-10T09:22:59.333Z" }, + { url = "https://files.pythonhosted.org/packages/7e/0c/8811fc53e9bcff68fe7de2bcbe75116a8d959ac699a3200f4847a8925210/websockets-16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230", size = 175039, upload-time = "2026-01-10T09:23:01.171Z" }, + { url = "https://files.pythonhosted.org/packages/aa/82/39a5f910cb99ec0b59e482971238c845af9220d3ab9fa76dd9162cda9d62/websockets-16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c", size = 175323, upload-time = "2026-01-10T09:23:02.341Z" }, + { url = "https://files.pythonhosted.org/packages/bd/28/0a25ee5342eb5d5f297d992a77e56892ecb65e7854c7898fb7d35e9b33bd/websockets-16.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5", size = 184975, upload-time = "2026-01-10T09:23:03.756Z" }, + { url = "https://files.pythonhosted.org/packages/f9/66/27ea52741752f5107c2e41fda05e8395a682a1e11c4e592a809a90c6a506/websockets-16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82", size = 186203, upload-time = "2026-01-10T09:23:05.01Z" }, + { url = "https://files.pythonhosted.org/packages/37/e5/8e32857371406a757816a2b471939d51c463509be73fa538216ea52b792a/websockets-16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8", size = 185653, upload-time = "2026-01-10T09:23:06.301Z" }, + { url = "https://files.pythonhosted.org/packages/9b/67/f926bac29882894669368dc73f4da900fcdf47955d0a0185d60103df5737/websockets-16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f", size = 184920, upload-time = "2026-01-10T09:23:07.492Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a1/3d6ccdcd125b0a42a311bcd15a7f705d688f73b2a22d8cf1c0875d35d34a/websockets-16.0-cp313-cp313-win32.whl", hash = "sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a", size = 178255, upload-time = "2026-01-10T09:23:09.245Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ae/90366304d7c2ce80f9b826096a9e9048b4bb760e44d3b873bb272cba696b/websockets-16.0-cp313-cp313-win_amd64.whl", hash = "sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156", size = 178689, upload-time = "2026-01-10T09:23:10.483Z" }, + { url = "https://files.pythonhosted.org/packages/f3/1d/e88022630271f5bd349ed82417136281931e558d628dd52c4d8621b4a0b2/websockets-16.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8cc451a50f2aee53042ac52d2d053d08bf89bcb31ae799cb4487587661c038a0", size = 177406, upload-time = "2026-01-10T09:23:12.178Z" }, + { url = "https://files.pythonhosted.org/packages/f2/78/e63be1bf0724eeb4616efb1ae1c9044f7c3953b7957799abb5915bffd38e/websockets-16.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:daa3b6ff70a9241cf6c7fc9e949d41232d9d7d26fd3522b1ad2b4d62487e9904", size = 175085, upload-time = "2026-01-10T09:23:13.511Z" }, + { url = "https://files.pythonhosted.org/packages/bb/f4/d3c9220d818ee955ae390cf319a7c7a467beceb24f05ee7aaaa2414345ba/websockets-16.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:fd3cb4adb94a2a6e2b7c0d8d05cb94e6f1c81a0cf9dc2694fb65c7e8d94c42e4", size = 175328, upload-time = "2026-01-10T09:23:14.727Z" }, + { url = "https://files.pythonhosted.org/packages/63/bc/d3e208028de777087e6fb2b122051a6ff7bbcca0d6df9d9c2bf1dd869ae9/websockets-16.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:781caf5e8eee67f663126490c2f96f40906594cb86b408a703630f95550a8c3e", size = 185044, upload-time = "2026-01-10T09:23:15.939Z" }, + { url = "https://files.pythonhosted.org/packages/ad/6e/9a0927ac24bd33a0a9af834d89e0abc7cfd8e13bed17a86407a66773cc0e/websockets-16.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:caab51a72c51973ca21fa8a18bd8165e1a0183f1ac7066a182ff27107b71e1a4", size = 186279, upload-time = "2026-01-10T09:23:17.148Z" }, + { url = "https://files.pythonhosted.org/packages/b9/ca/bf1c68440d7a868180e11be653c85959502efd3a709323230314fda6e0b3/websockets-16.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:19c4dc84098e523fd63711e563077d39e90ec6702aff4b5d9e344a60cb3c0cb1", size = 185711, upload-time = "2026-01-10T09:23:18.372Z" }, + { url = "https://files.pythonhosted.org/packages/c4/f8/fdc34643a989561f217bb477cbc47a3a07212cbda91c0e4389c43c296ebf/websockets-16.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a5e18a238a2b2249c9a9235466b90e96ae4795672598a58772dd806edc7ac6d3", size = 184982, upload-time = "2026-01-10T09:23:19.652Z" }, + { url = "https://files.pythonhosted.org/packages/dd/d1/574fa27e233764dbac9c52730d63fcf2823b16f0856b3329fc6268d6ae4f/websockets-16.0-cp314-cp314-win32.whl", hash = "sha256:a069d734c4a043182729edd3e9f247c3b2a4035415a9172fd0f1b71658a320a8", size = 177915, upload-time = "2026-01-10T09:23:21.458Z" }, + { url = "https://files.pythonhosted.org/packages/8a/f1/ae6b937bf3126b5134ce1f482365fde31a357c784ac51852978768b5eff4/websockets-16.0-cp314-cp314-win_amd64.whl", hash = "sha256:c0ee0e63f23914732c6d7e0cce24915c48f3f1512ec1d079ed01fc629dab269d", size = 178381, upload-time = "2026-01-10T09:23:22.715Z" }, + { url = "https://files.pythonhosted.org/packages/06/9b/f791d1db48403e1f0a27577a6beb37afae94254a8c6f08be4a23e4930bc0/websockets-16.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:a35539cacc3febb22b8f4d4a99cc79b104226a756aa7400adc722e83b0d03244", size = 177737, upload-time = "2026-01-10T09:23:24.523Z" }, + { url = "https://files.pythonhosted.org/packages/bd/40/53ad02341fa33b3ce489023f635367a4ac98b73570102ad2cdd770dacc9a/websockets-16.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:b784ca5de850f4ce93ec85d3269d24d4c82f22b7212023c974c401d4980ebc5e", size = 175268, upload-time = "2026-01-10T09:23:25.781Z" }, + { url = "https://files.pythonhosted.org/packages/74/9b/6158d4e459b984f949dcbbb0c5d270154c7618e11c01029b9bbd1bb4c4f9/websockets-16.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:569d01a4e7fba956c5ae4fc988f0d4e187900f5497ce46339c996dbf24f17641", size = 175486, upload-time = "2026-01-10T09:23:27.033Z" }, + { url = "https://files.pythonhosted.org/packages/e5/2d/7583b30208b639c8090206f95073646c2c9ffd66f44df967981a64f849ad/websockets-16.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:50f23cdd8343b984957e4077839841146f67a3d31ab0d00e6b824e74c5b2f6e8", size = 185331, upload-time = "2026-01-10T09:23:28.259Z" }, + { url = "https://files.pythonhosted.org/packages/45/b0/cce3784eb519b7b5ad680d14b9673a31ab8dcb7aad8b64d81709d2430aa8/websockets-16.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:152284a83a00c59b759697b7f9e9cddf4e3c7861dd0d964b472b70f78f89e80e", size = 186501, upload-time = "2026-01-10T09:23:29.449Z" }, + { url = "https://files.pythonhosted.org/packages/19/60/b8ebe4c7e89fb5f6cdf080623c9d92789a53636950f7abacfc33fe2b3135/websockets-16.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bc59589ab64b0022385f429b94697348a6a234e8ce22544e3681b2e9331b5944", size = 186062, upload-time = "2026-01-10T09:23:31.368Z" }, + { url = "https://files.pythonhosted.org/packages/88/a8/a080593f89b0138b6cba1b28f8df5673b5506f72879322288b031337c0b8/websockets-16.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:32da954ffa2814258030e5a57bc73a3635463238e797c7375dc8091327434206", size = 185356, upload-time = "2026-01-10T09:23:32.627Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b6/b9afed2afadddaf5ebb2afa801abf4b0868f42f8539bfe4b071b5266c9fe/websockets-16.0-cp314-cp314t-win32.whl", hash = "sha256:5a4b4cc550cb665dd8a47f868c8d04c8230f857363ad3c9caf7a0c3bf8c61ca6", size = 178085, upload-time = "2026-01-10T09:23:33.816Z" }, + { url = "https://files.pythonhosted.org/packages/9f/3e/28135a24e384493fa804216b79a6a6759a38cc4ff59118787b9fb693df93/websockets-16.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b14dc141ed6d2dde437cddb216004bcac6a1df0935d79656387bd41632ba0bbd", size = 178531, upload-time = "2026-01-10T09:23:35.016Z" }, + { url = "https://files.pythonhosted.org/packages/72/07/c98a68571dcf256e74f1f816b8cc5eae6eb2d3d5cfa44d37f801619d9166/websockets-16.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:349f83cd6c9a415428ee1005cadb5c2c56f4389bc06a9af16103c3bc3dcc8b7d", size = 174947, upload-time = "2026-01-10T09:23:36.166Z" }, + { url = "https://files.pythonhosted.org/packages/7e/52/93e166a81e0305b33fe416338be92ae863563fe7bce446b0f687b9df5aea/websockets-16.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:4a1aba3340a8dca8db6eb5a7986157f52eb9e436b74813764241981ca4888f03", size = 175260, upload-time = "2026-01-10T09:23:37.409Z" }, + { url = "https://files.pythonhosted.org/packages/56/0c/2dbf513bafd24889d33de2ff0368190a0e69f37bcfa19009ef819fe4d507/websockets-16.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f4a32d1bd841d4bcbffdcb3d2ce50c09c3909fbead375ab28d0181af89fd04da", size = 176071, upload-time = "2026-01-10T09:23:39.158Z" }, + { url = "https://files.pythonhosted.org/packages/a5/8f/aea9c71cc92bf9b6cc0f7f70df8f0b420636b6c96ef4feee1e16f80f75dd/websockets-16.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0298d07ee155e2e9fda5be8a9042200dd2e3bb0b8a38482156576f863a9d457c", size = 176968, upload-time = "2026-01-10T09:23:41.031Z" }, + { url = "https://files.pythonhosted.org/packages/9a/3f/f70e03f40ffc9a30d817eef7da1be72ee4956ba8d7255c399a01b135902a/websockets-16.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:a653aea902e0324b52f1613332ddf50b00c06fdaf7e92624fbf8c77c78fa5767", size = 178735, upload-time = "2026-01-10T09:23:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/6f/28/258ebab549c2bf3e64d2b0217b973467394a9cea8c42f70418ca2c5d0d2e/websockets-16.0-py3-none-any.whl", hash = "sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec", size = 171598, upload-time = "2026-01-10T09:23:45.395Z" }, +] + +[[package]] +name = "werkzeug" +version = "3.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dd/b2/381be8cfdee792dd117872481b6e378f85c957dd7c5bca38897b08f765fd/werkzeug-3.1.8.tar.gz", hash = "sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44", size = 875852, upload-time = "2026-04-02T18:49:14.268Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/8c/2e650f2afeb7ee576912636c23ddb621c91ac6a98e66dc8d29c3c69446e1/werkzeug-3.1.8-py3-none-any.whl", hash = "sha256:63a77fb8892bf28ebc3178683445222aa500e48ebad5ec77b0ad80f8726b1f50", size = 226459, upload-time = "2026-04-02T18:49:12.72Z" }, +] + +[[package]] +name = "zipp" +version = "4.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/d8/eab98a517c14134c0b2eb4e2387bc5f457334293ec5d2dd3857ec2966802/zipp-4.1.0.tar.gz", hash = "sha256:4cb57381f544315db7688e976e922a2b18cdb513d21cc194eb42232ba2a3e602", size = 26214, upload-time = "2026-05-18T20:08:57.967Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/13/547360d81e6d88d58492968ffda9f9542854f11310ee556fef14260cc886/zipp-4.1.0-py3-none-any.whl", hash = "sha256:25ad4e16390cd314347dd8f1de67a2ac538ae658ed4ab9db16029c07c188e97f", size = 10238, upload-time = "2026-05-18T20:08:57.045Z" }, +] From 8b2f60fb4ab3e1959dc9eacb3f589f707f7f1966 Mon Sep 17 00:00:00 2001 From: David Gable Date: Wed, 1 Jul 2026 19:32:47 -0700 Subject: [PATCH 02/19] Missed some files --- requirements.txt | 2172 +++++++++++++++++++++++++++++++++++++++++++ src/trendify/cli.py | 14 +- 2 files changed, 2181 insertions(+), 5 deletions(-) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9b77c05 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2172 @@ +# This file was autogenerated by uv via the following command: +# uv export --frozen --output-file=requirements.txt +-e . +altair==6.2.2 \ + --hash=sha256:94014f8ad8617c3cb163d1137359cd6db5ba134b9b46d93cfd8b609fd245a583 \ + --hash=sha256:a1ff9d9cfe81c75414641826312b9471780e19d39293ba0b012933f6b6cba0fe + # via streamlit +annotated-types==0.7.0 \ + --hash=sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 \ + --hash=sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89 + # via pydantic +anyio==4.14.1 \ + --hash=sha256:4e5533c5b8ff0a24f5d7a176cbe6877129cd183893f66b537f8f227d10527d72 \ + --hash=sha256:8d648a3544c1a700e3ff78615cd679e4c5c3f149904287e73687b2596963629e + # via + # httpx + # mcp + # sse-starlette + # starlette + # streamlit +attrs==26.1.0 \ + --hash=sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309 \ + --hash=sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32 + # via + # jsonschema + # referencing +babel==2.18.0 \ + --hash=sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d \ + --hash=sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35 + # via mkdocs-material +backrefs==7.0 \ + --hash=sha256:4989bb9e1e99eb23647c7160ed51fb21d0b41b5d200f2d3017da41e023097e82 \ + --hash=sha256:a0fa7360c63509e9e077e174ef4e6d3c21c8db94189b9d957289ae6d794b9475 \ + --hash=sha256:a6448b28180e3ca01134c9cf09dcebafad8531072e09903c5451748a05f24bc9 \ + --hash=sha256:b57cd227ea556b0aed3dc9b8da4628db4eabc0402c6d7fcfc69283a93955f7e9 \ + --hash=sha256:ca42ce6a49ace3d75684dfa9937f3373902a63284ecb385ce36d15e5dcb41c12 \ + --hash=sha256:f2c52955d631b9e1ac4cd56209f0a3a946d592b98e7790e77699339ae01c102a + # via mkdocs-material +black==26.5.1 \ + --hash=sha256:0e48b87e03bf109288e55cfceadcfa15ff5470aca2851a851950ed2926f450d7 \ + --hash=sha256:1037d5ac7b7b310b2632ad867ec8d0e4c4819dcdb0b820f63135da746a24e418 \ + --hash=sha256:1ef92b76f7733f282fd096ea406200b5a286c42947412b0eaff3a74e3616cefe \ + --hash=sha256:1f7ea64ebfa01b50f693508fc39f875e264446d3b097088f84f203b9d09618a0 \ + --hash=sha256:2b36cf2ddf5566e205f6535f782a62194a184d33e175b64ae8c40b1737522be3 \ + --hash=sha256:30d3c14661f2792e9142cce3eeeb1cbc175b3eb5f733be0c8eeb99651e52b0c3 \ + --hash=sha256:32d5ea7f6c8bdfa6e648326ebca1f02b0764e2a029edc6f8dce2627e19d468c3 \ + --hash=sha256:3915f256e75a2d7cf88d8953d37f780455dc586cc72dee059c528fe77f581217 \ + --hash=sha256:4ad6fa01f941920f54f2bbb35f3df7673428a0ef98a0b0840c2eaef3b110efa8 \ + --hash=sha256:4ed7f7da04046d2e488437170797d3b4a4ad83906683bcb7dfc68b673bbce5e2 \ + --hash=sha256:5119fa92ae61f786e8c3662fd60aece1d0a2dd5cca5d0c79417a95e7a4272a59 \ + --hash=sha256:577f21094ea469ef92ec1adaf2c9441a226d2144d01a5be2fa823cecf6543e50 \ + --hash=sha256:5c34b25da232ead53a6f335b76dbea124f4d152ad568b9080d6f944bc2b34b52 \ + --hash=sha256:96ae2c733b2aabdd9986e2c5df628ff3473676cd1c5faded1ff496cf6d74083c \ + --hash=sha256:9d98d4137277c75dfb898ec8d846c4fd68ba1e9cf77f95e2865c203dc18f4c3d \ + --hash=sha256:a1dca32d9f1784af512a13410ec204c6f7f0aa9797a111c42e1c03449821c264 \ + --hash=sha256:dd321f668053961824bcc1be1cc1df748b2d7e4fa28086b08331e577b0100a73 \ + --hash=sha256:e1a26503279b6b310669fb0b219c39e4820b77e8189fe80f522bb511f247db0a \ + --hash=sha256:e88976690a64b0af98312ca958415849cb42423423c5f2ee74af4b49a97a2168 \ + --hash=sha256:ea8d16dc41655aa113cd64665e7219446cd7e4ff2248d7178eaa905190c86b18 \ + --hash=sha256:ecb3e624844c798144e9bd986954e0adc81d8911a1f30f375e1252fe26e8c294 \ + --hash=sha256:ed1a20af114c301a0269bf01163d51dbef72737fd65f850001e7cbe7f3c7abae +blinker==1.9.0 \ + --hash=sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf \ + --hash=sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc + # via + # flask + # streamlit +cachetools==7.1.4 \ + --hash=sha256:323dc4127934744db5b54eb4924482d7edafbf9554e820d1531c2e08c0e4ef54 \ + --hash=sha256:437f55a4e0c1b01a4f3077cc470e6991d47430970e36fbcb77e2be0df4fc1cd6 + # via streamlit +certifi==2026.6.17 \ + --hash=sha256:024c88eeec92ca068db80f02b8b07c9cef7b9fe261d1d535abfd5abd6f6af432 \ + --hash=sha256:2227dcbaafe0d2f59279d1762ddddc37783ed4354594f194ffc31d20f41fc3db + # via + # httpcore + # httpx + # requests +cffi==2.0.0 ; platform_python_implementation != 'PyPy' \ + --hash=sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb \ + --hash=sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b \ + --hash=sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f \ + --hash=sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9 \ + --hash=sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c \ + --hash=sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75 \ + --hash=sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e \ + --hash=sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e \ + --hash=sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25 \ + --hash=sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe \ + --hash=sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b \ + --hash=sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91 \ + --hash=sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592 \ + --hash=sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187 \ + --hash=sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c \ + --hash=sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1 \ + --hash=sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94 \ + --hash=sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba \ + --hash=sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529 \ + --hash=sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca \ + --hash=sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6 \ + --hash=sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743 \ + --hash=sha256:66f011380d0e49ed280c789fbd08ff0d40968ee7b665575489afa95c98196ab5 \ + --hash=sha256:6824f87845e3396029f3820c206e459ccc91760e8fa24422f8b0c3d1731cbec5 \ + --hash=sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4 \ + --hash=sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d \ + --hash=sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b \ + --hash=sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93 \ + --hash=sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205 \ + --hash=sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27 \ + --hash=sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512 \ + --hash=sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d \ + --hash=sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c \ + --hash=sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037 \ + --hash=sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26 \ + --hash=sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c \ + --hash=sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8 \ + --hash=sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414 \ + --hash=sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9 \ + --hash=sha256:9de40a7b0323d889cf8d23d1ef214f565ab154443c42737dfe52ff82cf857664 \ + --hash=sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9 \ + --hash=sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775 \ + --hash=sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc \ + --hash=sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062 \ + --hash=sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe \ + --hash=sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92 \ + --hash=sha256:c649e3a33450ec82378822b3dad03cc228b8f5963c0c12fc3b1e0ab940f768a5 \ + --hash=sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13 \ + --hash=sha256:c6638687455baf640e37344fe26d37c404db8b80d037c3d29f58fe8d1c3b194d \ + --hash=sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26 \ + --hash=sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b \ + --hash=sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6 \ + --hash=sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c \ + --hash=sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef \ + --hash=sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5 \ + --hash=sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18 \ + --hash=sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad \ + --hash=sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3 \ + --hash=sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2 \ + --hash=sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5 + # via cryptography +charset-normalizer==3.4.7 \ + --hash=sha256:03853ed82eeebbce3c2abfdbc98c96dc205f32a79627688ac9a27370ea61a49c \ + --hash=sha256:08e721811161356f97b4059a9ba7bafb23ea5ee2255402c42881c214e173c6b4 \ + --hash=sha256:0c96c3b819b5c3e9e165495db84d41914d6894d55181d2d108cc1a69bfc9cce0 \ + --hash=sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c \ + --hash=sha256:0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5 \ + --hash=sha256:1a87ca9d5df6fe460483d9a5bbf2b18f620cbed41b432e2bddb686228282d10b \ + --hash=sha256:1c2a768fdd44ee4a9339a9b0b130049139b8ce3c01d2ce09f67f5a68048d477c \ + --hash=sha256:1c2aed2e5e41f24ea8ef1590b8e848a79b56f3a5564a65ceec43c9d692dc7d8a \ + --hash=sha256:202389074300232baeb53ae2569a60901f7efadd4245cf3a3bf0617d60b439d7 \ + --hash=sha256:203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb \ + --hash=sha256:2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c \ + --hash=sha256:298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1 \ + --hash=sha256:2d6eb928e13016cea4f1f21d1e10c1cebd5a421bc57ddf5b1142ae3f86824fab \ + --hash=sha256:2fe249cb4651fd12605b7288b24751d8bfd46d35f12a20b1ba33dea122e690df \ + --hash=sha256:30b8d1d8c52a48c2c5690e152c169b673487a2a58de1ec7393196753063fcd5e \ + --hash=sha256:3534e7dcbdcf757da6b85a0bbf5b6868786d5982dd959b065e65481644817a18 \ + --hash=sha256:38c0109396c4cfc574d502df99742a45c72c08eff0a36158b6f04000043dbf38 \ + --hash=sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110 \ + --hash=sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18 \ + --hash=sha256:3c9a494bc5ec77d43cea229c4f6db1e4d8fe7e1bbffa8b6f0f0032430ff8ab44 \ + --hash=sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d \ + --hash=sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48 \ + --hash=sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e \ + --hash=sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5 \ + --hash=sha256:4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d \ + --hash=sha256:532bc9bf33a68613fd7d65e4b1c71a6a38d7d42604ecf239c77392e9b4e8998c \ + --hash=sha256:54523e136b8948060c0fa0bc7b1b50c32c186f2fceee897a495406bb6e311d2b \ + --hash=sha256:5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116 \ + --hash=sha256:56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d \ + --hash=sha256:5b77459df20e08151cd6f8b9ef8ef1f961ef73d85c21a555c7eed5b79410ec10 \ + --hash=sha256:5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6 \ + --hash=sha256:6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2 \ + --hash=sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a \ + --hash=sha256:65bcd23054beab4d166035cabbc868a09c1a49d1efe458fe8e4361215df40265 \ + --hash=sha256:67f6279d125ca0046a7fd386d01b311c6363844deac3e5b069b514ba3e63c246 \ + --hash=sha256:6c114670c45346afedc0d947faf3c7f701051d2518b943679c8ff88befe14f8e \ + --hash=sha256:708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15 \ + --hash=sha256:715479b9a2802ecac752a3b0efa2b0b60285cf962ee38414211abdfccc233b41 \ + --hash=sha256:733784b6d6def852c814bce5f318d25da2ee65dd4839a0718641c696e09a2960 \ + --hash=sha256:752a45dc4a6934060b3b0dab47e04edc3326575f82be64bc4fc293914566503e \ + --hash=sha256:7579e913a5339fb8fa133f6bbcfd8e6749696206cf05acdbdca71a1b436d8e72 \ + --hash=sha256:7641bb8895e77f921102f72833904dcd9901df5d6d72a2ab8f31d04b7e51e4e7 \ + --hash=sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8 \ + --hash=sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b \ + --hash=sha256:8778f0c7a52e56f75d12dae53ae320fae900a8b9b4164b981b9c5ce059cd1fcb \ + --hash=sha256:8d828b6667a32a728a1ad1d93957cdf37489c57b97ae6c4de2860fa749b8fc1e \ + --hash=sha256:8e385e4267ab76874ae30db04c627faaaf0b509e1ccc11a95b3fc3e83f855c00 \ + --hash=sha256:92a0a01ead5e668468e952e4238cccd7c537364eb7d851ab144ab6627dbbe12f \ + --hash=sha256:a180c5e59792af262bf263b21a3c49353f25945d8d9f70628e73de370d55e1e1 \ + --hash=sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66 \ + --hash=sha256:a5fe03b42827c13cdccd08e6c0247b6a6d4b5e3cdc53fd1749f5896adcdc2356 \ + --hash=sha256:a89c23ef8d2c6b27fd200a42aa4ac72786e7c60d40efdc76e6011260b6e949c4 \ + --hash=sha256:adb2597b428735679446b46c8badf467b4ca5f5056aae4d51a19f9570301b1ad \ + --hash=sha256:ae196f021b5e7c78e918242d217db021ed2a6ace2bc6ae94c0fc596221c7f58d \ + --hash=sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5 \ + --hash=sha256:aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7 \ + --hash=sha256:bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49 \ + --hash=sha256:bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e \ + --hash=sha256:c03a41a8784091e67a39648f70c5f97b5b6a37f216896d44d2cdcb82615339a0 \ + --hash=sha256:c35abb8bfff0185efac5878da64c45dafd2b37fb0383add1be155a763c1f083d \ + --hash=sha256:c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0 \ + --hash=sha256:c45e9440fb78f8ddabcf714b68f936737a121355bf59f3907f4e17721b9d1aae \ + --hash=sha256:ce3412fbe1e31eb81ea42f4169ed94861c56e643189e1e75f0041f3fe7020abe \ + --hash=sha256:cf1493cd8607bec4d8a7b9b004e699fcf8f9103a9284cc94962cb73d20f9d4a3 \ + --hash=sha256:d4a48e5b3c2a489fae013b7589308a40146ee081f6f509e047e0e096084ceca1 \ + --hash=sha256:d6038d37043bced98a66e68d3aa2b6a35505dc01328cd65217cefe82f25def44 \ + --hash=sha256:d635aab80466bc95771bb78d5370e74d36d1fe31467b6b29b8b57b2a3cd7d22c \ + --hash=sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd \ + --hash=sha256:e060d01aec0a910bdccb8be71faf34e7799ce36950f8294c8bf612cba65a2c9e \ + --hash=sha256:e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b \ + --hash=sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859 \ + --hash=sha256:e74327fb75de8986940def6e8dee4f127cc9752bee7355bb323cc5b2659b6d46 \ + --hash=sha256:e8ac484bf18ce6975760921bb6148041faa8fef0547200386ea0b52b5d27bf7b \ + --hash=sha256:eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46 \ + --hash=sha256:edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a \ + --hash=sha256:effc3f449787117233702311a1b7d8f59cba9ced946ba727bdc329ec69028e24 \ + --hash=sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215 \ + --hash=sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063 \ + --hash=sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832 \ + --hash=sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6 \ + --hash=sha256:fbccdc05410c9ee21bbf16a35f4c1d16123dcdeb8a1d38f33654fa21d0234f79 \ + --hash=sha256:fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464 + # via requests +click==8.4.2 \ + --hash=sha256:9a6cea6e60b17ebe0a44c5cc636d94f09bd66142c1cd7d8b4cd731c4917a15f6 \ + --hash=sha256:e6f9f66136c816745b9d65817da91d61d957fb16e02e4dcd0552553c5a197b76 + # via + # black + # flask + # mkdocs + # mkdocs-click + # properdocs + # streamlit + # uvicorn +colorama==0.4.6 \ + --hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \ + --hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 + # via + # click + # mkdocs + # mkdocs-material + # properdocs + # pytest +contourpy==1.3.3 \ + --hash=sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69 \ + --hash=sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc \ + --hash=sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880 \ + --hash=sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a \ + --hash=sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8 \ + --hash=sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc \ + --hash=sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470 \ + --hash=sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5 \ + --hash=sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263 \ + --hash=sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b \ + --hash=sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5 \ + --hash=sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381 \ + --hash=sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3 \ + --hash=sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4 \ + --hash=sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e \ + --hash=sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f \ + --hash=sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772 \ + --hash=sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286 \ + --hash=sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42 \ + --hash=sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301 \ + --hash=sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77 \ + --hash=sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7 \ + --hash=sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411 \ + --hash=sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1 \ + --hash=sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9 \ + --hash=sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a \ + --hash=sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b \ + --hash=sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db \ + --hash=sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6 \ + --hash=sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620 \ + --hash=sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989 \ + --hash=sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea \ + --hash=sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67 \ + --hash=sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5 \ + --hash=sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d \ + --hash=sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36 \ + --hash=sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99 \ + --hash=sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1 \ + --hash=sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e \ + --hash=sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b \ + --hash=sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8 \ + --hash=sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d \ + --hash=sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7 \ + --hash=sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7 \ + --hash=sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339 \ + --hash=sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1 \ + --hash=sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659 \ + --hash=sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4 \ + --hash=sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f \ + --hash=sha256:ab3074b48c4e2cf1a960e6bbeb7f04566bf36b1861d5c9d4d8ac04b82e38ba20 \ + --hash=sha256:afe5a512f31ee6bd7d0dda52ec9864c984ca3d66664444f2d72e0dc4eb832e36 \ + --hash=sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb \ + --hash=sha256:b20c7c9a3bf701366556e1b1984ed2d0cedf999903c51311417cf5f591d8c78d \ + --hash=sha256:b2e8faa0ed68cb29af51edd8e24798bb661eac3bd9f65420c1887b6ca89987c8 \ + --hash=sha256:b7301b89040075c30e5768810bc96a8e8d78085b47d8be6e4c3f5a0b4ed478a0 \ + --hash=sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b \ + --hash=sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7 \ + --hash=sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe \ + --hash=sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77 \ + --hash=sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497 \ + --hash=sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd \ + --hash=sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1 \ + --hash=sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216 \ + --hash=sha256:d304906ecc71672e9c89e87c4675dc5c2645e1f4269a5063b99b0bb29f232d13 \ + --hash=sha256:e4e6b05a45525357e382909a4c1600444e2a45b4795163d3b22669285591c1ae \ + --hash=sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae \ + --hash=sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77 \ + --hash=sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3 \ + --hash=sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f \ + --hash=sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff \ + --hash=sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9 \ + --hash=sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a + # via matplotlib +coverage==7.14.3 \ + --hash=sha256:02c41de2a88011b893050fc9830267d927a50a215f7ad5ec17349db7090ccf26 \ + --hash=sha256:0423d64c013057a06e70f070f073cec4b0cbc7d2b27f3c7007292f2ff1d52965 \ + --hash=sha256:0ee68f5c34812780f3a7063382c0a9fcbb99985b7ddcdcaa626e4f3fb2e0783a \ + --hash=sha256:11a7ec9f97ab950f4c5af62229befc7faf208fdbc0116d3902d7e306cf2c5abd \ + --hash=sha256:16b206e521feb8b7133a45754643dead0538489cf8b783b90cf5f4e3299625fd \ + --hash=sha256:1a7563a443f3d53fdeb040ec8c9f7466aed7ca3dc5891aa09d3ca3625fa4387f \ + --hash=sha256:1bb93c2aa61d2a5b38f1526546d95cf4132cb681e541a337bf8dfd092be816e5 \ + --hash=sha256:1e3b91f9c4740aeb571ecf82e5e8d8e4ab62d34fcb5a5d4e5baa38c6f7d2857c \ + --hash=sha256:2415902f385a23dcc4ccd26e0ba803249a169af6a930c003a4c715eeb9a5444e \ + --hash=sha256:27d07a46500ba23515b838dbcf52512026af04090755cf6cc64166d88c9b9a1a \ + --hash=sha256:2bfc4dd0a912329eccc7484a7d0b2a38032b38c40663b1e1ac595f10c457954b \ + --hash=sha256:2e41fd3aab806770008279a93879b0924b16247e09ab537c043d08bbca53b4ab \ + --hash=sha256:338b19131ab1a6b767b462bfcbaa692e7ae22f24463e39d49b02a83410ff6b37 \ + --hash=sha256:39e1dbbb6ff2c338e0196a482558a792a1de3aa64261196f5cdb3da016ad9cda \ + --hash=sha256:3c68df8e61f1e09633fefc7538297145623957a048534368c9d212782aa5e845 \ + --hash=sha256:3d74ff26299c4879ce3a4d826f9d3d4d556fd285fde7bbce3c0ef5a8ab1cec24 \ + --hash=sha256:3e5b550a128419373c2f6cec28a244207013ef15f5cbcff6a5ca09d1dfaaf027 \ + --hash=sha256:41de778bd41780586e2b04912079c73089ab5d839624e28db3bdb26de638da92 \ + --hash=sha256:47968988b367990ae4ab17523790c38cd125e02c6bfd379b6022be2d40bdc38c \ + --hash=sha256:4b60ca6d8af70473491a15a343cbabab2e8f9ea66a4376e81c7aa24876a6f977 \ + --hash=sha256:4d310baf69a4fbe8a098ce727e4808a34866ac718a6f759ae659cbd3221358bc \ + --hash=sha256:526ce9721116af23b1065089f0b75046fe521e7772ab94b641cd66b7a0421889 \ + --hash=sha256:5952f8c1bda2a5347154450379316e6dfa4d934d62ca35f6784451e6f55074fb \ + --hash=sha256:5d788e5fd55347eef06ca0732c77d04a264de67e8ff24631270cdff3767a60cf \ + --hash=sha256:605ab2b566a22bd94834529d66d295c364aba84afd3e5498285c7a524017b1fc \ + --hash=sha256:611e62cb9386096d81b63e0a05330750268617231e7bd598e1fe77482a2c58a5 \ + --hash=sha256:621e13c6108234d7960aaf5762ab5c3c00f33c30c15af06dcbff0c73bf112727 \ + --hash=sha256:62c7f79db2851c95ef020e5d28b97afde3daf9f7febcd35b53e05638f729063f \ + --hash=sha256:68520c90babfa2d560eca6d497921ed3a4f469623bd709733124491b2aa8ef3f \ + --hash=sha256:69918344541ed9c8368566c2adc03c0e33d4550d7faa87d1b35e49b6a3286ea9 \ + --hash=sha256:6a3693b4153394d265f44fb855fdc80e72403024d4d6f91c4871b334d028e4e0 \ + --hash=sha256:74fdd718d88fe144f4579b8747873a07ec3f04cb837d5faec5a25d9e22fa31a8 \ + --hash=sha256:7b27c822a8161afbe48e99f1adfb098d270ae7e0f7d7b0555ce110529bdb69cc \ + --hash=sha256:7ea52fc08f007bcc494d4bb3df3851e95843d881860ba38fe2c64dc100db5e7d \ + --hash=sha256:8427f370ca67db4c975d2a26acfc0e5783ca0b52444dbc50278ace0f35445949 \ + --hash=sha256:878832eaac515b62decfa76965aed558775f86bf1fc8cca76993c0c84ae31aed \ + --hash=sha256:8ac012839ff7e396030f1e94e10553a431d14e4de2ab65cb3acb72bbd5628ca2 \ + --hash=sha256:8cec0ad652ec57790970d817490105bd917d783c2f7b38d6b58a0ca312e1a336 \ + --hash=sha256:8cf0f2509acb4619e2471a1951089054dd58ebea7a912066d2ea56dd4c24ca4a \ + --hash=sha256:90f7608aeb5d9b60b523b9fb2a4ee1973867cc4865a3f26fe6c7577073b70205 \ + --hash=sha256:92c22e19ce64ca3f2ad751f16f14df1468b4c231bd6af97185063a9c292a0cb3 \ + --hash=sha256:96150a9cf3468ea20f0bc5d0e21b3df8972c31480ef90fa7614b773cc6429665 \ + --hash=sha256:98a0859b0e98e43e1178a9402e19c8127766b14f7109a374d976e5a62c0e5c73 \ + --hash=sha256:9973ef2463f8e6cfb61a6324126bb3e17d67a85f22f58d856e583ea2e3ca6501 \ + --hash=sha256:9be4e7d4c5ca0427889f8f9d614bd630c2be741b1de7699bca3b2b6c0e41003e \ + --hash=sha256:a090cbf9521e78ffdb2fcf448b72902afe9f5923ff6a12d5c0d0120200348af9 \ + --hash=sha256:a2335ea5fed26af2e831094964fa3f8fae60b45f7e37fcc2d3b615b2add3ad87 \ + --hash=sha256:a3c2134809e80fac091bfed18a6991b5a5eb5df5ae32b17ac4f4f99864b73dd7 \ + --hash=sha256:a571bd889cd36c5922ce8e42e059f9d37d02301531d11374afa4c87a578625d5 \ + --hash=sha256:a574912f3bde4b0619f6e97d01aa590b70998859244793769eb3a6df78ee56d3 \ + --hash=sha256:ac082660de8f429ba0ea363595abb838998570b9a7546777c60f413ab902bbde \ + --hash=sha256:b3d77f7f196abdef7e01415de1bce09f216189e83e58159cfeef2b92d0464994 \ + --hash=sha256:b3ff255799f5a1676c71c1c32ec01fd043aa09d57b3d95764b24992757184784 \ + --hash=sha256:b488bd4b23397db62e7a9459129d01ff06a846582a732efd24834b24a6ada498 \ + --hash=sha256:b75ee850fc2d7c831e883220c445b035f2224de2ba6103f1e56dbd237ab913f7 \ + --hash=sha256:b7f300ac92cd4b570724c8ffbbd0c130fee298d2447f41d5a3abf58976fae1de \ + --hash=sha256:beaab199b9e5ceaf5a225e16a9d4df136f2a1eae0a5c20de1e277c8a5225f388 \ + --hash=sha256:c02efd507227bde9969cab0db8f48890eb3b5dcad6afac57a4792df4133543ce \ + --hash=sha256:c66f9f9d4f1e9712eb9b1de5310f881d4e2188cfcba5065e1a8490f38687f2c4 \ + --hash=sha256:c90a7cdd5e380e1ce02f19792e2ac2fbfbf177e35a27e69fd3e873b30d895c0c \ + --hash=sha256:c946099774a7699de03cbd0ff0a64e21aed4525eed9d959adde4afe6d15758ef \ + --hash=sha256:cc96aa922e21d4bc5d5ed3c915cef27dfcbc13686f47d5e378d647fbfba655a2 \ + --hash=sha256:d20a15c622194234161535459affa8f7905830391c9ccfa060d495dbfe3a1c7f \ + --hash=sha256:d8e88f335544a47e22ae2e45b344772925ec65166555c958720d5ed971880891 \ + --hash=sha256:dc9b4e35e7c3920e925ba7f14886fd5fbe481232754624e832ddba66c7535635 \ + --hash=sha256:de76caefc8deabb0dd1678b6a980be97d14c8d87e213ac194dbf8b09e96d63fb \ + --hash=sha256:e343fb086c9cd780b38622fea7c369acd64c1a0724312149b5d769c387a2b1f5 \ + --hash=sha256:e4ed44705ca4bead6fc977a8b741f2145608289b33c8a9b42a95d0f15aedbf4d \ + --hash=sha256:e574801e1d643561594aa021206c46d80b257e9853087090ba97bed8b0a509d3 \ + --hash=sha256:e6230e688c7c3e65cedd41a774eb4ec221adc6bfee13768231015b702d5e4150 \ + --hash=sha256:ea3169c7116eb6cdf7608c6c7da9ecfcb3da40688e3a510fac2d1d2bafd6dc35 \ + --hash=sha256:f0a47095963cfe054e0df178daca95aec21e680d6076da807c3add28dfe920f7 \ + --hash=sha256:f502e948e03e866538048bba081c075caaa62e5bda6ea5b7432e45f587eb462a \ + --hash=sha256:f82b6bb7d75a2613e85d07cefa3a8c973d0544a8993337f6e2728e4a1e94c305 \ + --hash=sha256:fa9e5c6857a7e80fa22ace5cf3550ae392bbfc322f1d8dd2d2d5a8be38cec027 \ + --hash=sha256:fb7e18afb6e903c1a92401a2f0501ac277dca527bb9ca6fe1f691a8a0026a0e8 \ + --hash=sha256:fbb8c3a98e779013786ae01d229662aeacbc77100efbd3f2f245219ace5af700 + # via pytest-cov +cryptography==49.0.0 \ + --hash=sha256:026ac7423e6fa66872d3bf889be5974507da3944f866f704fa200eadacd00001 \ + --hash=sha256:07cab27cc7b7e0fd28e5e26bb9eeedde5c135c868b46de4a27845abe94af6122 \ + --hash=sha256:084ef1af862eb07ec46d25f68689f2102a9fc0e05ce7b80f14f5fe51e4eef0f6 \ + --hash=sha256:0b82e28ee398a386f0807bba7884d30f25218855690f45115831bcce5d90822c \ + --hash=sha256:0e959b578856a3924bc0cbb710fc12c387b9412a951389f3ca61704a9e25f325 \ + --hash=sha256:0f21641cf4b30fca7aee061ced0ec7ad7b073518088b7c9969a297c0ae796c69 \ + --hash=sha256:196ecd6a36e4e9aa10270393bb98d8df88fccee0bf1e5128b91ae4eb4375896d \ + --hash=sha256:2400ef9c9e2299a25614eb1dea3db54a69b1349efd043bfac9c67630d136df36 \ + --hash=sha256:28d8b15e6275f12c8a207dc309dfa957903c927d08d0cc937ee3f63f200693cc \ + --hash=sha256:2afe9051da7ae7bd5905da5a949280c7d2bb75682e188f650a9d0f2756b834c6 \ + --hash=sha256:2eda353d8a27bcbcaa4cbed18994a74ab4d19a2ca897db188ea269ab9b71419b \ + --hash=sha256:32703d93296f5c1f4b53349ad3a250c2cae0fdecd3a3dd5d47e616d8d616af27 \ + --hash=sha256:33cd0565932807baddb67b96dbee92f2c374b5c89dee09fd74079aeb8c8dba61 \ + --hash=sha256:35b151772baff2c74cba7fa290ceaff4c3b11c0c881eb93eb5dbc05a7cfbba18 \ + --hash=sha256:36d1709f992593689b45bda411498d62c6e365f2ca00b84657d4dadd24de16db \ + --hash=sha256:42b0684e0e40cf26122427802486f6d93aea593612603a94fbf260c7eb1e9c1b \ + --hash=sha256:4ae387c9cb68ea569ca17e490d66d8142b81c3cc814bf179974b7d146e490bbb \ + --hash=sha256:53ecee2e23f7169b6117e99fc8a944e5e50f79e69758a83b52a00cb98ab2b2d2 \ + --hash=sha256:66ec79c3904820572d7e987abdf304281f141d37ad9a489b8e97066e7b9b6459 \ + --hash=sha256:67e1d20ad9ef3a563c59ef22e7a8a0b8210bd26604369ea4a30a7c66aefe504e \ + --hash=sha256:6f2debedf9ca60cf1d5bd466475638af5130f89965605cd818484d19987d3a21 \ + --hash=sha256:6fc361c34fb6aac015ce19435876635e5c6d21db31998b0920f675f131e043b8 \ + --hash=sha256:73a205dce83953d131a4aa1e0fd917a2fd1c5b1eef251e9d7152efefcbf5caf7 \ + --hash=sha256:7abcee80084cda3f7691f3eb1ce480d8df49cec637b429aa35986c1de71738aa \ + --hash=sha256:8c25ceb16df5b9435f3f6a9829204985b0e0cbee3b48aacd432c7d2c850b44d9 \ + --hash=sha256:966fe0e9c67490071f14c0d2b1cb2dfb3023c5ce39457343931415f08382f2db \ + --hash=sha256:9e82dcc8e56052715fb18b2429e3bca4823b1629136a2084fc45a9a5cecb9b64 \ + --hash=sha256:b20133d204d2bb56ba047642199603876c872026ca53e79c35b83772ab2cc505 \ + --hash=sha256:b39efa323140595abd3ecca8529d321ae50f55f3aa3ba9cc81ea56a6011953d5 \ + --hash=sha256:b47db11c2c3525083296069b98ac5221907455e989ae0c2e3008bde851921615 \ + --hash=sha256:b87e65d263b3e5d3bb92a57e2a6638e2f31110fa7aa890c7b2dbba42248d0a3f \ + --hash=sha256:b970c6da94d5bb18629db453d14f2a1300f6bf59b61e9b82377931ef95504866 \ + --hash=sha256:be9fcb48a55f023493482827d4f459bd263cc20efde64f204b97c123201850c6 \ + --hash=sha256:c2bc30226390d60ea19d9f82b19db005fe0452154a23c1c410c12ea801e43561 \ + --hash=sha256:c83782480a4a9da4d0feb51950131ba32e12e70813848b3343f6e18c28a66838 \ + --hash=sha256:cbc77da8c523d5abd028635ba850a6966fcee2c82e2bf65a41d1d8afe0f98be9 \ + --hash=sha256:ccac2bfebc306b862133e3bb71f3f6ee8bb525240089b2d952e4144b3a6d5da7 \ + --hash=sha256:d0527ce944105f257f605a827d6ebead966c752038b6e8656abb9c5edee6fc68 \ + --hash=sha256:d8ecde755e2e91bf773fc94e8c9d730cd7f2007004cb492263a794ec3899a1c8 \ + --hash=sha256:e3fb64c420688e5319ae25113a354015abbd8dffbfbc41781a1ea66fc7622ac3 \ + --hash=sha256:e5dfc1e64de5677cec922ffa8da89c546d0415bf6efdf081842e5d44c84e1f0e \ + --hash=sha256:ec5e529fb80935c94fe7b729f9972b50e351a0e6b50aa294fd5cabb109fcc29a \ + --hash=sha256:f37d847238971164fdbc68ade6f6574aecc9c0af714190e2083429ff68f4ce9d \ + --hash=sha256:f78ff2c9ed8dc2d036b0f4d640e22522213d047c1b14e61205a7e55c80a494d4 \ + --hash=sha256:f89660a348f4f78a92366240a61404e337586ef7f5909a2fef59ca88ef505493 \ + --hash=sha256:fc1e275c2f1d97b1a6450b8b0ea3ebfa6e087a611c2b26cb2404d48588abab7b + # via pyjwt +cycler==0.12.1 \ + --hash=sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 \ + --hash=sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c + # via matplotlib +dash==4.3.0 \ + --hash=sha256:1ec96641d5e3c06b7dfffad8241e345533d70327d96f722a8e13b827c287341b \ + --hash=sha256:cbbe79a2bb1a5e46fbbbddc33f9f558419442c2d55cd12526078f489b5801cc0 + # via trendify +filelock==3.29.4 \ + --hash=sha256:10cdb3656fc44541cdf30652a93fb10ec6b05325620eb316bd26893e4201538a \ + --hash=sha256:dac1648087d5115554850d113e7dd8c83ab2d38e3435dde2d4f163847e57b767 + # via trendify +flake8==7.3.0 \ + --hash=sha256:b9696257b9ce8beb888cdbe31cf885c90d31928fe202be0889a7cdafad32f01e \ + --hash=sha256:fe044858146b9fc69b551a4b490d69cf960fcb78ad1edcb84e7fbb1b4a8e3872 +flask==3.1.3 \ + --hash=sha256:0ef0e52b8a9cd932855379197dd8f94047b359ca0a78695144304cb45f87c9eb \ + --hash=sha256:f4bcbefc124291925f1a26446da31a5178f9483862233b23c0c96a20701f670c + # via + # dash + # trendify +fonttools==4.63.0 \ + --hash=sha256:063e08bd17bd5a90127a14123de0d6a952dbc847695fd98b63c043d58057f90c \ + --hash=sha256:0eac00b9118c3c2f87d272e45341871c5b3066baa3c86897fa634a7c3fb59096 \ + --hash=sha256:1e874792a8212b44583ea02189d9e693906b2f78b261f372f95d6c563210ac1d \ + --hash=sha256:22135da48a348785c5e2d5d2d9d6bec5ed44adacbaeb9db12d9493bf6c6bfa68 \ + --hash=sha256:22693918177bd9ceabec4736d338045f357769416fc6b0b2508eefef75b08616 \ + --hash=sha256:27fdc65af8da6f88b9c6121c47a464cbe359fcfff7ff6fc2d37a1f395d755b78 \ + --hash=sha256:2b8ae05d9eacf6081414d759c0a352769ac28ce31280d6bb8e77b03f9e3c449f \ + --hash=sha256:2c14b4fd138c4bafcca294765c547914e1aa431ae1ca94ab99d8db08c958bd3b \ + --hash=sha256:308f957cdeaf8abe4e5f2f124902ef405448af92c90f80e302a3b771c2e6116b \ + --hash=sha256:37dd23e621e3b0aef1baa70a303b80aaf38449632cfc8fd2a55fb285bbccfc02 \ + --hash=sha256:445af2eab030a16b9171ea8bdda7ebf7d96bda2df88ee182a464252f6e05e20d \ + --hash=sha256:51394295f1a51de8b5f30bdb1e1b9a4231536c7064ef5c6e211eec19fa36036f \ + --hash=sha256:58dc6bb86a78d782f00f9190ca02c119cf5bbe2807536e361e18d42019f877d8 \ + --hash=sha256:59ac449f8cca9b4ffa08d2e7bbadad87ce710d69d1eda5c3c1ce579baa987272 \ + --hash=sha256:6b2248c5decb223562f7902ff6325077a073f608ee8e33e88ad88db734eb9f49 \ + --hash=sha256:6d4741eb179121cab9eea4cb2393d24492373a260d7945006358c08cfbf45419 \ + --hash=sha256:6db5140a60a5d731d21ec076745b40a310607731b0a565b50776393188649001 \ + --hash=sha256:6e528da43bc3791085f8cb6141b1d13e459226790240340fcbb4625649238b03 \ + --hash=sha256:796f27556dbe094c4824f75ca85267e4df776c79036c8441469a4df37038c196 \ + --hash=sha256:79cdc9f567aec74a72918fd060283911406750cbc9fd28c1316023deb6ce31a9 \ + --hash=sha256:7d76edbff9014094dbf03bd2d074709dfa6ec7aba13d838c937a2b33d2d6a86e \ + --hash=sha256:7d782fac32985914c351556f68ac0855391572bcd87de50e05970d3cd4c96fc5 \ + --hash=sha256:7dd683fef0663e9f0f45cf541d788d24caa3ec9db50796b588e1757d8b3bc007 \ + --hash=sha256:85be818f5506e8a7753153def2c9550178f0ecae6a47b5e0e8dbb23f7cc90380 \ + --hash=sha256:948428a275741f0b64b113c955425a953314f4b9ab9997f73a72c83e68e569c8 \ + --hash=sha256:9ced0bd02ac751dd6319b0da88aaef24414e3b0dbc32bb4f24944821a3741a27 \ + --hash=sha256:9e12f105d2b6342c559c298afb674006bb2893afc7102dcf8a1b55b0486b4e40 \ + --hash=sha256:a9faff9e0c1f76f9fd55899d2ce785832efebab37eb8ae13995853aef178bef0 \ + --hash=sha256:af2fd1664d00a397d75f806985ddb36282091c2131a73a6485c23b4a34722263 \ + --hash=sha256:afefc1ed0a59785a7fb06ea7e1678e849c193e1e387db783579bc7b3056fcfcb \ + --hash=sha256:ba04cb5891d4c0c21b6da95eda8d7b090021508a294fff33464fc7d241e0856b \ + --hash=sha256:bf00f21eb5fb721dbaf73d1e9da6d02a1af7768f2ebcf9798be98beab8ba90f6 \ + --hash=sha256:c1aaa4b9c75798400ac043ce04d74e7830376c85095a5a6ed7cba2f17a266bf4 \ + --hash=sha256:c2a2a42198b696a6f48fad91709afb55176e66a5e566131219dba372fb7f8c59 \ + --hash=sha256:caeb583deeb5168e694b65cda8b4ee62abedfa66cf88488734466f2366b9c4e0 \ + --hash=sha256:ccf41f2efdf56994d22d73bef4ced1052161958169428d06ba9724ea9e9a64be \ + --hash=sha256:cd7e9857e5e63738b9d9fd707bc1f59c8b09e5177726d23664db393c59bb08bd \ + --hash=sha256:d76ac49f929aecaf82d83250b8347e099d7aecba0f4726c1d9b6df3b8bb5fe18 \ + --hash=sha256:dcf076a4474fe0d7367e5bbf5b052c7284fa1feca729c04176ce513521afd8a0 \ + --hash=sha256:ee08ebfa58f6e1aeff5697ab9582105bb620008c1caafb681e4c557e7483027b \ + --hash=sha256:ef3048ef05dbb552b89817713d9cac912e00d0fde4a3105c00d29e52e10c89af \ + --hash=sha256:fd1e3094f42d806d3d7c79162fc59e5910fcbe3a7360c385b8da969bc4493745 + # via matplotlib +ghp-import==2.1.0 \ + --hash=sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619 \ + --hash=sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343 + # via + # mkdocs + # properdocs +gitdb==4.0.12 \ + --hash=sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571 \ + --hash=sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf + # via gitpython +gitpython==3.1.50 \ + --hash=sha256:80da2d12504d52e1f998772dc5baf6e553f8d2fcfe1fcc226c9d9a2ee3372dcc \ + --hash=sha256:d352abe2908d07355014abdd21ddf798c2a961469239afec4962e9da884858f9 + # via streamlit +grafana-api==1.0.3 \ + --hash=sha256:30caef227025ecdb5662b242aaae921b89b58959566d83a5948523c8138e98ce \ + --hash=sha256:d541ea1a5b7efafa56c5f04053ed42b2d972a6aa313bc4881dd192aeb0706e2e + # via trendify +griffe-pydantic==1.3.1 \ + --hash=sha256:475103794a1d5da3933d3968e82a2bd9d9a1fa507c06d5ee1a39ee1fadcca628 \ + --hash=sha256:f7caedfa0effedb22893bf01cc411fd567614f7b4de7ce0c1f4293eb7acb5c44 +griffelib==2.1.0 \ + --hash=sha256:762a186d2c6fd6794d4ea20d428d597ffb857cb56b66421651cbba15bdd5e813 \ + --hash=sha256:cc7b3d2d2865ad0b909fcc38086e3f554b5ea7acbaa7bbb7ecaa3f5dfb7d9f00 + # via + # griffe-pydantic + # mkdocstrings-python +h11==0.16.0 \ + --hash=sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1 \ + --hash=sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86 + # via + # httpcore + # uvicorn +hatchling==1.30.1 \ + --hash=sha256:161eacafb3c6f91526e92116d21426369f2c36e98c36a864f11a96345ad4ee31 \ + --hash=sha256:eee4fd45357f72ebb3d7a42e5d72cfb5e29ed426d79e8836288926c4258d5f2e +httpcore==1.0.9 \ + --hash=sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55 \ + --hash=sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8 + # via httpx +httptools==0.8.0 \ + --hash=sha256:0770728beb05094c809b98e814edff5fef69d26ad7d21185f2f6d5884a0ba683 \ + --hash=sha256:159e9ab5f701ccd42e555a12f1ad8ff69702910fc1c996cf2bb66e5fcb7a231b \ + --hash=sha256:19d1ee275bb59ba2643ba9a3a1e51cc0c788caf2b8df506368e03f56fdd08527 \ + --hash=sha256:20b4aac66ff65f7db06a375808b78f42a94970aa22e826b3cb2b43eb09174124 \ + --hash=sha256:2a021c3a8e65cc125390d72f59b968afca3bdcaff25bd67965e0a055a14946ca \ + --hash=sha256:2c032fa028f46871ec7e1fc59fc15e8023eab3e6bbe6ece786a1611719a5d081 \ + --hash=sha256:2d689918c15a013c65ef52d9fd495d766893ab831a2c8d89f2ac5940a5df847c \ + --hash=sha256:384c17174464c8e873398b7af24f0b1f44d992c820328413951a625323155d77 \ + --hash=sha256:425f83884fd6343828d8c565f046cb72b6d19063f6924093e11bcd8e1548cd09 \ + --hash=sha256:48774d39cbb70e2b1f71f88852a3087ae1d3a1eb80482bb48c13067ab080c14f \ + --hash=sha256:52dd695b865fe96d9d2b16b64a895f3f57bf3cb064e8383cd3b5713a069e8085 \ + --hash=sha256:57278e6fa0424c42a8a3e454828ab4f0aff27b40cddf9679579b98c6dce6a376 \ + --hash=sha256:5931891fb7b441b8a3853cf1b85c82c903defce084dd5f6771ca46e31bf862c5 \ + --hash=sha256:614ceea8ea606848bece2338ac03b3ce5324bcb4be8dc7d377ed708012fa4db8 \ + --hash=sha256:6a43c9dd399758ccc0531acb0a3c4a6c299ee893ee9400e9c893b7bdcfae0681 \ + --hash=sha256:6b2a32f18d97e16e90827d7a819ffa8dbd8cc245fc4e1fa9d1095b54ef4bd999 \ + --hash=sha256:7685df791fad561384bfb139e77fde27a1ffd93134e016f95a0db424ffbf77b1 \ + --hash=sha256:880490234c10f70a9830743097e8958d6e4b9f5a0ffc24515023afeef984054d \ + --hash=sha256:88bdd940f2b5d487b4d032c6afa5489a7dc4694410d43de3c38c4fb3af0dc45d \ + --hash=sha256:88eead8ec8680a9f146c655bc88445a325bd7921cfd8194c7337e9467282427d \ + --hash=sha256:9518c406d7b310f05adb1a37f80acabac40504a575d7c0da6d3e365c695ac20d \ + --hash=sha256:a1afd7c9fbff0d9f5d489c4ce2768bd09c84a46ddefc7161e6aa82ae35c85745 \ + --hash=sha256:a1b4c8e7a489a0d750d91894e9a8cdc295838f1924c0ca903ae993456fddec07 \ + --hash=sha256:a3b7387147361c3fd47a0bde763c5c91b5b4cd4dc9989b8ece84ff436c99843b \ + --hash=sha256:b15fc622b0f869d19207c4089a501d9bcc63ca5e071ffdd2f03f922df882dcb2 \ + --hash=sha256:bbb8caadb2b742d293169d2b458b5c001ef70e3158704aa3d3ef9597624c5d1d \ + --hash=sha256:c4a9f1707e4823d54dfec6c33fa3697d302aed536ed352a7ebb5a061ddb869d0 \ + --hash=sha256:cd96f29b4bab1d42fa6e3d008711c75e0f79e94e06827330160e3a304227f150 \ + --hash=sha256:d76ad7b951387e3632c8716a9bb03ac5b45c5f16119aa409db0459520887944e \ + --hash=sha256:de1ed58a974e75d56560acc7e7fed01a454994429456f65209789992e41f2568 \ + --hash=sha256:de242a49b5d18e0a8776e654e9f6bf6d89f3875a5c35b425a0e7ce940feb3fd6 \ + --hash=sha256:e93c227b595c6926c1acee96891dd9da4be338cfbe82e5cd3bb9d8dd7dc4ac0b \ + --hash=sha256:eb3028cca2fc0a6d720e52ef61d8ebb62fcbfeb1de56874546d858d3f25a26b7 \ + --hash=sha256:ed377e64805bdba4943c82717333f8f8603a13b09aff9cead2717c6c817fb168 \ + --hash=sha256:ef7c3c97f4311c7be57e2986629df89d49cb434dbff78eafcd48c2bff986b15a \ + --hash=sha256:f256d6ce930c52ca1cb2a960b7da03548c454e7d28b06059ad41bfe789036ce0 + # via streamlit +httpx==0.28.1 \ + --hash=sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc \ + --hash=sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad + # via mcp +httpx-sse==0.4.3 \ + --hash=sha256:0ac1c9fe3c0afad2e0ebb25a934a59f4c7823b60792691f779fad2c5568830fc \ + --hash=sha256:9b1ed0127459a66014aec3c56bebd93da3c1bc8bb6618c8082039a44889a755d + # via mcp +idna==3.18 \ + --hash=sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2 \ + --hash=sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848 + # via + # anyio + # httpx + # requests +importlib-metadata==9.0.0 \ + --hash=sha256:2d21d1cc5a017bd0559e36150c21c830ab1dc304dedd1b7ea85d20f45ef3edd7 \ + --hash=sha256:a4f57ab599e6a2e3016d7595cfd72eb4661a5106e787a95bcc90c7105b831efc + # via dash +iniconfig==2.3.0 \ + --hash=sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730 \ + --hash=sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12 + # via pytest +isort==8.0.1 \ + --hash=sha256:171ac4ff559cdc060bcfff550bc8404a486fee0caab245679c2abe7cb253c78d \ + --hash=sha256:28b89bc70f751b559aeca209e6120393d43fbe2490de0559662be7a9787e3d75 +itsdangerous==2.2.0 \ + --hash=sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef \ + --hash=sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173 + # via + # flask + # streamlit +janus==2.0.0 \ + --hash=sha256:0970f38e0e725400496c834a368a67ee551dc3b5ad0a257e132f5b46f2e77770 \ + --hash=sha256:7e6449d34eab04cd016befbd7d8c0d8acaaaab67cb59e076a69149f9031745f9 + # via dash +jinja2==3.1.6 \ + --hash=sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d \ + --hash=sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67 + # via + # altair + # flask + # mike + # mkdocs + # mkdocs-material + # mkdocstrings + # properdocs + # pydeck + # trendify +jsonschema==4.26.0 \ + --hash=sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326 \ + --hash=sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce + # via + # altair + # mcp +jsonschema-specifications==2025.9.1 \ + --hash=sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe \ + --hash=sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d + # via jsonschema +kiwisolver==1.5.0 \ + --hash=sha256:012b1eb16e28718fa782b5e61dc6f2da1f0792ca73bd05d54de6cb9561665fc9 \ + --hash=sha256:01808c6d15f4c3e8559595d6d1fe6411c68e4a3822b4b9972b44473b24f4e679 \ + --hash=sha256:0255a027391d52944eae1dbb5d4cc5903f57092f3674e8e544cdd2622826b3f0 \ + --hash=sha256:0b85aad90cea8ac6797a53b5d5f2e967334fa4d1149f031c4537569972596cb8 \ + --hash=sha256:0bf3acf1419fa93064a4c2189ac0b58e3be7872bf6ee6177b0d4c63dc4cea276 \ + --hash=sha256:0c50b89ffd3e1a911c69a1dd3de7173c0cd10b130f56222e57898683841e4f96 \ + --hash=sha256:0cbe94b69b819209a62cb27bdfa5dc2a8977d8de2f89dfd97ba4f53ed3af754e \ + --hash=sha256:0df54df7e686afa55e6f21fb86195224a6d9beb71d637e8d7920c95cf0f89aac \ + --hash=sha256:0e3aafb33aed7479377e5e9a82e9d4bf87063741fc99fc7ae48b0f16e32bdd6f \ + --hash=sha256:12e91c215a96e39f57989c8912ae761286ac5a9584d04030ceb3368a357f017a \ + --hash=sha256:1465387ac63576c3e125e5337a6892b9e99e0627d52317f3ca79e6930d889d15 \ + --hash=sha256:16b85d37c2cbb3253226d26e64663f755d88a03439a9c47df6246b35defbdfb7 \ + --hash=sha256:1b0feb50971481a2cc44d94e88bdb02cdd497618252ae226b8eb1201b957e368 \ + --hash=sha256:1d49a49ac4cbfb7c1375301cd1ec90169dfeae55ff84710d782260ce77a75a02 \ + --hash=sha256:1d9daea4ea6b9be74fe2f01f7fbade8d6ffab263e781274cffca0dba9be9eec9 \ + --hash=sha256:1dd9b0b119a350976a6d781e7278ec7aca0b201e1a9e2d23d9804afecb6ca681 \ + --hash=sha256:1f1489f769582498610e015a8ef2d36f28f505ab3096d0e16b4858a9ec214f57 \ + --hash=sha256:2517e24d7315eb51c10664cdb865195df38ab74456c677df67bb47f12d088a27 \ + --hash=sha256:2a075bd7bd19c70cf67c8badfa36cf7c5d8de3c9ddb8420c51e10d9c50e94920 \ + --hash=sha256:332b4f0145c30b5f5ad9374881133e5aa64320428a57c2c2b61e9d891a51c2f3 \ + --hash=sha256:377815a8616074cabbf3f53354e1d040c35815a134e01d7614b7692e4bf8acfa \ + --hash=sha256:38f4a703656f493b0ad185211ccfca7f0386120f022066b018eb5296d8613e23 \ + --hash=sha256:3ac2360e93cb41be81121755c6462cff3beaa9967188c866e5fce5cf13170859 \ + --hash=sha256:3c4923e404d6bcd91b6779c009542e5647fef32e4a5d75e115e3bbac6f2335eb \ + --hash=sha256:3cdcb35dc9d807259c981a85531048ede628eabcffb3239adf3d17463518992d \ + --hash=sha256:413b820229730d358efd838ecbab79902fe97094565fdc80ddb6b0a18c18a581 \ + --hash=sha256:4432b835675f0ea7414aab3d37d119f7226d24869b7a829caeab49ebda407b0c \ + --hash=sha256:4db576bb8c3ef9365f8b40fe0f671644de6736ae2c27a2c62d7d8a1b4329f099 \ + --hash=sha256:4e7f886f47ab881692f278ae901039a234e4025a68e6dfab514263a0b1c4ae05 \ + --hash=sha256:4e9750bc21b886308024f8a54ccb9a2cc38ac9fa813bf4348434e3d54f337ff9 \ + --hash=sha256:5060731cc3ed12ca3a8b57acd4aeca5bbc2f49216dd0bec1650a1acd89486bcd \ + --hash=sha256:50847dca5d197fcbd389c805aa1a1cf32f25d2e7273dc47ab181a517666b68cc \ + --hash=sha256:5092eb5b1172947f57d6ea7d89b2f29650414e4293c47707eb499ec07a0ac796 \ + --hash=sha256:5124d1ea754509b09e53738ec185584cc609aae4a3b510aaf4ed6aa047ef9303 \ + --hash=sha256:530a3fd64c87cffa844d4b6b9768774763d9caa299e9b75d8eca6a4423b31314 \ + --hash=sha256:56fa888f10d0f367155e76ce849fa1166fc9730d13bd2d65a2aa13b6f5424489 \ + --hash=sha256:58f812017cd2985c21fbffb4864d59174d4903dd66fa23815e74bbc7a0e2dd57 \ + --hash=sha256:59cd8683f575d96df5bb48f6add94afc055012c29e28124fcae2b63661b9efb1 \ + --hash=sha256:5ae8e62c147495b01a0f4765c878e9bfdf843412446a247e28df59936e99e797 \ + --hash=sha256:5b233ea3e165e43e35dba1d2b8ecc21cf070b45b65ae17dd2747d2713d942021 \ + --hash=sha256:6176c1811d9d5a04fa391c490cc44f451e240697a16977f11c6f722efb9041db \ + --hash=sha256:6783e069732715ad0c3ce96dbf21dbc2235ab0593f2baf6338101f70371f4028 \ + --hash=sha256:6ab8ba9152203feec73758dad83af9a0bbe05001eb4639e547207c40cfb52083 \ + --hash=sha256:70d593af6a6ca332d1df73d519fddb5148edb15cd90d5f0155e3746a6d4fcc65 \ + --hash=sha256:72ec46b7eba5b395e0a7b63025490d3214c11013f4aacb4f5e8d6c3041829588 \ + --hash=sha256:7a32f72973f0f950c1920475d5c5ea3d971b81b6f0ec53b8d0a956cc965f22e0 \ + --hash=sha256:7a4aa69609f40fce3cbc3f87b2061f042eee32f94b8f11db707b66a26461591a \ + --hash=sha256:7c60d3c9b06fb23bd9c6139281ccbdc384297579ae037f08ae90c69f6845c0b1 \ + --hash=sha256:800ee55980c18545af444d93fdd60c56b580db5cc54867d8cbf8a1dc0829938c \ + --hash=sha256:80aa065ffd378ff784822a6d7c3212f2d5f5e9c3589614b5c228b311fd3063ac \ + --hash=sha256:893ff3a711d1b515ba9da14ee090519bad4610ed1962fbe298a434e8c5f8db53 \ + --hash=sha256:89fc958c702ee9a745e4700378f5d23fddbc46ff89e8fdbf5395c24d5c1452a3 \ + --hash=sha256:8c63c91f95173f9c2a67c7c526b2cea976828a0e7fced9cdcead2802dc10f8a4 \ + --hash=sha256:8df31fe574b8b3993cc61764f40941111b25c2d9fea13d3ce24a49907cd2d615 \ + --hash=sha256:9027d773c4ff81487181a925945743413f6069634d0b122d0b37684ccf4f1e18 \ + --hash=sha256:940dda65d5e764406b9fb92761cbf462e4e63f712ab60ed98f70552e496f3bf1 \ + --hash=sha256:9eed0f7edbb274413b6ee781cca50541c8c0facd3d6fd289779e494340a2b85c \ + --hash=sha256:ad4ae4ffd1ee9cd11357b4c66b612da9888f4f4daf2f36995eda64bd45370cac \ + --hash=sha256:b0f172dc8ffaccb8522d7c5d899de00133f2f1ca7b0a49b7da98e901de87bf2d \ + --hash=sha256:b2af221f268f5af85e776a73d62b0845fc8baf8ef0abfae79d29c77d0e776aaf \ + --hash=sha256:b7d335370ae48a780c6e6a6bbfa97342f563744c39c35562f3f367665f5c1de2 \ + --hash=sha256:bb5136fb5352d3f422df33f0c879a1b0c204004324150cc3b5e3c4f310c9049f \ + --hash=sha256:bc4d8e252f532ab46a1de9349e2d27b91fce46736a9eedaa37beaca66f574ed4 \ + --hash=sha256:bdd3e53429ff02aa319ba59dfe4ceeec345bf46cf180ec2cf6fd5b942e7975e9 \ + --hash=sha256:be12f931839a3bdfe28b584db0e640a65a8bcbc24560ae3fdb025a449b3d754e \ + --hash=sha256:be4a51a55833dc29ab5d7503e7bcb3b3af3402d266018137127450005cdfe737 \ + --hash=sha256:beb7f344487cdcb9e1efe4b7a29681b74d34c08f0043a327a74da852a6749e7b \ + --hash=sha256:c0e1403fd7c26d77c1f03e096dc58a5c726503fa0db0456678b8668f76f521e3 \ + --hash=sha256:c31c13da98624f957b0fb1b5bae5383b2333c2c3f6793d9825dd5ce79b525cb7 \ + --hash=sha256:c438f6ca858697c9ab67eb28246c92508af972e114cac34e57a6d4ba17a3ac08 \ + --hash=sha256:c95cab08d1965db3d84a121f1c7ce7479bdd4072c9b3dafd8fecce48a2e6b902 \ + --hash=sha256:cdee07c4d7f6d72008d3f73b9bf027f4e11550224c7c50d8df1ae4a37c1402a6 \ + --hash=sha256:ce9bf03dad3b46408c08649c6fbd6ca28a9fce0eb32fdfffa6775a13103b5310 \ + --hash=sha256:d168fda2dbff7b9b5f38e693182d792a938c31db4dac3a80a4888de603c99554 \ + --hash=sha256:d1ffeb80b5676463d7a7d56acbe8e37a20ce725570e09549fe738e02ca6b7e1e \ + --hash=sha256:d36ca54cb4c6c4686f7cbb7b817f66f5911c12ddb519450bbe86707155028f87 \ + --hash=sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a \ + --hash=sha256:d618fd27420381a4f6044faa71f46d8bfd911bd077c555f7138ed88729bfbe79 \ + --hash=sha256:d76e2d8c75051d58177e762164d2e9ab92886534e3a12e795f103524f221dd8e \ + --hash=sha256:daae526907e262de627d8f70058a0f64acc9e2641c164c99c8f594b34a799a16 \ + --hash=sha256:db485b3847d182b908b483b2ed133c66d88d49cacf98fd278fadafe11b4478d1 \ + --hash=sha256:dda366d548e89a90d88a86c692377d18d8bd64b39c1fb2b92cb31370e2896bbd \ + --hash=sha256:e315e5ec90d88e140f57696ff85b484ff68bb311e36f2c414aa4286293e6dee0 \ + --hash=sha256:e4415a8db000bf49a6dd1c478bf70062eaacff0f462b92b0ba68791a905861f9 \ + --hash=sha256:e7a116ae737f0000343218c4edf5bd45893bfeaff0993c0b215d7124c9f77646 \ + --hash=sha256:e7c4c09a490dc4d4a7f8cbee56c606a320f9dc28cf92a7157a39d1ce7676a657 \ + --hash=sha256:ec4c85dc4b687c7f7f15f553ff26a98bfe8c58f5f7f0ac8905f0ba4c7be60232 \ + --hash=sha256:ed3a984b31da7481b103f68776f7128a89ef26ed40f4dc41a2223cda7fb24819 \ + --hash=sha256:f18c2d9782259a6dc132fdc7a63c168cbc74b35284b6d75c673958982a378384 \ + --hash=sha256:f1f9f4121ec58628c96baa3de1a55a4e3a333c5102c8e94b64e23bf7b2083309 \ + --hash=sha256:f443b4825c50a51ee68585522ab4a1d1257fac65896f282b4c6763337ac9f5d2 \ + --hash=sha256:f6764a4ccab3078db14a632420930f6186058750df066b8ea2a7106df91d3203 \ + --hash=sha256:f7c7553b13f69c1b29a5bde08ddc6d9d0c8bfb84f9ed01c30db25944aeb852a7 \ + --hash=sha256:fa6248cd194edff41d7ea9425ced8ca3a6f838bfb295f6f1d6e6bb694a8518df \ + --hash=sha256:fa8eb9ecdb7efb0b226acec134e0d709e87a909fa4971a54c0c4f6e88635484c \ + --hash=sha256:fc20894c3d21194d8041a28b65622d5b86db786da6e3cfe73f0c762951a61167 \ + --hash=sha256:fc4d3f1fb9ca0ae9f97b095963bc6326f1dbfd3779d6679a1e016b9baaa153d3 \ + --hash=sha256:fd40bb9cd0891c4c3cb1ddf83f8bbfa15731a248fdc8162669405451e2724b09 \ + --hash=sha256:ff710414307fefa903e0d9bdf300972f892c23477829f49504e59834f4195398 + # via matplotlib +markdown==3.10.2 \ + --hash=sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950 \ + --hash=sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36 + # via + # markdown-callouts + # markdown-include + # mdx-gh-links + # mkdocs + # mkdocs-autorefs + # mkdocs-click + # mkdocs-material + # mkdocstrings + # properdocs + # pymdown-extensions +markdown-callouts==0.4.0 \ + --hash=sha256:7ed2c90486967058a73a547781121983839522d67041ae52c4979616f1b2b746 \ + --hash=sha256:ed0da38f29158d93116a0d0c6ecaf9df90b37e0d989b5337d678ee6e6d6550b7 +markdown-include==0.8.1 \ + --hash=sha256:1d0623e0fc2757c38d35df53752768356162284259d259c486b4ab6285cdbbe3 \ + --hash=sha256:32f0635b9cfef46997b307e2430022852529f7a5b87c0075c504283e7cc7db53 +markupsafe==3.0.3 \ + --hash=sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a \ + --hash=sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf \ + --hash=sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19 \ + --hash=sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf \ + --hash=sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175 \ + --hash=sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219 \ + --hash=sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb \ + --hash=sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6 \ + --hash=sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab \ + --hash=sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce \ + --hash=sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218 \ + --hash=sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634 \ + --hash=sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad \ + --hash=sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73 \ + --hash=sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c \ + --hash=sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe \ + --hash=sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa \ + --hash=sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37 \ + --hash=sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f \ + --hash=sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d \ + --hash=sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c \ + --hash=sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97 \ + --hash=sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a \ + --hash=sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19 \ + --hash=sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9 \ + --hash=sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9 \ + --hash=sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc \ + --hash=sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4 \ + --hash=sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354 \ + --hash=sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50 \ + --hash=sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698 \ + --hash=sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9 \ + --hash=sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b \ + --hash=sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc \ + --hash=sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115 \ + --hash=sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485 \ + --hash=sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f \ + --hash=sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12 \ + --hash=sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025 \ + --hash=sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009 \ + --hash=sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d \ + --hash=sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a \ + --hash=sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5 \ + --hash=sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f \ + --hash=sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1 \ + --hash=sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287 \ + --hash=sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6 \ + --hash=sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f \ + --hash=sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581 \ + --hash=sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed \ + --hash=sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b \ + --hash=sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026 \ + --hash=sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676 \ + --hash=sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e \ + --hash=sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d \ + --hash=sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d \ + --hash=sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01 \ + --hash=sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795 \ + --hash=sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5 \ + --hash=sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d \ + --hash=sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe \ + --hash=sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda \ + --hash=sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e \ + --hash=sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737 \ + --hash=sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523 \ + --hash=sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a \ + --hash=sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50 + # via + # flask + # jinja2 + # mkdocs + # mkdocs-autorefs + # mkdocstrings + # properdocs + # werkzeug +matplotlib==3.11.0 \ + --hash=sha256:03acfeddf87b0dddb11b081ef7740ad445a3ca8bcb6b8e3011b08f2cf802b75c \ + --hash=sha256:0515d495124be3124340e59f164d901ed4484e2246a5b74cfa483cac3b80bd97 \ + --hash=sha256:06b5872e9cf11adc8f589ded3ce11bc3e1061ad498259664fabc1f6615beb918 \ + --hash=sha256:126f256df600652d7e4b394cf3164ff75210a00038f287c95a012a6f58d0e83f \ + --hash=sha256:15b0d160079cb10699a0e98b5989c70677b2df7cacdc62af67c30f2facec46d9 \ + --hash=sha256:1644db30e759199443493ac5e5caec24fdb775a8f6123021f85ba47c4133c3cb \ + --hash=sha256:19c16c61dea63b3582918503e6b294193961261d9daa806d4ae2151f1ad05430 \ + --hash=sha256:1c02da0a629dfa9debf52725ea06866b74c1fb70a895bae05e4493d34074f9f2 \ + --hash=sha256:25c2e5455efd8d99f41fb79871a31feb7d301569642e332ec58d72cfe9282bc3 \ + --hash=sha256:2746cd2c113742ff6ce37a864c5ac5fd7aa644568f445e66166e457ac78e40e0 \ + --hash=sha256:2d72ea8b7924f3cb955e61518d21e43b3df1e6c8a793b480a0c1214f185d30ba \ + --hash=sha256:3338e3e3de128cf50d0d2fb92a122815daf9c755bd882a474343c05f8fd7ec79 \ + --hash=sha256:3489c3dc487669b4a980bc3068f87856de7a1564248d3f6c629efb2a58b03f24 \ + --hash=sha256:373db8f91214e8ccaf35ac833cc1dd59dd961e148bbd55dd027141591dde1313 \ + --hash=sha256:3d68266213e73823ac3be90615bab0cf31f88851e114cdb1dd25dacf3b01e1a7 \ + --hash=sha256:41635d7909d19e52e924a521dde6d8f670b0f53ab1d0e8c331fa831554f681d1 \ + --hash=sha256:446307e6b04b57b1f1239e228a1ec2af0d589a1008cebc3dfa3f5441d095cfb6 \ + --hash=sha256:4d7aea652b58e686444079be3376ef546bffa1eee9b9bb9c472b9fcf6cf410d3 \ + --hash=sha256:5106c444d0bf966eee2853548c03772af4ab7199118e086c62fbac8ccb07c055 \ + --hash=sha256:565af866fd63e4bd3f987d580afe27c44c2552a3b3305f4ecbb85133601ea6f3 \ + --hash=sha256:57baa92fdc82948ed716eae6d2579d4d6f40965cd8d2f416755b4a72580a3233 \ + --hash=sha256:630eee0e67d35cce2019a0e670719f4816e3b86aff0fa72729f6c69786fceb45 \ + --hash=sha256:652fb5696271d4c50f196d22a5ff4f8e4444c74f847423570d7dc0aa2bbd0159 \ + --hash=sha256:68c0c7be01b30dcca3638934f7f591df73401235cbdbf0d1ab1c71e7db7f8b57 \ + --hash=sha256:6a98f5476ce784a50ce09998f4ae1e6a9f25043cef8a480c98949902eda74620 \ + --hash=sha256:6ce3b839b34ae1f430b4616893a2945a2999debaa7e94e7e29a2a8bbf286f7b5 \ + --hash=sha256:70a5b3e9a5dab708c0f039709ae7c68d5b4d254e291ef76492cdba230c8bb5e4 \ + --hash=sha256:81ae77077a1e16d37a5b61096ccb07c8d90a99b518fa8256b8f21578932f2f62 \ + --hash=sha256:942b37c5db1899610bd1543ce8e13e4ecff9a4633e7f63bb6aa9205d2644ebd1 \ + --hash=sha256:94f5000f67ca9faa300863ea17f8bce9175cb67b88bec4bc7780502d53dd7c9e \ + --hash=sha256:9dd11fb612ce7bc60b1de5b4fc87ff959d22317b5de42aabf392f66f97af22eb \ + --hash=sha256:a9d8c6e7cd2f0ddf11d8d92e520dd1d9d2abb0cf6ac8831e338666c81e905847 \ + --hash=sha256:aa55d73b3117d4b07f959cd9eb6f69b375d8df3414139c479388e551aa5d999d \ + --hash=sha256:ab3722f04f3ff34c23b5012c5873d2894174e06c3822fcdac3610965a5ac7d06 \ + --hash=sha256:ac6f1ef39f3d0f9e2463303013094992cdbe0f85f43bc54155bc472b2042768e \ + --hash=sha256:be050fcf32f729eda99f7f75a80bf67612ce16ab9ac1c23a387dcaede95cb70e \ + --hash=sha256:be152b7570324dc8d01574cc9474dd2d803237acf528bcbb5b211fa347461a09 \ + --hash=sha256:be5f93a1d21981bfb802ded0d77a0caa92d4342a47d45754fac77e314a506344 \ + --hash=sha256:c08e649a6313e1291e713623b97a38e5bb4aa580b2a100a94a3309bc6b9c8eb3 \ + --hash=sha256:c945824670fb8915b4ac879e5e61f3c58e0913022f70a0de4c082b17372f8771 \ + --hash=sha256:cf662e5ac5707658cb931e19972c4bd99f7b4f8b7bf79d3c821d239fa6b71e64 \ + --hash=sha256:d9695457a467ff86d23f35037a43deb6f1134dd6d3e2ac8ce1e2087cff09ffb9 \ + --hash=sha256:ddef37840695f5eef65f9f070fe2d2f510f584c2156203f9f622a5b0584efffd \ + --hash=sha256:dfabef0230d0697aa0d717385194dd41162e00207a68bf4abf94c2bf4c27dca0 \ + --hash=sha256:e6b3e64dea5062c570f04358e2711859f3531b459f29516274fbad889079e4f3 \ + --hash=sha256:f857524b442f0f36e641868ce2171aafa88cb0bc0644f4e1d8a5df9b32649fef + # via trendify +mccabe==0.7.0 \ + --hash=sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325 \ + --hash=sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e + # via flake8 +mcp==1.28.1 \ + --hash=sha256:2726bca5e7193f61c5dde8b12500a6de2d9acf6d1a1c0be9e8c2e706437991df \ + --hash=sha256:d51e36a5f5644faea4f85ea649bfffa6bc6c26770d42798ad6a3de3d2ba69683 + # via dash +mdx-gh-links==0.4 \ + --hash=sha256:41d5aac2ab201425aa0a19373c4095b79e5e015fdacfe83c398199fe55ca3686 \ + --hash=sha256:9057bca1fa5280bf1fcbf354381e46c9261cc32c2d5c0407801f8a910be5f099 +mergedeep==1.3.4 \ + --hash=sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8 \ + --hash=sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307 + # via + # mkdocs + # mkdocs-get-deps +mike==2.2.0 \ + --hash=sha256:1e3858e32c0f125aac14432fc7848434358f9ae0962c5c5cde387ad47f6ad25e \ + --hash=sha256:e1f4981c1152eec7c2490a3401142292cc47d686194188416db2648fdfe1d040 +mkdocs==1.6.1 \ + --hash=sha256:7b432f01d928c084353ab39c57282f29f92136665bdd6abf7c1ec8d822ef86f2 \ + --hash=sha256:db91759624d1647f3f34aa0c3f327dd2601beae39a366d6e064c03468d35c20e + # via + # mike + # mkdocs-autorefs + # mkdocs-exclude + # mkdocs-gen-files + # mkdocs-literate-nav + # mkdocs-material + # mkdocs-redirects + # mkdocs-section-index + # mkdocstrings +mkdocs-autorefs==1.4.4 \ + --hash=sha256:834ef5408d827071ad1bc69e0f39704fa34c7fc05bc8e1c72b227dfdc5c76089 \ + --hash=sha256:d54a284f27a7346b9c38f1f852177940c222da508e66edc816a0fa55fc6da197 + # via + # mkdocstrings + # mkdocstrings-python +mkdocs-click==0.9.0 \ + --hash=sha256:5208e828f4f68f63c847c1ef7be48edee9964090390afc8f5b3d4cbe5ea9bbed \ + --hash=sha256:6050917628d4740517541422b607404d044117bc31b770c4f9e9e1939a50c908 +mkdocs-exclude==1.0.2 \ + --hash=sha256:ba6fab3c80ddbe3fd31d3e579861fd3124513708271180a5f81846da8c7e2a51 +mkdocs-gen-files==0.6.1 \ + --hash=sha256:57d7ff2229e23d077e46d14a33db6d37c8823f6ce1a503c874c1764a71679763 \ + --hash=sha256:b3182bfc6219e35b8d26658cb988368659d5d023aac30c2a819247558fc12189 +mkdocs-get-deps==0.2.2 \ + --hash=sha256:8ee8d5f316cdbbb2834bc1df6e69c08fe769a83e040060de26d3c19fad3599a1 \ + --hash=sha256:e7878cbeac04860b8b5e0ca31d3abad3df9411a75a32cde82f8e44b6c16ff650 + # via mkdocs +mkdocs-glightbox==0.5.2 \ + --hash=sha256:23a431ea802b60b1030c73323db2eed6ba859df1a0822ce575afa43e0ea3f47e \ + --hash=sha256:c7622799347c32310878e01ccf14f70648445561010911c80590cec0353370ac +mkdocs-literate-nav==0.6.3 \ + --hash=sha256:2c421561280fa9184f88cbf399bebbd4cc17ee507e978a31ce11fd6f3aabf233 \ + --hash=sha256:edbaca22343f861fe4e34aac47d55a0c9955c640dbf02eea99fe631e914cf9ee +mkdocs-material==9.7.6 \ + --hash=sha256:00bdde50574f776d328b1862fe65daeaf581ec309bd150f7bff345a098c64a69 \ + --hash=sha256:71b84353921b8ea1ba84fe11c50912cc512da8fe0881038fcc9a0761c0e635ba +mkdocs-material-extensions==1.3.1 \ + --hash=sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443 \ + --hash=sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31 + # via mkdocs-material +mkdocs-redirects==1.2.3 \ + --hash=sha256:5e980330999299729a2d6a125347d1af78023d68a23681a4de3053ce7dfe2e51 \ + --hash=sha256:ec7312fff462d03ec16395d0c001006a418f8d0c21cdf2b47ff11cf839dc3ce0 +mkdocs-section-index==0.3.12 \ + --hash=sha256:285635bf86c643b0fc7a343053d7a818049817bff4408f52b80c4367bd5e7268 \ + --hash=sha256:a1100039546beb4ebef63ce6fc91f3195fb9c0c3763105d4d3d7cd31e0a046eb +mkdocs-snippets==1.3.2 \ + --hash=sha256:0a2be9ced4169acb3449d89a2d882f7e0e516a8c9cf3ffb8b9c6565af83a9a61 \ + --hash=sha256:d46d2700dec2dd8dab1d2977a656bed11ad89fdfd4dab30f2008c99d42086c53 +mkdocstrings==1.0.4 \ + --hash=sha256:3969a6515b77db65fd097b53c1b7aa4ae840bd71a2ee62a6a3e89503446d7172 \ + --hash=sha256:63464b4b29053514f32a1dbbf604e52876d5e638111b0c295ab7ed3cac73ca9b + # via mkdocstrings-python +mkdocstrings-python==2.0.5 \ + --hash=sha256:30c837bbff016549f659fcba6539ac351303f0fd7e713c89a040611072236e9d \ + --hash=sha256:3a4d92556ad39637e88af94a5374213af9a8e3040c3824ceaed04b486c017594 +mypy-extensions==1.1.0 \ + --hash=sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505 \ + --hash=sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558 + # via black +narwhals==2.23.0 \ + --hash=sha256:13e7ff5b4bb4a2f77b907c2e4d8a76e273dfc1323a3c997440a2f9fd26aed408 \ + --hash=sha256:769e7b9ab102c93d8fa019f6b4cd1a657909b04a20bf6210e5a35aae06814ae9 + # via + # altair + # plotly +nest-asyncio==1.6.0 \ + --hash=sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe \ + --hash=sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c + # via dash +numpy==2.4.6 ; python_full_version < '3.12' \ + --hash=sha256:001fbb8e08d942dd57599e781f2472269ee7f2755fae407b4f67b2f0b17da3f1 \ + --hash=sha256:0280e0356c0829a18d9de1cb7eee50ec22ca639878d7240307ca0943d73cd2c4 \ + --hash=sha256:043191bfa8eab18c776647b62723ac9dddece59743b13f49b2016094129c2b3f \ + --hash=sha256:06ca2f61ec4385a07a6977c55ba998a4466c123642b4a32694d3128fce18c079 \ + --hash=sha256:0a041d3d761dc3c35cc56ce0351506a02bcbc25f7b169f652435141a17db9096 \ + --hash=sha256:0ab0a9c4ffb1a6d95ef519fe4247dba8eb6b18ad93999f76b7f657039acabd47 \ + --hash=sha256:0c9136e14ed34a9e343a31c533d78a9813a69a3148332bce5e9821cb2f996e66 \ + --hash=sha256:110f8b71aacb688ec69062bb7f6938a0f8acb01b7c1c4beb453c65b6d234584d \ + --hash=sha256:112b06a867b235ef466ed3508ddf0238050df9c727cafb5301ac385b899189a1 \ + --hash=sha256:17f9ade344e7d9b464a084d69bcf18fc691cb1db67c62ed80820bf4926d78f0e \ + --hash=sha256:1e254a00cdf42b1e4d5b3d68d33af63268d41340d8885df2ab6470f2e1500147 \ + --hash=sha256:1e978ec1e8bd0e0e4de6bb75de9d30cbb74db6b6a2bb727618613703ca0167dd \ + --hash=sha256:25c692919ac5a01f170a3bfcd62d745b24fd095c353d50812637d6fcab442e75 \ + --hash=sha256:260a5d70215b61ab4fadf5c7baacd64821842975eea312125ed3c39a6391b063 \ + --hash=sha256:2803abfebfc990042cd494d8ce2d5f82e9d847af6d35ec486923aa19dbad5e73 \ + --hash=sha256:29a287e0cf63ff528da061de6b9f64a4618da591ca1046aafc54062e40ca7eab \ + --hash=sha256:29cb7f67d10b479ff07c17d33e39f78c07f71c40ef30d63c153d340e96cd3fb4 \ + --hash=sha256:3213d622a0283a39a93d188f3cf72b26862df52fbb4ca3697f51705016523d41 \ + --hash=sha256:33111801a01c12a8a1e3721f0a9232f8cfc8ae2c6b7098167e6f623c6073f402 \ + --hash=sha256:357cc07a6d7b0b182ff02249616a03742827ebb1277546b5c7cd7f7620a45698 \ + --hash=sha256:38efbc8de75c7a0fc1ac190162d892787f3f47b57cc291231aafee36b80982b7 \ + --hash=sha256:4081eb135ac24158bd51cdfbef16f1c64df7063b1143f24731387137c092bec8 \ + --hash=sha256:40fdc1ae7125e518ea98e53e69a4ebc27e1fd50510c47b7ea130cf21e5e1d42b \ + --hash=sha256:4cfe66903cc32a9921a6733d96b19bb6abf310397581bbad89c228f5abaf0ee8 \ + --hash=sha256:511dbaf848decaaaf4b4ca48032619fb3138710c4bf7da7617765edad1ef96b0 \ + --hash=sha256:55cced7c52e981362f708ad635198e97a752dfba412cc03c23bbf3bd8d5cd662 \ + --hash=sha256:56b39e5e0622a09a25bf5baf62f4bcf0cb8a41ae6e2819cf49bbc5a74c083f91 \ + --hash=sha256:5dbbdb29840ca3d91ee0fece42fc29278886d908280bfec0a5846c6f901a3eb0 \ + --hash=sha256:5f9fb9157b4ce2971008323afe46053787b526ef624fea915b261468a8421a0f \ + --hash=sha256:6180d8b35af935aed8ece3a85e0a43f87393ae0ac87c8d2c8bd2c993f7270ef3 \ + --hash=sha256:68a5124b13fa6cc2086764a20005d30bc0548146f7f5322f02fce212ca14317f \ + --hash=sha256:68bb27509ac1b9a3443094260f6326150663b06abe40b73a2f81160623da5b67 \ + --hash=sha256:6f41ae150c4e32db4f3310cdaf64b1593a03dbabe29eec77fc9b50fe64061df6 \ + --hash=sha256:7265a2f3d436e54ef9f2b52b5c937e6be778781bd97a590319d7348f1c1ca997 \ + --hash=sha256:72fbe16c6fac95aedf5937fa873445cec2110be35d8a4e9433d7501fd98dae6b \ + --hash=sha256:7d92c3819208a60205a12a245c91ad70cb0a85336659b19b834205573ac8456e \ + --hash=sha256:8155154c7c691289fe18f510b5d4657c68c67989f293f0535a91360392ff6538 \ + --hash=sha256:81a1cca95ed5bb92aa8b10dd2cdc9a0d3853a50fad926c28b5d7e8ea54389627 \ + --hash=sha256:89cd468399cfd2504718f0ba50e410dca55a170b61a02ad92bb18c8a65186e93 \ + --hash=sha256:8ad03c0965fb3c692200e74d458ca28c1dbb4ce96f9a479a8aa041ad5fabca02 \ + --hash=sha256:90f9849678c75fe7afa2d348ac842c168b0a4d3d61919687216dfc547976d853 \ + --hash=sha256:948424b06129ce883307e8cff868c31396d8dc7630a59c61d70d98dbe70f222c \ + --hash=sha256:9cd5ffd25db4e7ba6a375693b3fc0fc1791ec636c17db3720da19bde7180ec43 \ + --hash=sha256:a0df0043bdb289bde1f62da130d20df23d58b45429f752bc7a8fc5325a225ecd \ + --hash=sha256:a2c306dea656c12c68f51f4cea133cbe78ca7435eb28c735eac1d3ebe73be6e8 \ + --hash=sha256:a7830bab239b79cda9c08c2da014761cafb48da6150e1da17ac06283f43b6089 \ + --hash=sha256:a7c711e21628b52034bb5ab8d1bce291f752fcc5e92accc615778acee1ff4778 \ + --hash=sha256:aaf159caa35993cb1f56fb9b8e4610d35758e7ca005412eb1daa856a78c9c4b1 \ + --hash=sha256:ae506e6902902557576a26ff33eda8695e7ecb3cb36c3b573a0765dee114ebdb \ + --hash=sha256:b507f5c4c1d508876d1819b6bf9a49d365b96320b5d4993426b33a23ca4b8261 \ + --hash=sha256:bf162abab1c1a736333192707cef898e735a5ca00f38f27eeedf44b39d9e85eb \ + --hash=sha256:c1a2af6c6ef86344a6b0db6b97834208bf598db514f2b155042439b62605601a \ + --hash=sha256:c2d37ab77531417474168eb79d6d80b14f821a966818505d03013d0833edb7a8 \ + --hash=sha256:c4fc99836233ea196540b17ab0983aff60ed07941751930f5f4d05bc3b3b7359 \ + --hash=sha256:d581b735e177fdcdce6fed8e7e8880a3fb6ee4e3653a3ac6af01c6f4c03effc5 \ + --hash=sha256:d6da64deb6b8ed903e7560180a92f2d804ee1ba5eeb849ac2748b8c1aba1f6d7 \ + --hash=sha256:d8e8286dd7cea7895157318d1b91cdacac64c479f3cbc8dce548331728484751 \ + --hash=sha256:ddea102b48f9e339f3948bf22040944184627a30fdf7f858667673b9c5f033c8 \ + --hash=sha256:dfa20cc6ca228e6b155b11da03825975ce66aea520985dbbddf0f2a5a495c605 \ + --hash=sha256:e3e5193ef5a3dc73bceee50f7fdc2c90dbb76c42df8d8fae3d1067a583df579e \ + --hash=sha256:e3eeb0aabd6bd5ce64faae67e9935203a6991b4bc2a485a767fbafb2c5125f45 \ + --hash=sha256:e5805d5a22fd19c8ccff10a9561f9df94436b0545619ea579db2d3c35294bce2 \ + --hash=sha256:e85b752a1e912b70eaad4fafbd4d1238007ab221de2009b9a2f5ae7461239895 \ + --hash=sha256:eaf7fa2de5c0be8ae6ff8e9bea2ccd725e980541244521d8d4b5f3354a27babe \ + --hash=sha256:ebfb099f8dcf083deef3ac1ca4c1503f387cf76296fcb3816b66f5ecb5f54fdb \ + --hash=sha256:ece3d2cfe132e7d51f44a832b303895e6f2d499c5e74dfbdb06ee246147a304a \ + --hash=sha256:ed9749eef4cbd126da3dc1d6bcb3a57f5eb7ac6a6484146bdbf743f552dfc577 \ + --hash=sha256:ede83e07a75dd06bc501566c1eca2afc0d61677c1472ac9ad93fdee6e638a48d \ + --hash=sha256:ef4aea96ce4d3b074422cb4f2f64e216bf9e213004bb58ecfdf50ea02ea8eb9a \ + --hash=sha256:f3a3570c4a2a16746ac2c31a7c7c7b0c186b95ce902e33db6f28094ed7387dda \ + --hash=sha256:f407cb6b8e9d6d8c626bc73c945db1706035af8fd632295547bf1c9e46d092d6 \ + --hash=sha256:f74a575920ab21fe304421a3fc28793d82e299cae9eccb37084e9fc7f3617c20 + # via + # contourpy + # matplotlib + # numpydantic + # pandas + # pydeck + # scipy + # streamlit + # trendify +numpy==2.5.0 ; python_full_version >= '3.12' \ + --hash=sha256:016623417bb330d719d579daf2d6b9a01ddc52e41a9ed61a47f39fde46dcd865 \ + --hash=sha256:0b525be4744b60bb0557ac872d53ef07d085b5f39622bc579c98d3809d05b988 \ + --hash=sha256:126b88d95e8ff9b00c9e717aa540469f21d6180162f84c0caec51b16215d49cd \ + --hash=sha256:146b81cdd3967fdb6beca8ba25f00c58741d8f3cbd797f55af0fbe0bfec3469c \ + --hash=sha256:1a7569a7b53c77716f036bb28cb1c91f166a26ec7d9502cd1e4bdfe502fdec22 \ + --hash=sha256:1c0121101093d2bd74981b10f8837d78e794a8ff57834eb27179f49e1ba11ac6 \ + --hash=sha256:22f3d43e362d650bc39db1f17851302874a148ca95ba6981c1dfb5fa6862f35b \ + --hash=sha256:243563efb4cd7528a264567e9fd206c87826457322521d06206a00bfa316c927 \ + --hash=sha256:28e7137057d551e4a83c4ae414e3451f50568409db7569aacc7f9811ee06a446 \ + --hash=sha256:3893adc2dc7c0412ba76777db55a049215d99c9aa3113003be8f49f4f1290ab9 \ + --hash=sha256:39a0433bd4086ebd462960cf375e19195bb07b53dc1d87dd5fcf47ad78576f03 \ + --hash=sha256:3b94d0d0deceebfad3e67ae5c0e5eb87371e8f7a0581cd04a779928c2450cf1e \ + --hash=sha256:44353e2878930039db472b99dc353d749826e4010bd4d2a7f835e94a97a5c748 \ + --hash=sha256:489780423903667933b4ed6197b6ec3b75ea5dd17d1d8f0f38d798feb6921561 \ + --hash=sha256:48f54b00711f83a5f796b70c518e8c2b3c5848dda03a54911f23eb68519b9b60 \ + --hash=sha256:520e6b8be0a4b65840ac8090d4f51cef4bed66e2b0894d5a520f099adc24a9b2 \ + --hash=sha256:5a129578019311b6e56bdd714250f19b518f7dceeeb8d1af5490f4942d3f891c \ + --hash=sha256:5dc71423499fab3f46f7a7201155ade1669ea101f2f429d332df9e72f8161731 \ + --hash=sha256:6206db0af545d73d068add6d992279145f158428d1da6cc49adc4b630c5d6ee5 \ + --hash=sha256:694d8f74e156f7fd01179f1aa8faa2f648ab6ae0f70b6c3fe57a03249aea2303 \ + --hash=sha256:6f2d6873e2940c860a309d21e25b1e69af6aaffdd80aa056b04c16380db1c4f2 \ + --hash=sha256:6f9836778081a0a3c02a6a21493f3e9f5b311f8d2541934f31f05583dc999ea4 \ + --hash=sha256:7174ce8265fc7f7417d171c9ea8fe905220748893ea67a2a7abe726ec331c4b0 \ + --hash=sha256:750fb097caf26fa878746d9d119f6f9da12dedcbff1eea966c3e3447647c4a9e \ + --hash=sha256:835e454dd99b238cdc5a3f63bce2371296f5ebc53ca1e0f8e6ddbb6d92a29aab \ + --hash=sha256:84881d825ca75249b189bbee875fcfe3238aa5c479e6100893cda566e8e86826 \ + --hash=sha256:929f0c79ac38bcbd7154fe631dc907abfeddbcc5027a896bd1f7767323271e7a \ + --hash=sha256:9990713e9c38154c6861e7547f1e3fc7a87e75ff09bab24ef1cc81d81c2835e9 \ + --hash=sha256:a1a4874217b36d5ac8fc876f52e39df56f8182c88463e9e2dceabf7ca8b7efb8 \ + --hash=sha256:a55e1eb2bca2cfd17a16b213c99dfc8502d47b0d494224d2122277d0400935ca \ + --hash=sha256:aaa760137137e8d3c920d27927748215b56014f92667dc9b6c27dfc61249255a \ + --hash=sha256:b8c3daaf99de52415d20b42f8e8155c78642cb04207d02f9d317a0dcf1b3fb54 \ + --hash=sha256:bf80333980bf37f523341ddd72c783f39d6829ec7736b9eb99086388a2d52cc2 \ + --hash=sha256:c83b664b0e6eee9594fa920cf0639d8af796606d3fad6cc70180c87e4b97c7be \ + --hash=sha256:cc4f247a47bbf070bfd70be53ccdcf47b800af563535e7bbe172322197c30e21 \ + --hash=sha256:cda12aa4779d42b8771180aba759c96f527d43446d8f380ab59e2b35e8489efd \ + --hash=sha256:d371c92cfa09da00022f501ab67fafaea813d752eb30ac44336d45b1e5b0268a \ + --hash=sha256:d4313cef1594c5ce46c31b6e54e918338f63f16ee9322304e8c9114d6d81c8bd \ + --hash=sha256:e1da54b53e75cd9fcfc23efcc7edab2c6aecf97b6037566d8a0fe804af8ec57c \ + --hash=sha256:ebb81d9d5443e0309d6c54894c3fbed74ad7da0714352a67b6d773cd189eae73 \ + --hash=sha256:ece55976ced6bca95a03ae2839e2e5ccffe8eb6a3e7022415645eb154a81e4e6 \ + --hash=sha256:edadfbd4794b1086c0d822f81863e8a68fc129d132fd0bb9e31e955d7fbbbdb7 \ + --hash=sha256:f27582c55ba4c750b7c58c8faf021d2cd9324a662b466229db8a417b41368af9 \ + --hash=sha256:f7e5fa4382967ae6548bd2f174219afb908e294b0d5f625af01166edd5f7d9aa + # via + # contourpy + # matplotlib + # numpydantic + # pandas + # pydeck + # scipy + # streamlit + # trendify +numpydantic==1.10.0 \ + --hash=sha256:1c62a445d305da69a5fa4510f7e7e1c25218f58fe462e5d59548042f1f769e66 \ + --hash=sha256:a17d5ccc3b893c4a2e539c81c2f18960d70884ad7fcaa09c9eb56a95e8daf4a3 + # via trendify +packaging==26.2 \ + --hash=sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e \ + --hash=sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661 + # via + # altair + # black + # hatchling + # matplotlib + # mkdocs + # plotly + # properdocs + # pytest + # streamlit +paginate==0.5.7 \ + --hash=sha256:22bd083ab41e1a8b4f3690544afb2c60c25e5c9a63a30fa2f483f6c60c8e5945 \ + --hash=sha256:b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591 + # via mkdocs-material +pandas==3.0.3 \ + --hash=sha256:0383c72c75cdcca61a9e116e611143902dbfd08bff356829c2f6d1cf40a9ca8c \ + --hash=sha256:05f1f1752b8533ea03f7f39a9c15b1a058d067bb48f4748948e7a8691e0510f2 \ + --hash=sha256:08d789b41f87e0905880e293cedf6197ce71fe67cc081358b1e148a491b9bd13 \ + --hash=sha256:0d589105b3c14645af1738ff279b2995102d8f7a03b0a66dc8d95550eb513e04 \ + --hash=sha256:13fc1e853d9e04743d11ba75a985ccbc2a317fe07d8af61e445a6fd24dacd6a6 \ + --hash=sha256:14da8316da4d0c5a77618425996bfb1248ca87fc2c1486e6fde4652bd18b5824 \ + --hash=sha256:1928e07221f82db493cd4af1e23c1bfca524a19a4699887975bff68f49a72bfb \ + --hash=sha256:261e308dfb22448384b7580cf719d2f998fe2966c92893c3e77d14008af1f066 \ + --hash=sha256:275c14e0fce14a2ec20eee474aecd305478ea3c1e6f6a9d8fe219a165542717e \ + --hash=sha256:335f62418ed562cfc3c49e9e196375c28b729dcef8543abf4f9438e381bf3c76 \ + --hash=sha256:3650109c0f22879df8bd6179ab9ee3d7f1d1d4e7e0094a3f0032d9f51e2e64ac \ + --hash=sha256:39436b377d56d2a2e52d0395bdbee171f01068e99af5250509aceeb929f765c7 \ + --hash=sha256:3c20a521bbb85902f79f7270c80a59e1b5452d96d170c034f207181870f97ac5 \ + --hash=sha256:3e91cec1879ada0624fc3dc9953c5cbd60208e59c0db28f540c5d6d47502422f \ + --hash=sha256:455f6f8139d4282188f526868dbc3c828470e88a3d9d59a891bd46a455f21b98 \ + --hash=sha256:46997386d528eb40376ecd6b033cf4a8a1e5282580f68f43de875b78cba2199d \ + --hash=sha256:4db8c527972a821cf5286b40ccc57642a39bc62e62022b42f99f8a67fca8c3a1 \ + --hash=sha256:4e15135e2ee5df1063313e2425ceef8ac0f4ae775893815b0923651b806a5639 \ + --hash=sha256:51b1fe551acb77dac643c6fda86084d8d446c10fe64b06a9cc29c4cc8540e7f2 \ + --hash=sha256:557409bc4178e70ee8d9ddb494798e51ebf6ea59330f6be22c51bab2a7db6c49 \ + --hash=sha256:5cc09a68b3120e0f54870dede8287a7bb1fa463907e4fcec1ea77cab6179bf7a \ + --hash=sha256:60ae316d3fd75d1858d450d0db0103ea2be3e7d4a95ec2f064f7e2ae63f7b028 \ + --hash=sha256:6674ab18ad8c57802867264b00e15e7bb904700cdd9046e3b2fa1fce237439ea \ + --hash=sha256:67b3b64c11910cfa29f4e94a14d3bff9ee693b6fc76055e7cad549cee0aec5fa \ + --hash=sha256:696a4a00a2a2a35d4e5deb3fc946641b96c944f02230e4f76137fe35d806c4fc \ + --hash=sha256:6dc0b3fd2169c9157deed50b4d519553a3655c8c6a96027136d654592be973a9 \ + --hash=sha256:7e65d5407dc0b394f509699650e4a2ec01c0514f21850f453fa60f3be79a5dbf \ + --hash=sha256:819959dab7bbd0049c15623fbac4e29a191b9528160a61fb1032242d8ced2d9c \ + --hash=sha256:8a1e45c80cceb3b4a21bc5939d52e8cbd8d9b7305309219d59e9754d9ce09e27 \ + --hash=sha256:9c39be2d709d01fa972a0cabc522389fceca4f3969332ba25a7d6c5802cf976a \ + --hash=sha256:9d71c63ae4ebdbf70209742096f1fc46a83a0613c99d4b23766cced9ff8cd62a \ + --hash=sha256:a2d2dff8a04f3917b55ab3910c32990f8ddf7eceba114947838cefa976a68977 \ + --hash=sha256:a4eeb6830daf35a71cc09649bd823e2b542dac246cdee9614c6e4bd65028cd6a \ + --hash=sha256:a55066a0505dae0ba2b50a46637db34b46f9094c65c5d4800794ef6335010938 \ + --hash=sha256:a82d532a3351d435432cd913edbccaf8b8e01d4dd0e5ced5a8d2e8ecd94c7e44 \ + --hash=sha256:b168fc218fd80a6cbdbdbc1a97ddc7889ed057d7eb45f50d866ceab5f39904c4 \ + --hash=sha256:b2c95f8bfc1ee412bf482605d7bfd30c12d1d26bd59fdd91efeef1d4718decb1 \ + --hash=sha256:ba7e08b9ac1d54569cd1e256e3668975ed624d6826f7b68df0342b012007bddb \ + --hash=sha256:bab900348131a7db1f69a7309ef141fd5680f1487094193bcbbb61791573bf8f \ + --hash=sha256:bd3a518890b400d32f9023722dc9a9a5c969f00b415419a3c06c043f09bb5d7d \ + --hash=sha256:c7be265b62cef88e253a941e4698604973736dcfe242fdb5198f0f7bc473cdcc \ + --hash=sha256:d26cbe1fcfc12e8fd900e2454163e466b2d3af84f7c75481df7683ffc073d870 \ + --hash=sha256:d4be06d68f9ddcfc645b87534911da79a8fbffc7573c80e0edcf42a5020624d8 \ + --hash=sha256:d72828c20c6d6e83e1e22a6a3b47b326b71664112fa9705dcbccfd7a39b62085 \ + --hash=sha256:dd1a5d1def6a46002e964510bdc67c368aa0951df5d1d9f8365336f5a1f490cd \ + --hash=sha256:e3a2ec42c98ffa2565a67e08e218d06d72576d758d90facb7c00805194d8f360 \ + --hash=sha256:f8894dc474d648fe7b6ff0ca9b0bd73950d19952bc1a6534540762c5d79d305c \ + --hash=sha256:fed2ff7fd9779120e388e285fc029bd5cf9490cdd2e4166a9ee22c0e49a9ab09 + # via + # streamlit + # trendify +pathspec==1.1.1 \ + --hash=sha256:17db5ecd524104a120e173814c90367a96a98d07c45b2e10c2f3919fff91bf5a \ + --hash=sha256:a00ce642f577bf7f473932318056212bc4f8bfdf53128c78bbd5af0b9b20b189 + # via + # black + # hatchling + # mkdocs + # properdocs +pillow==12.3.0 \ + --hash=sha256:00808c5e14ef63ac5161091d242999076604ff74b883423a11e5d7bbb38bf756 \ + --hash=sha256:04f01d28a6aaff387bf842a13be313df23ba0597a44f1a976c9feb3c6ff4711a \ + --hash=sha256:06ff022112bc9cbf83b60f8e028d94ad87b60621706487e65f673de61610ab59 \ + --hash=sha256:0740a512dc522224c77d9aa5a8d70d8b7d73fb91f2c21125d8d025d3b8990e45 \ + --hash=sha256:0847a763afefb695bc912d7c131e7e0632d4edc1d8698f58ddabec8e46b8b6d3 \ + --hash=sha256:0dd2064cbc55aaec028ef5fbb60fa47bb6c3e7918e07ff17935284b227a9d2df \ + --hash=sha256:0feb2e9d6ad6c9e3c06effe9d00f3f1e618a6643273576b016f591e9315a7139 \ + --hash=sha256:10e41f0fbf1eec8cfd234b8fe17a4caac7c9d0db4c204d3c173a8f9f6ef3232b \ + --hash=sha256:1182d52bc2d5e5d7d0949503aa7e36d12f42205dc287e4883f407b1988820d39 \ + --hash=sha256:164b31cd1a0490ab6efae01aa5df49da7061be0af1b30e035b6e9a1bfe34ee6e \ + --hash=sha256:1657923d2d45afb66526e5b933e5b3052e6bdea196c90d3abb2424e18c77dae8 \ + --hash=sha256:186941b6aef820ad110fb01fb06eb925374dc3a21b17e37ec9a53b250c6fe2d1 \ + --hash=sha256:1cca606cd25738df4ed873d5ad46bbdb3d83b5cbca291f6b4ff13a4df6b0bbe8 \ + --hash=sha256:21900ce7ba264168cd50defae43cd75d25c833ad4ad6e73ffc5596d12e25ac89 \ + --hash=sha256:236ff70b9312fb68943c703aa842ca6a758abfa45ac187a5e7c1452e96ef72b5 \ + --hash=sha256:23aceaa007d6172b02c277f0cd359c79492bbb14f7072b4ede9fbcaf20648130 \ + --hash=sha256:23d27a3e0307ec2244cc51e7287b919aa68d097504ebe19df4e76a98a3eea5bd \ + --hash=sha256:24870b09b224f7ae3c39ed07d10e819d06f8720bc551847b1d623832b5b0e28d \ + --hash=sha256:251bf95b67017e27b13d82f5b326234ca62d70f9cf4c2b9032de2358a3b12c7b \ + --hash=sha256:28ce87c5ab450a9dd970b52e5aca5fe63ed432d18a2eaddd1979a00a1ba24ace \ + --hash=sha256:30f2aa603c41533cc25c05acd0da21636e84a315768feb631c937177db558931 \ + --hash=sha256:331b624368d4f1d069149002f25f44bc61c8919ce8ddb3c45bdad8f6e2d89510 \ + --hash=sha256:37d6d0a00072fd2948eb22bce7e1475f34569d90c87c59f7a2ec59541b77f7a6 \ + --hash=sha256:3b8182a766685eaa002637e28b4ec8d6b18819a0c71f579bf0dbaa5830297cce \ + --hash=sha256:3edce1d53195db527e0191f84b71d02022de0540bf43a16ed734ed7537b07385 \ + --hash=sha256:446c34dcc4324b084a53b705127dc15717b22c5e140ae0a3c38349d4efec071e \ + --hash=sha256:4998562bf62a445225f22e07c896bb04b35b1b1f2eb6d760584c9c51d7a5f78c \ + --hash=sha256:4b0a7fe987b14c31ebda6083f74f22b561fd3739bc0ac51e019622e3d72668c7 \ + --hash=sha256:4e8c2a84d977f50b9daed6eeaf3baef67d00d5d74d932288f02cb94518ee3ace \ + --hash=sha256:4f883547d4b7f0495ebe7056b0cc2aea76094e7a4abc8e933540f3271df27d9c \ + --hash=sha256:53aa02d20d10c3d814d536aa4e5ac9b84ca0ff5a88377963b085ad6822f93e64 \ + --hash=sha256:571b9fcb07b97ef3a492028fb3d2dc0993ca23a06138b0315286566d29ef718a \ + --hash=sha256:57b3d78c95ba9059768b10e28b813002261d3f3dfc55cc48b0c988f625175827 \ + --hash=sha256:5afb51d599ea772b8365ae807ae557f18bccfe46ab261fd1c2a9ed700fc6eb17 \ + --hash=sha256:6b02afb9b97f65fbca5f31db6a2a3ba21aa93030225f150fa3f249717e938fb4 \ + --hash=sha256:71d6097b330eea8fd15097780c8e89cb1a8ce7838669f48c5bacd6f663dd4701 \ + --hash=sha256:756c768d0c9c2955feb7a56c37ea24aea2e369f8d36a88da270b6a9f19e62b5e \ + --hash=sha256:78cb2c6865a35ab8ff8b75fd122f6033b92a62c82801110e48ddd6c936a45d91 \ + --hash=sha256:7a743ff716f746fc19a9557f60dab1600d4613255f8a7aeb3cdde4db7eb15a66 \ + --hash=sha256:8728f216dcdb6e6d555cf971cb34076139ad74b31fc2c14da4fafc741c5f6217 \ + --hash=sha256:877c3f311ff35410f690861c4409e7ccbf0cd2f878e50628a28e5a0bb689e658 \ + --hash=sha256:8cd2f7bdda092d99c9fc2fb7391354f306d01443d22785d0cbfafa2e2c8bb418 \ + --hash=sha256:8e95e1385e4998ae9694eeaa4730ba5457ff61185b3a55e2e7bea0880aef452a \ + --hash=sha256:962864dc93511324d51ddbb5b9f8731bf71675b93ca612a07441896f4688fb8c \ + --hash=sha256:9cf95fe4d0f84c82d282745d9bb08ad9f926efa00be4697e767b814ce40d4330 \ + --hash=sha256:9e881fca225083806662a5c43d627d215f258ff43c890f831966c7d7ba9c7402 \ + --hash=sha256:a2b55dd6b2a4c4b7d87ffa56bdb33fdc5fdb9a462173861a7bc097f17d91cb09 \ + --hash=sha256:a45650e8ce7fafffd731db8550230db6b0d306d181a90b67d3e6bca2f1990930 \ + --hash=sha256:a876864214e136f0eb367788dbd7df045f4806801518e2cfe9e13229cfe06d8f \ + --hash=sha256:ae26d61dfa7a47befdc7572b521024e8745f3d809bd95ca9505a7bba9ef849ec \ + --hash=sha256:af8d94b0db561cf68b88a267c5c44b49e134f525d0dc2cb7ed413a66bc23559a \ + --hash=sha256:b343699e8308bdc51978310e1c959c584e7869cc8c40780058c87da7781a1e94 \ + --hash=sha256:b3c777e849237620b022f7f297dd67705f9f5cf1685f09f02e46f93e92725468 \ + --hash=sha256:b629de27fda84b42cde7edef0d85f13b958b47f6e9bbcbba9b673c562a89bd8b \ + --hash=sha256:ba09209fbe443b4acccebe845d8a138b89a8f4fbaeedd44953490b5315d5e965 \ + --hash=sha256:ba54cfebe86920a559a7c4d6b9050791c20513650a1952ebe3368c7dc70306f8 \ + --hash=sha256:bcb46e2f9feff8d06323983bd83ed00c201fdcab3d74973e7072a889b3979fcd \ + --hash=sha256:bf16ba1b4d0b6b7c8e534936632270cf70eb00dbe09005bc345b2677b726855c \ + --hash=sha256:cf1845d02ad822a369a49f2bb9345b1614744267682e7a03527dc3bf6eea1777 \ + --hash=sha256:d69141514cc30b774ceea5e3ed3a6635c8d8a96edf664689b890f4089111fb35 \ + --hash=sha256:d9c7f76c0673154f044e9d78c8655fb4213f6ca31a836df48b40fe5d187717b9 \ + --hash=sha256:dbce0b29841537a2fa4a214c2bbf14de3587c9680caa9b4e217568472490b28f \ + --hash=sha256:dc624f6bc473dacdf7ef7eb8678d0d08edf15cd94fad6ae5c7d6cc67a4e4902f \ + --hash=sha256:e158cb00350dc278f3b91551101aa7d12415a66ebf2c91d8d5ac14e56ddd3ad0 \ + --hash=sha256:e491916b378fba47242221bb9ead245211b70d504f495d105d17b14a24b4907c \ + --hash=sha256:e795b7eb908249c4e43c7c99fac7c2c75dab0c43566e37db472a355f63693d71 \ + --hash=sha256:e7e480451b9fa137494bccd3a7d69adbe8ac65a87d97be61e11f1b1050a5bac3 \ + --hash=sha256:e91206ee562682b51b98ef4b26a6ef48fd84e15fd4c4bc5ec768eb641d206838 \ + --hash=sha256:e9871b1ffbfa9656b60aeee92ed5136a5742696006fa322b29ea3d8da0ecc9cf \ + --hash=sha256:e9aeb04d6aef139de265b29683e119b638208f88cf73cdd1658aa07221165321 \ + --hash=sha256:ebaea975e03d3141d9d3a507df75c9b3ec90fa9d2ffd07567b3a978d9d790b26 \ + --hash=sha256:f13c32a3abd6079a66d9526e18dad9b6d280384d49d7c54040cd57b6424041d9 \ + --hash=sha256:f7401aebd7f581d7f83a439d87d474999317ee099218e5ad25d125290990ba65 \ + --hash=sha256:fa4ecea169a355be7a3ade2c783e2ed12f0e40d2c5621cda8b3297faf7fbb9f5 \ + --hash=sha256:fbd139c8447d25dd750ab79ee274cc5e1fe80fc56340ab10b18a195e1b6eca3e \ + --hash=sha256:fdafc9cce40277e0f7a0feabce0ee50dd2fa1800f3b38015e51296b5e814048d \ + --hash=sha256:fe3cca2e4e8a592be0f269a1ca4835c25199d9f3ce815c8491048f785b0a0198 \ + --hash=sha256:ffd0c5368496f41b0944be820fcb7a838aa6e623d250b01acf2643939c3f99d7 + # via + # matplotlib + # streamlit +platformdirs==4.10.0 \ + --hash=sha256:31e761a6a0ca04faf7353ea759bdba55652be214725111e5aac52dfa29d4bef7 \ + --hash=sha256:fb516cdb12eb0d857d0cd85a7c57cea4d060bee4578d6cf5a14dfdf8cbf8784a + # via + # black + # mkdocs-get-deps + # properdocs +plotly==6.8.0 \ + --hash=sha256:13c5c4a0f70b74cab1913eda0de49b826df5931708eb6f9c3010040614700ec8 \ + --hash=sha256:e088e7ddc68d4f70e3d66659224727a45296d71d2b8284181862d3d8f1f0d88f + # via + # dash + # trendify +pluggy==1.6.0 \ + --hash=sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3 \ + --hash=sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746 + # via + # hatchling + # pytest + # pytest-cov +properdocs==1.6.7 \ + --hash=sha256:6fa0cfa2e01bf338f684892c8a506cf70ea88ae7f3479c933b6fa20168101cbd \ + --hash=sha256:adc7b16e562890af0e098a7e5b02e3a81c20894a87d6a28d345c9300de73c26e + # via + # mkdocs-gen-files + # mkdocs-literate-nav + # mkdocs-redirects + # mkdocs-section-index +protobuf==7.35.1 \ + --hash=sha256:11d6b0ec246892d85215b0a13ca6e0233cf5284b68f0ac02646427f4ff88a799 \ + --hash=sha256:230a75ddfc2de4806e56696ce9640c1cdfdb6543b7cfce98d42a4c0a0e7bdb87 \ + --hash=sha256:24f857477359a85c0c235261b8ba905fd51b2562f4a64ca1df5473f29850cbf6 \ + --hash=sha256:353652e4efd0bca5b5fc2656abf8307ef351f0cf938c9eba09f0e09c20a25c30 \ + --hash=sha256:4bc97768d8fe4ad6743c8a19403e314511ed9f6d13205b687e52421c023ac1b9 \ + --hash=sha256:74758715c53d7158fb76caf4f0cfdacc5329a4b1bb994f865d6cf302d413a1c4 \ + --hash=sha256:b73f9489a4b8b1c9cb1f8ed951c736392592edb24b9d6819f36d2e10b171d5b4 \ + --hash=sha256:ce115a26fe0c39a2c29973d914d327e516a6455464489fe3cd1e51a1b354f81a + # via streamlit +pyarrow==24.0.0 \ + --hash=sha256:02b001b3ed4723caa44f6cd1af2d5c86aa2cf9971dacc2ffa55b21237713dfba \ + --hash=sha256:04920d6a71aabd08a0417709efce97d45ea8e6fb733d9ca9ecffb13c67839f68 \ + --hash=sha256:0b3537c00fb8d384f15ac1e79b6eb6db04a16514c8c1d22e59a9b95c8ba42868 \ + --hash=sha256:1183baeb14c5f587b1ec52831e665718ce632caab84b7cd6b85fd44f96114495 \ + --hash=sha256:14e31a3c9e35f1ab6356c6378f6f72830e6d2d5f1791df3774a7b097d18a6a1e \ + --hash=sha256:1617043b99bd33e5318ae18eb2919af09c71322ef1ca46566cdafc6e6712fb66 \ + --hash=sha256:1a4e45017efbf115032e4475ee876d525e0e36c742214fbe405332480ecd6275 \ + --hash=sha256:1b2fe7f9a5566401a0ef2571f197eb92358925c1f0c8dba305d6e43ea0871bb3 \ + --hash=sha256:1cc9057f0319e26333b357e17f3c2c022f1a83739b48a88b25bfd5fa2dc18838 \ + --hash=sha256:25ea65d868eb04015cd18e6df2fbe98f07e5bda2abefabcb88fce39a947716f6 \ + --hash=sha256:295f0a7f2e242dabd513737cf076007dc5b2d59237e3eca37b05c0c6446f3826 \ + --hash=sha256:2f16197705a230a78270cdd4ea8a1d57e86b2fdcbc34a1f6aebc72e65c986f9a \ + --hash=sha256:35405aecb474e683fb36af650618fd5340ee5471fc65a21b36076a18bbc6c981 \ + --hash=sha256:38be1808cdd068605b787e6ca9119b27eb275a0234e50212c3492331680c3b1e \ + --hash=sha256:3b13dedfe76a0ad2d1d859b0811b53827a4e9d93a0bcb05cf59333ab4980cc7e \ + --hash=sha256:418e48ce50a45a6a6c73c454677203a9c75c966cb1e92ca3370959185f197a05 \ + --hash=sha256:55a3bc1e3df3b5567b7d27ef551b2283f0c68a5e86f1cd56abc569da4f31335b \ + --hash=sha256:6165461f55ef6314f026de6638d661188e3455d3ec49834556a0ebbdbace18bb \ + --hash=sha256:61a3d7eaa97a14768b542f3d284dc6400dd2470d9f080708b13cd46b6ae18136 \ + --hash=sha256:6233c9ed9ab9d1db47de57d9753256d9dcffbf42db341576099f0fd9f6bf4810 \ + --hash=sha256:641f795b361874ac9da5294f8f443dfdbee355cf2bd9e3b8d97aaac2306b9b37 \ + --hash=sha256:6f066b179d68c413374294bc1735f68475457c933258df594443bb9d88ddc2a0 \ + --hash=sha256:7986f1fa71cee060ad00758bcc79d3a93bab8559bf978fab9e53472a2e25a17b \ + --hash=sha256:806f24b4085453c197a5078218d1ee08783ebbba271badd153d1ae22a3ee804f \ + --hash=sha256:85fe721a14dd823aca09127acbb06c3ca723efbd436c004f16bca601b04dcc83 \ + --hash=sha256:8adc8e6ce5fccf5dc707046ae4914fd537def529709cc0d285d37a7f9cd442ca \ + --hash=sha256:9700ebd9a51f5895ce75ff4ac4b3c47a7d4b42bc618be8e713e5d56bacf5f931 \ + --hash=sha256:9b18371ad2f44044b81a8d23bc2d8a9b6a6226dca775e8e16cfee640473d6c5d \ + --hash=sha256:a964266397740257f16f7bb2e4f08a0c81454004beab8ff59dd531b73610e9f2 \ + --hash=sha256:adbbedc55506cbdabb830890444fb856bfb0060c46c6f8026c6c2f2cf86ae795 \ + --hash=sha256:ae8a1145af31d903fa9bb166824d7abe9b4681a000b0159c9fb99c11bc11ad26 \ + --hash=sha256:b0e131f880cda8d04e076cee175a46fc0e8bc8b65c99c6c09dff6669335fde74 \ + --hash=sha256:b196eb3f931862af3fa84c2a253514d859c08e0d8fe020e07be12e75a5a9780c \ + --hash=sha256:b7d9a514e73bc42711e6a35aaccf3587c520024fe0a25d830a1a8a27c15f4f57 \ + --hash=sha256:c91d00057f23b8d353039520dc3a6c09d8608164c692e9f59a175a42b2ae0c19 \ + --hash=sha256:d3e0b61e8efb24ed38898e5cdc5fffa9124be480008d401a1f8071500494ae42 \ + --hash=sha256:d7027eba1df3b2069e2e8d80f644fa0918b68c46432af3d088ddd390d063ecde \ + --hash=sha256:d8ddd2768da81d3ee08cfea9b597f4abb4e8e1dc8ae7e204b608d23a0d3ab699 \ + --hash=sha256:e4505fc6583f7b05ab854934896bcac8253b04ac1171a77dfb73efef92076d91 \ + --hash=sha256:e56a1ffe9bf7b727432b89104cc0849c21582949dd7bdcb34f17b2001a351a76 \ + --hash=sha256:e6f1278ee4785b6db21229374a1c9e54ec7c549de5d1efc9630b6207de7e170b \ + --hash=sha256:f7616236ec1bc2b15bfdec22a71ab38851c86f8f05ff64f379e1278cf20c634a \ + --hash=sha256:fb24ac194bfc5e86839d7dcd52092ee31e5fe6733fe11f5e3b06ef0812b20072 + # via streamlit +pycodestyle==2.14.0 \ + --hash=sha256:c4b5b517d278089ff9d0abdec919cd97262a3367449ea1c8b49b91529167b783 \ + --hash=sha256:dd6bf7cb4ee77f8e016f9c8e74a35ddd9f67e1d5fd4184d86c3b98e07099f42d + # via flake8 +pycparser==3.0 ; implementation_name != 'PyPy' and platform_python_implementation != 'PyPy' \ + --hash=sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29 \ + --hash=sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992 + # via cffi +pydantic==2.13.4 \ + --hash=sha256:45a282cde31d808236fd7ea9d919b128653c8b38b393d1c4ab335c62924d9aba \ + --hash=sha256:c40756b57adaa8b1efeeced5c196f3f3b7c435f90e84ea7f443901bec8099ef6 + # via + # dash + # mcp + # numpydantic + # pydantic-settings + # trendify +pydantic-core==2.46.4 \ + --hash=sha256:00c603d540afdd6b80eb39f078f33ebd46211f02f33e34a32d9f053bba711de0 \ + --hash=sha256:0186750b482eefa11d7f435892b09c5c606193ef3375bcf94aa00ae6bfb66262 \ + --hash=sha256:041bde0a48fd37cf71cab1c9d56d3e8625a3793fef1f7dd232b3ff37e978ecda \ + --hash=sha256:0c563b08bca408dc7f65f700633d8442fffb2421fc47b8101377e9fd65051ff0 \ + --hash=sha256:0cbe8b01f948de4286c74cdd6c667aceb38f5c1e26f0693b3983d9d74887c65e \ + --hash=sha256:0ce40cd7b21210e99342afafbd4d0f76d784eb5b1d60f3bdc566be4983c6c73b \ + --hash=sha256:0e96592440881c74a213e5ad528e2b24d3d4f940de2766bed9010ab1d9e51594 \ + --hash=sha256:133878133d271ade3d41d1bfb2a45ec38dbdbda40bc065921c6b04e4630127e2 \ + --hash=sha256:14d4edf427bdcf950a8a02d7cb44a08614388dd6e1bdcbf4f67504fa7887da9c \ + --hash=sha256:14f4c5d6db102bd796a627bbb3a17b4cf4574b9ae861d8b7c9a9661c6dd3362d \ + --hash=sha256:17299feefe090f2caa5b8e37222bb5f663e4935a8bfa6931d4102e5df1a9f398 \ + --hash=sha256:184c081504d17f1c1066e430e117142b2c77d9448a97f7b65c6ac9fd9aee238d \ + --hash=sha256:18e5ceec2ab67e6d5f1a9085e5a24c9c4e2ac4545730bfe668680bca05e555f3 \ + --hash=sha256:1a7dd0b3ee80d90150e3495a3a13ac34dbcbfd4f012996a6a1d8900e91b5c0fb \ + --hash=sha256:1d8ba486450b14f3b1d63bc521d410ec7565e52f887b9fb671791886436a42f7 \ + --hash=sha256:2108ba5c1c1eca18030634489dc544844144ee36357f2f9f780b93e7ddbb44b5 \ + --hash=sha256:23ace664830ee0bfe014a0c7bc248b1f7f25ed7ad103852c317624a1083af462 \ + --hash=sha256:2412e734dcb48da14d4e4006b82b46b74f2518b8a26ee7e58c6844a6cd6d03c4 \ + --hash=sha256:29c61fc04a3d840155ff08e475a04809278972fe6aef51e2720554e96367e34b \ + --hash=sha256:3009f12e4e90b7f88b4f9adb1b0c4a3d58fe7820f3238c190047209d148026df \ + --hash=sha256:3245406455a5d98187ec35530fd772b1d799b26667980872c8d4614991e2c4a2 \ + --hash=sha256:372429a130e469c9cd698925ce5fc50940b7a1336b0d82038e63d5bbc4edc519 \ + --hash=sha256:3a233125ac121aa3ffba9a2b59edfc4a985a76092dc8279586ab4b71390875e7 \ + --hash=sha256:3bf92c5d0e00fefaab325a4d27828fe6b6e2a21848686b5b60d2d9eeb09d76c6 \ + --hash=sha256:3ecbc122d18468d06ca279dc26a8c2e2d5acb10943bb35e36ae92096dc3b5565 \ + --hash=sha256:3fb702cd90b0446a3a1c5e470bfa0dd23c0233b676a9099ddcc964fa6ca13898 \ + --hash=sha256:428e04521a40150c85216fc8b85e8d39fece235a9cf5e383761238c7fa9b96fb \ + --hash=sha256:4c63ebc82684aa89d9a3bcbd13d515b3be44250dc68dd3bd81526c1cb31286c3 \ + --hash=sha256:4fc73cb559bdb54b1134a706a2802a4cddd27a0633f5abb7e53056268751ac6a \ + --hash=sha256:4fcbe087dbc2068af7eda3aa87634eba216dbda64d1ae73c8684b621d33f6596 \ + --hash=sha256:56cb4851bcaf3d117eddcef4fe66afd750a50274b0da8e22be256d10e5611987 \ + --hash=sha256:5855698a4856556d86e8e6cd8434bc3ac0314ee8e12089ae0e143f64c6256e4e \ + --hash=sha256:5a4330cdbc57162e4b3aa303f588ba752257694c9c9be3e7ebb11b4aca659b5d \ + --hash=sha256:5b712b53160b79a5850310b912a5ef8e57e56947c8ad690c227f5c9d7e561712 \ + --hash=sha256:5d5902252db0d3cedf8d4a1bc68f70eeb430f7e4c7104c8c476753519b423008 \ + --hash=sha256:617d7e2ca7dcb8c5cf6bcb8c59b8832c94b36196bbf1cbd1bfb56ed341905edd \ + --hash=sha256:62f875393d7f270851f20523dd2e29f082bcc82292d66db2b64ea71f64b6e1c1 \ + --hash=sha256:633147d34cf4550417f12e2b1a0383973bdf5cdfde212cb09e9a581cf10820be \ + --hash=sha256:66ce7632c22d837c95301830e111ad0128a32b8207533b60896a96c4915192ea \ + --hash=sha256:6b3ace8194b0e5204818c92802dcdca7fc6d88aabbb799d7c795540d9cd6d292 \ + --hash=sha256:6f2eeda33a839975441c86a4119e1383c50b47faf0cbb5176985565c6bb02c33 \ + --hash=sha256:7027560ee92211647d0d34e3f7cd6f50da56399d26a9c8ad0da286d3869a53f3 \ + --hash=sha256:7283d57845ecf5a163403eb0702dfc220cc4fbdd18919cb5ccea4f95ee1cdab4 \ + --hash=sha256:7a5f930472650a82629163023e630d160863fce524c616f4e5186e5de9d9a49b \ + --hash=sha256:7bfb192b3f4b9e8a89b6277b6ce787564f62cfd272055f6e685726b111dc7826 \ + --hash=sha256:811ff8e9c313ab425368bcbb36e5c4ebd7108c2bbf4e4089cfbb0b01eff63fac \ + --hash=sha256:8233f2947cf85404441fd7e0085f53b10c93e0ee78611099b5c7237e36aacbf7 \ + --hash=sha256:82cf5301172168103724d49a1444d3378cb20cdee30b116a1bd6031236298a5d \ + --hash=sha256:85bb3611ff1802f3ee7fdd7dbff26b56f343fb432d57a4728fdd49b6ef35e2f4 \ + --hash=sha256:86e1a4418c6cd97d60c95c71164158eaf7324fae7b0923264016baa993eba6fc \ + --hash=sha256:8c5dac79fa1614d1e06ca695109c6105923bd9c7d1d6c918d4e637b7e6b32fd3 \ + --hash=sha256:8d0820e8192167f80d88d64038e609c31452eeca865b4e1d9950a27a4609b00b \ + --hash=sha256:8daafc69c93ee8a0204506a3b6b30f586ef54028f52aeeeb5c4cfc5184fd5914 \ + --hash=sha256:9037063db01f09b09e237c282b6792bd4da634b5402c4e7f0c61effed7701a04 \ + --hash=sha256:90884113d8b48f760e9587002789ddd741e76ab9f89518cd1e43b1f1a52ec44b \ + --hash=sha256:926c9541b14b12b1681dca8a0b75feb510b06c6341b70a8e500c2fdcff837cce \ + --hash=sha256:9401557acd873c3a7f3eb9383edef8ac4968f9510e340f4808d427e75667e7b4 \ + --hash=sha256:9551187363ffc0de2a00b2e47c25aeaeb1020b69b668762966df15fc5659dd5a \ + --hash=sha256:962ccbab7b642487b1d8b7df90ef677e03134cf1fd8880bf698649b22a69371f \ + --hash=sha256:97e7cf2be5c77b7d1a9713a05605d49460d02c6078d38d8bef3cbe323c548424 \ + --hash=sha256:9aa768456404a8bf48a4406685ac2bec8e72b62c69313734fa3b73cf33b3a894 \ + --hash=sha256:9bc519fbf2b7578398853d815009ae5e4d4603d12f4e3f91da8c06852d3da3e9 \ + --hash=sha256:9d56801be94b86a9da183e5f3766e6310752b99ff647e38b09a9500d88e46e76 \ + --hash=sha256:9fa8ae11da9e2b3126c6426f147e0fba88d96d65921799bb30c6abd1cb2c97fb \ + --hash=sha256:a0f62d0a58f4e7da165457e995725421e0064f2255d8eccebc49f41bbc23b109 \ + --hash=sha256:aaa2a54443eff1950ba5ddc6b6ccda0d9c84a364276a62f969bdf2a390650848 \ + --hash=sha256:ad785e92e6dc634c21555edc8bd6b64957ab844541bcb96a1366c202951ae526 \ + --hash=sha256:af8244b2bef6aaad6d92cda81372de7f8c8d36c9f0c3ea36e827c60e7d9467a0 \ + --hash=sha256:b2f69dec1725e79a012d920df1707de5caf7ed5e08f3be4435e25803efc47458 \ + --hash=sha256:b8458003118a712e66286df6a707db01c52c0f52f7db8e4a38f0da1d3b94fc4e \ + --hash=sha256:bfec22eab3c8cc2ceec0248aec886624116dc079afa027ecc8ad4a7e62010f8a \ + --hash=sha256:c1b3f518abeca3aa13c712fd202306e145abf59a18b094a6bafb2d2bbf59192c \ + --hash=sha256:c50f2528cf200c5eed56faf3f4e22fcd5f38c157a8b78576e6ba3168ec35f000 \ + --hash=sha256:c68fcd102d71ea85c5b2dfac3f4f8476eff42a9e078fd5faefff6d145063536b \ + --hash=sha256:c7a7bd4e39e8e4c12c39cd480356842b6a8a06e41b23a55a5e3e191718838ddf \ + --hash=sha256:c94f0688e7b8d0a67abf40e57a7eaaecd17cc9586706a31b76c031f63df052b4 \ + --hash=sha256:cbaf13819775b7f769bf4a1f066cb6df7a28d4480081a589828ef190226881cd \ + --hash=sha256:cd2213145bcc2ba85884d0ac63d222fece9209678f77b9b4d76f054c561adb28 \ + --hash=sha256:ce5c1d2a8b27468f433ca974829c44060b8097eedc39933e3c206a90ee49c4a9 \ + --hash=sha256:d396ec2b979760aaf3218e76c24e65bd0aca24983298653b3a9d7a45f9e47b30 \ + --hash=sha256:d51026d73fcfd93610abc7b27789c26b313920fcfb20e27462d74a7f8b06e983 \ + --hash=sha256:db06ffe51636ffe9ca531fe9023dd64bdd794be8754cb5df57c5498ae5b518a7 \ + --hash=sha256:e0d65b8c354be7fb5f720c3caa8bc940bc2d20ce749c8e06135f07f8ed95dd7c \ + --hash=sha256:e739fee756ba1010f8bcccb534252e85a35fe45ae92c295a06059ce58b74ccd3 \ + --hash=sha256:e846ae7835bf0703ae43f534ab79a867146dadd59dc9ca5c8b53d5c8f7c9ef02 \ + --hash=sha256:e9c26f834c65f5752f3f06cb08cb86a913ceb7274d0db6e267808a708b46bc89 \ + --hash=sha256:f027324c56cd5406ca49c124b0db10e56c69064fec039acc571c29020cc87c76 \ + --hash=sha256:f99626688942fb746e545232e7726926f3be91b5975f8b55327665fafda991c7 \ + --hash=sha256:f9fa868638bf362d3d138ea55829cefb3d5f4b0d7f142234382a15e2485dbec4 \ + --hash=sha256:fbdb89b3e1c94a30cc5edfce477c6e6a5dc4d8f84665b455c27582f211a1c72c \ + --hash=sha256:fc010ab034c8c7452522748bf937df58020d256ccae0874463d1f4d01758af8e \ + --hash=sha256:fc3e9034a63de20e15e8ade85358bc6efc614008cab72898b4b4952bea0509ff + # via pydantic +pydantic-settings==2.14.2 \ + --hash=sha256:a20c97b37910b6550d5ea50fbcc2d4187defe58cd57070b73863d069419c9440 \ + --hash=sha256:c19dd64b19097f1de80184f0cc7b0272a13ae6e170cbf240a3e27e381ed14a5f + # via mcp +pydeck==0.9.2 \ + --hash=sha256:8213dfeacc5f6bfe6825f61c8ee34e3850e8a31fc43924379ec98edb34a75b25 \ + --hash=sha256:c10d9035e81ead6385264cac8d19402471f6866a15ca1f7df1400f52142bcf87 + # via streamlit +pyflakes==3.4.0 \ + --hash=sha256:b24f96fafb7d2ab0ec5075b7350b3d2d2218eab42003821c06344973d3ea2f58 \ + --hash=sha256:f742a7dbd0d9cb9ea41e9a24a918996e8170c799fa528688d40dd582c8265f4f + # via flake8 +pygments==2.20.0 \ + --hash=sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f \ + --hash=sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176 + # via + # mkdocs-material + # pytest +pyjwt==2.13.0 \ + --hash=sha256:41571c89ca91598c79e8ef18a2d07367d4810fbbd6f637794879baf1b7703423 \ + --hash=sha256:66adcc2aff09b3f1bbd95fc1e1577df8ac8723c978552fd43304c8a290ac5728 + # via mcp +pymdown-extensions==11.0 \ + --hash=sha256:8269cef0247f9e2d0a62fcea10860aba05c1cbab5470fd4b63230b96434dc589 \ + --hash=sha256:fbc4acb641814fa9d17521bbd21a5240ef739a662f11c06330c4b78c93e954d6 + # via + # mkdocs-material + # mkdocstrings +pyparsing==3.3.2 \ + --hash=sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d \ + --hash=sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc + # via + # matplotlib + # mike +pytest==9.1.1 \ + --hash=sha256:1088fbde8f2b49d95a549a195707afa7a76a3ce9bcadc26b6d71f0ffda5fe313 \ + --hash=sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c + # via + # pytest-asyncio + # pytest-cov +pytest-asyncio==1.4.0 \ + --hash=sha256:933ca923a23075a87fb7070c0ec272a6848489824d887c85c812670932835aa1 \ + --hash=sha256:c6c0d2259945122819f171a32ecea2c349ead889ee28176caaf492143424be42 +pytest-cov==7.1.0 \ + --hash=sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2 \ + --hash=sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678 +python-dateutil==2.9.0.post0 \ + --hash=sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 \ + --hash=sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 + # via + # ghp-import + # matplotlib + # pandas +python-dotenv==1.2.2 \ + --hash=sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a \ + --hash=sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3 + # via pydantic-settings +python-multipart==0.0.32 \ + --hash=sha256:be54b7f3fa167bb83e4fcd936b887b708f4e57fe75911c02aebf53efaf8d938e \ + --hash=sha256:ff6d3f776f16878c894e52e107296ffc890e913c611b1a4ec6c44e2821fe2e23 + # via + # mcp + # streamlit +pytokens==0.4.1 \ + --hash=sha256:140709331e846b728475786df8aeb27d24f48cbcf7bcd449f8de75cae7a45083 \ + --hash=sha256:24afde1f53d95348b5a0eb19488661147285ca4dd7ed752bbc3e1c6242a304d1 \ + --hash=sha256:26cef14744a8385f35d0e095dc8b3a7583f6c953c2e3d269c7f82484bf5ad2de \ + --hash=sha256:292052fe80923aae2260c073f822ceba21f3872ced9a68bb7953b348e561179a \ + --hash=sha256:29d1d8fb1030af4d231789959f21821ab6325e463f0503a61d204343c9b355d1 \ + --hash=sha256:3f901fe783e06e48e8cbdc82d631fca8f118333798193e026a50ce1b3757ea68 \ + --hash=sha256:4a14d5f5fc78ce85e426aa159489e2d5961acf0e47575e08f35584009178e321 \ + --hash=sha256:4a58d057208cb9075c144950d789511220b07636dd2e4708d5645d24de666bdc \ + --hash=sha256:5502408cab1cb18e128570f8d598981c68a50d0cbd7c61312a90507cd3a1276f \ + --hash=sha256:584c80c24b078eec1e227079d56dc22ff755e0ba8654d8383b2c549107528918 \ + --hash=sha256:5ad948d085ed6c16413eb5fec6b3e02fa00dc29a2534f088d3302c47eb59adf9 \ + --hash=sha256:6d6c4268598f762bc8e91f5dbf2ab2f61f7b95bdc07953b602db879b3c8c18e1 \ + --hash=sha256:79fc6b8699564e1f9b521582c35435f1bd32dd06822322ec44afdeba666d8cb3 \ + --hash=sha256:8bdb9d0ce90cbf99c525e75a2fa415144fd570a1ba987380190e8b786bc6ef9b \ + --hash=sha256:8fcb9ba3709ff77e77f1c7022ff11d13553f3c30299a9fe246a166903e9091eb \ + --hash=sha256:967cf6e3fd4adf7de8fc73cd3043754ae79c36475c1c11d514fc72cf5490094a \ + --hash=sha256:970b08dd6b86058b6dc07efe9e98414f5102974716232d10f32ff39701e841c4 \ + --hash=sha256:97f50fd18543be72da51dd505e2ed20d2228c74e0464e4262e4899797803d7fa \ + --hash=sha256:9bd7d7f544d362576be74f9d5901a22f317efc20046efe2034dced238cbbfe78 \ + --hash=sha256:b35d7e5ad269804f6697727702da3c517bb8a5228afa450ab0fa787732055fc9 \ + --hash=sha256:b49750419d300e2b5a3813cf229d4e5a4c728dae470bcc89867a9ad6f25a722d \ + --hash=sha256:d31b97b3de0f61571a124a00ffe9a81fb9939146c122c11060725bd5aea79975 \ + --hash=sha256:d70e77c55ae8380c91c0c18dea05951482e263982911fc7410b1ffd1dadd3440 \ + --hash=sha256:d9907d61f15bf7261d7e775bd5d7ee4d2930e04424bab1972591918497623a16 \ + --hash=sha256:dc74c035f9bfca0255c1af77ddd2d6ae8419012805453e4b0e7513e17904545d \ + --hash=sha256:ee44d0f85b803321710f9239f335aafe16553b39106384cef8e6de40cb4ef2f6 \ + --hash=sha256:f66a6bbe741bd431f6d741e617e0f39ec7257ca1f89089593479347cc4d13324 + # via black +pywin32==312 ; sys_platform == 'win32' \ + --hash=sha256:17948aeadbdb091f0ced6ef0841620794e68327b94ee415571c1203594b7215c \ + --hash=sha256:59aba5d5940842075343a5ddc6b11f1cdf0d1567fe745290359dfbcc7c2eb831 \ + --hash=sha256:5c1fbe4a937a73ae9297384a3da38518cbc694c68ad8a809b2e19acd350f03ed \ + --hash=sha256:6017c58e12f6809fbb0555b75df144c2922a9ffd18e4b9b5afa863b6c1a9d950 \ + --hash=sha256:7a27df850933d16a8eabfbaeb73d52b273e2da667f80d70b01a89d1f6828d02c \ + --hash=sha256:9fce94568364e0155e6dfb781ac5d95903be8baf28670632beab1b523f300daa \ + --hash=sha256:a4dd3a848290ef724347b19f301045831d8e802fa4464f491b98b1e0a081432e \ + --hash=sha256:a77a90fbb6881238d2ca9c6fd797b25817f3768fe78d214a90137ff055a75f5b \ + --hash=sha256:a8597d28f267b39074aef51fa593530082b39cbe5a074226096857b1fed2dfb9 \ + --hash=sha256:b2200a054ca6d6625c4842fc56a4976a4b47f96b73dbe5538c3f813a80359f47 \ + --hash=sha256:b457f6d628a47e8a7346ce22acb7e1a46a4a78b52e1d17e1af56871bd19a93bc \ + --hash=sha256:c2f03a0f73f804a13c2735b99392b0cd426bb4f2c4d0178e5ac966a0f21618d5 \ + --hash=sha256:c53e878d15a1c44788082bfe712a905433473aa38f86375b7cf8b45e3acbaaf9 \ + --hash=sha256:d11417d84412f859b722fad0841b3614459ed0047f7542d8362e77884f6b6e8a \ + --hash=sha256:dab4f65ac9c4e48400a2a0530c46c3c579cd5905ecd11b80692373915269208b + # via mcp +pyyaml==6.0.3 \ + --hash=sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c \ + --hash=sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3 \ + --hash=sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6 \ + --hash=sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c \ + --hash=sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65 \ + --hash=sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a \ + --hash=sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1 \ + --hash=sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310 \ + --hash=sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4 \ + --hash=sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea \ + --hash=sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e \ + --hash=sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac \ + --hash=sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9 \ + --hash=sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7 \ + --hash=sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35 \ + --hash=sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb \ + --hash=sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b \ + --hash=sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c \ + --hash=sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd \ + --hash=sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824 \ + --hash=sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065 \ + --hash=sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c \ + --hash=sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c \ + --hash=sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764 \ + --hash=sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196 \ + --hash=sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b \ + --hash=sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00 \ + --hash=sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac \ + --hash=sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8 \ + --hash=sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e \ + --hash=sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28 \ + --hash=sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3 \ + --hash=sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5 \ + --hash=sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf \ + --hash=sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5 \ + --hash=sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702 \ + --hash=sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788 \ + --hash=sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d \ + --hash=sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc \ + --hash=sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba \ + --hash=sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5 \ + --hash=sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26 \ + --hash=sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f \ + --hash=sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b \ + --hash=sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be \ + --hash=sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c \ + --hash=sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6 \ + --hash=sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0 + # via + # mike + # mkdocs + # mkdocs-get-deps + # properdocs + # pymdown-extensions + # pyyaml-env-tag +pyyaml-env-tag==1.1 \ + --hash=sha256:17109e1a528561e32f026364712fee1264bc2ea6715120891174ed1b980d2e04 \ + --hash=sha256:2eb38b75a2d21ee0475d6d97ec19c63287a7e140231e4214969d0eac923cd7ff + # via + # mike + # mkdocs + # properdocs +referencing==0.37.0 \ + --hash=sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231 \ + --hash=sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8 + # via + # jsonschema + # jsonschema-specifications +requests==2.34.2 \ + --hash=sha256:2a0d60c172f83ac6ab31e4554906c0f3b3588d37b5cb939b1c061f4907e278e0 \ + --hash=sha256:f288924cae4e29463698d6d60bc6a4da69c89185ad1e0bcc4104f584e960b9ed + # via + # dash + # grafana-api + # mkdocs-material + # streamlit +retrying==1.4.2 \ + --hash=sha256:bbc004aeb542a74f3569aeddf42a2516efefcdaff90df0eb38fbfbf19f179f59 \ + --hash=sha256:d102e75d53d8d30b88562d45361d6c6c934da06fab31bd81c0420acb97a8ba39 + # via dash +rpds-py==2026.6.3 \ + --hash=sha256:0be972be84cfcaf46c8c6edf690ca0f154ac17babf1f6a955a51579b34ad2dc5 \ + --hash=sha256:127565fead0a10943b282957bd5447804ff3160ad79f2ad2635e6d249e380680 \ + --hash=sha256:127e08c0642d880cf32ca47ec2a4a77b901f7e2dd1ad9762adb13955d72ffcc9 \ + --hash=sha256:166cf54d9f44fc6ceb53c7860258dde44a81406646de79f8ed3234fca3b6e538 \ + --hash=sha256:168c733a7112e071bb7a66460e667edfcff06c017a3c523f7a8a8e08d0140804 \ + --hash=sha256:1967debc37f64f2c4dc90a7f563aec558b471966e12adcac4e1c4240496b6ebf \ + --hash=sha256:1cebd1337c242e4ec2293e541f712b2da849b29f48f0c293684b71c0632625d4 \ + --hash=sha256:1cf01971c4f2c5553b772a542e4aaf191789cd331bc2cd4ff0e6e65ba49e1e97 \ + --hash=sha256:1e5822dfc2f0d4ab7e745eaa6d85945069329beeccef965af3f3bb26058fcab6 \ + --hash=sha256:22bffe6042b9bcb0822bcd1955ec00e245daf17b4344e4ed8e9551b976b63e96 \ + --hash=sha256:23a439f31ccbeff1574e24889128821d1f7917470e830cf6544dced1c662262a \ + --hash=sha256:24e9c5386e16669b674a69c156c8eeefcb578f3b3397b713b08e6d60f3c7b187 \ + --hash=sha256:270b293dae9058fc9fcedab50f13cebf46fb8ed1d1d54e0521a9da5d6b211975 \ + --hash=sha256:29dfa0533a5d4c94d4dfa1b694fcb56c9c63aad8330ffdd816fd225d0a7a162f \ + --hash=sha256:2a9c6f195058cb45335e8cc3802745c603d716eb96bc9625950c1aac71c0c703 \ + --hash=sha256:2bfd04c19ddbd6640de0b51894d764bd2758854d5b75bd102d2ef10cb9c293a9 \ + --hash=sha256:2c54a076ca4d370980ab57bc0e31df57bbe8d41340436a90ef8b1219a3cbb127 \ + --hash=sha256:2c958bf94822e9290a40aaf2a822d4bc5c88099093e3948ad6c571eca9272e5f \ + --hash=sha256:2c99f7e8ccb3dd6e3e4bfeac657a7b208c9bac8075f4b078c02d7404c34107fa \ + --hash=sha256:2f7c26fbc5acd2522b95d4177fe4710ffd8e9b20529e703ffbf8db4d93903f05 \ + --hash=sha256:30c6dc199b24a5e3e81d50da0f00858c5bbdb2617a750395687f4339c5818171 \ + --hash=sha256:38a2fea2787428f811719ceb9114cb78964a3138838320c29ac39526c79c16ba \ + --hash=sha256:3a83ae6c67b7676b9878378547ca8e93ed77a580037bcbcd1d32f739e1e6089c \ + --hash=sha256:3cfe765c1da0072636ca06628261e0ea05688e160d5c8a03e0217c3854037223 \ + --hash=sha256:421aba32367055614287a4292b6a17f1939c9452299f7a0209c117e990b646d4 \ + --hash=sha256:425560c6fa0415f27261727bb20bd097568485e5eb0c121f1949417d1c516885 \ + --hash=sha256:4470ce197d4090875cf6affbf1f853338387428df97c4fb7b7106317b8214698 \ + --hash=sha256:4cf2d36a2357e4d07bb5a4f98801265327b48256867816cfd2ceb001e9754a8f \ + --hash=sha256:4f4bca01b63096f606e095734dd56e74e175f94cfbf24ff3d63281cec61f7bb7 \ + --hash=sha256:501f9f04a588d6a09179368c57071301445191767c64e4b52a6aa9871f1ef5ed \ + --hash=sha256:536bceea4fa4acf7e1c61da2b5786304367c816c8895be71b8f537c480b0ea1f \ + --hash=sha256:538949e262e46caa31ac01bdb3c1e8f642622922cacbabbae6a8445d9dc33eaf \ + --hash=sha256:539d75de9e0d536c84ff18dfeb805398e58227001ce09231a26a08b9aed1ee0e \ + --hash=sha256:54f45a148e28767bf343d33a684693c70e451c6f4c0e9904709a723fafbdfc1f \ + --hash=sha256:55927d532399c2c646100ff7feb48eaa940ad70f42cd68e1328f3ded9f81ca24 \ + --hash=sha256:58eadac9cd119677b60e1cf8ac4052f35949d71b8a9e5556efccbe82533cf22a \ + --hash=sha256:5e8d07bddee435a2ff6f1920e18feff28d0bc4533e42f4bf6927fbd073312c41 \ + --hash=sha256:62698275682bf121181861295c9181e789030a2d516071f5b8f3c23c170cd0fc \ + --hash=sha256:639c8929aa0afe81be836b04de888460d6bed38b9c54cfc18da8f6bfabf5af5d \ + --hash=sha256:67e3a721ffc5d8d2210d3671872298c4a84e4b8035cfe42ffd7cde35d772b146 \ + --hash=sha256:6de4744d05bd1aa1be4ed7ea1189e3979196808008113bbbf899a460966b925e \ + --hash=sha256:6e84adbcf4bf841aed8116a8264b9f50b4cb3e7bd89b516122e616ac56ca269e \ + --hash=sha256:7491ee23305ac3eb59e492b6945881f5cd77a6f731061a3f25b77fd40f9e99a4 \ + --hash=sha256:79486287de1730dbaff3dbd124d0ca4d2ef7f9d29bf2544f1f93c09b5bcbbd12 \ + --hash=sha256:7b689145a1485c335569bd056464f3243a29af7ed3871c7be31ad624ba239bc7 \ + --hash=sha256:7f88d653e7b3b779d71ae7454e20dcc9b6bae903f33c269db9f2be41bda3f261 \ + --hash=sha256:8020133a74bd81b4572dd8e4be028a6b1ebcd70e6726edc3918008c08bee6ee6 \ + --hash=sha256:808345f53cb952433ca2816f1604ff3515608a81784954f38d4452acfe8e61d5 \ + --hash=sha256:83e35b57523816c8613fd0776b40cd8bb9f596b37ddd2692eb4a6bb5ab2f8c93 \ + --hash=sha256:842e7b070435622248c7a2c44ae53fa1440e073cc3023bc919fed570884097a7 \ + --hash=sha256:847927daf4cffbd4e90e42bc890069897101edd015f956cb8721b3473372edda \ + --hash=sha256:882076c00c0a608b131187055ddc5ae29f2e7eaf870d6168980420d58528a5c8 \ + --hash=sha256:8b95977e7211527ab0ba576e286d023389fbeeb32a6b7b771665d333c60e5342 \ + --hash=sha256:8bb68f03f395eb793220b45c097bd4d8c32944393da0fad8b999efac0868fc8c \ + --hash=sha256:8c2642a7603ec0b16ed77da4555db3b4b472341904873788327c0b0d7b95f1bb \ + --hash=sha256:8c3d1e9c15b9d51ca0391e13da1a25a0a4df3c58a37c9dc368e0736cf7f69df0 \ + --hash=sha256:8c6e5a2f750cc71c3e3b11d71661f21d6f9bc6cebc6564b1466417a1ec03ec77 \ + --hash=sha256:8d2294a31386bfa251d8c8a39472beee17db67d4f1a6eabea665d35c9a4461c3 \ + --hash=sha256:8e4320744c1ffdd95a603def63344bfab2d33edeab301c5007e7de9f9f5b3885 \ + --hash=sha256:8e65860d238379ed982fd9ba690579b5e95af2f4840f99c772816dbe573cb826 \ + --hash=sha256:8f2e5c5ee828d42cb11760761c0af6507927bec42d0ad5458f97c9203b054617 \ + --hash=sha256:900a67df3fd1660b035a4761c4ce73c382ea6b35f90f9863c36c6fd8bf8b09bb \ + --hash=sha256:913ca42ccad3f8cc6e292b587ae8ae49c8c823e5dce51a736252fc7c7cdfa577 \ + --hash=sha256:9250a9a0a6fd4648b3f868da8d91a4c52b5811a62df58e753d50ae4454a36f80 \ + --hash=sha256:931908d9fc855d8f74783377822be318edb6dcb19e47169dc038f9a1bf60b06e \ + --hash=sha256:9826217f048f620d9a712672818bf231442c1b35d96b227a07eabd11b4bb6945 \ + --hash=sha256:9891e594296ab9dada6551c8e7b387b2721f27a67eecd528412e8906247a7b90 \ + --hash=sha256:9c1255b302953c86a486b81d330d5ee1d5bd937691ce271b6be0ef0e299eaab7 \ + --hash=sha256:a0811d33247c3d6128a3001d763f2aa056bb3425204335400ac54f89eec3a0d0 \ + --hash=sha256:a136d453475ac0fcbda502ef1e6504bd28d6d904700915d278deeab0d00fe140 \ + --hash=sha256:a214c993455f99a89aaeadc9b21241900037adc9d97203e374d75513c5911822 \ + --hash=sha256:a3086b538543802f84c843911242db20447de00d8752dd0efc936dbcf02218ba \ + --hash=sha256:a3450b693fde92133e9f51060568a4c31fcca76d5e53bbd611e689ca446517e9 \ + --hash=sha256:a550fb4950a06dde3beb4721f5ad4b25bf4513784665b0a8522c792e2bd822a4 \ + --hash=sha256:a9f4645593036b81bbdb36b9c8e0ea0d1c3fee968c4d59db0344c14087ef143a \ + --hash=sha256:aca6c1ef08a82bfe327cc156da694660f599923e2e6665b6d81c9c2d0ac9ffc8 \ + --hash=sha256:acac386b453c2516111b50985d60ce46e7fadb5ea71ae7b25f4c946935bf27cf \ + --hash=sha256:acc992ab27b15f852c76755eb2ab7dce86585ddadba6fa5946e58556088845b4 \ + --hash=sha256:ae3d4fe8c0b9213624fdce7279d70e3b148b682ca20719ebd193a23ebfa47324 \ + --hash=sha256:ae50181a047c871561212bb97f7932a2d45fb53e947bd9b57ebad85b529cbc53 \ + --hash=sha256:ae6dd8f10bd17aad820876d24caec9efdafd80a318d16c0a48edb5e136902c6b \ + --hash=sha256:af05d726809bff6b141be124d4c7ce998f9c9c7f30edb1f46c07aa103d540b41 \ + --hash=sha256:afd70d95892096cdb26f15a00c45907b17817577aa8d1c76b2dcc2788391f9e9 \ + --hash=sha256:b5c2dc92304aa48a4a60443b548bb12f12e119d4b72f314015e67b9e1be97fca \ + --hash=sha256:bc0011654b91cc4fb2ae701bec0a0ba1e552c0714247fa7af6c59e0ccfa3a4e1 \ + --hash=sha256:bcfbcf66006befb9fd2aeaa9e01feaf881b4dc330a02ba07d2322b1c11be7b5d \ + --hash=sha256:bdbd97738551fca3917c1bd7188bec1920bb520104f28e7e1007f9ceb17b7690 \ + --hash=sha256:c60924535c75f1566b6eb75b5c31a48a43fef04fa2d0d201acbad8a9969c6107 \ + --hash=sha256:c7b9a2f8f4d8e90af72571d3d495deebdd7e3c75451f5b41719aee166e940fc2 \ + --hash=sha256:ca6546b66be9dc4738b1b043d5ebd5488c66c578c5ff0fd0e8065313fe3afb76 \ + --hash=sha256:ccffae9a092a00deb7efd545fe5e2c33c33b88e7c054337e9a74c179347d0b7d \ + --hash=sha256:cdc7e35386f3847df728fbcb5e887e2d79c19e2fa1eba9e51b6621d23e3243af \ + --hash=sha256:d15fde0e6fb0d88a60d221204873743e5d9f0b7d29165e62cd86d0413ad74ba6 \ + --hash=sha256:d34c20167764fbcf927194d532dd7e0c56772f0a5f943fa5ef9e9afbba8fb9db \ + --hash=sha256:d483fe17f01ad64b7bf7cc38fcefff1ca9fb83f8c2b2542b68f97ffe0611b369 \ + --hash=sha256:d7469697dce35be237db177d42e2a2ee26e6dcc5fc052078a6fefabd288c6edd \ + --hash=sha256:db08f45aecde626498fb3df07bcf6d2ec040af42e859a4f5040d79c200342911 \ + --hash=sha256:dc319e5a1de4b6913aac94bf6a2f9e847371e0a140a43dd4991db1a09bc2d504 \ + --hash=sha256:de3eceba0b683bcbb1ab93da016d0270df1f9ae7be716b40214c5dafac6ea45a \ + --hash=sha256:dfcc8b909769d19db55c7cc9541eb64b9b774b1057ffffb4f1048070475bb9f9 \ + --hash=sha256:e059c5dde6452b44424bd1834557556c226b57781dee1227af23518459722b13 \ + --hash=sha256:e4316bf32babbed84e691e352faf967ce2f0f024174a8643c37c94a1080374fc \ + --hash=sha256:e52655eaf81e32593abedaa4bfe33170c8cfedf3365ed9be6e11e07f148f0278 \ + --hash=sha256:e55d236be29255554da47abe5c577637db7c24a02b8b46f0ca9524c855801868 \ + --hash=sha256:ea7bb13b7c9a29791f87a0387ba7d3ad3a6d783d827e4d3f27b40a0ff44495e2 \ + --hash=sha256:ea964164cc9afa72d4d9b23cc28dafae93693c0a53e0b42acbff15b22c3f9ddd \ + --hash=sha256:ec829541c45bca16e61c7ae50c20501f213605beb75d1aba91a6ee37fbbb56a4 \ + --hash=sha256:ecabd69db66de867690f9797f2f8fa27ba501bbc24540cbdbdc649cd15888ba6 \ + --hash=sha256:ed0c1e5d10cdc7135537988c74a0188da68e2f3c30813ba3744ab1e42e0480f9 \ + --hash=sha256:f0840b5b17057f7fd918b76183a4b5a0635f43e14eb2ce60dce1d4ee4707ea00 \ + --hash=sha256:f4d78253f6996be4901669ad25319f842f740eccf4d58e3c7f3dd39e6dde1d8f \ + --hash=sha256:f56f1695bc5c0871cbc33dc0130fcf503aab0c57dcc5a6700a4f49eba4f2652e \ + --hash=sha256:f826877d462181e5eb1c26a0026b8d0cab05d99844ecb6d8bf3627a2ca0c0442 \ + --hash=sha256:f8f23ead891a3b762f35ab3b04623da7056545b48aa60d59957e6789914545da \ + --hash=sha256:f90938e92afda60266da758ee7d363447f7f0138c9559f9e1811629580582d90 \ + --hash=sha256:faa679d19a6696fd54259ad321251ad77a13e70e03dd834daa762a44fb6196ef + # via + # jsonschema + # referencing +scipy==1.17.1 ; python_full_version < '3.12' \ + --hash=sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0 \ + --hash=sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458 \ + --hash=sha256:08b900519463543aa604a06bec02461558a6e1cef8fdbb8098f77a48a83c8118 \ + --hash=sha256:131f5aaea57602008f9822e2115029b55d4b5f7c070287699fe45c661d051e39 \ + --hash=sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e \ + --hash=sha256:1cc682cea2ae55524432f3cdff9e9a3be743d52a7443d0cba9017c23c87ae2f6 \ + --hash=sha256:1f95b894f13729334fb990162e911c9e5dc1ab390c58aa6cbecb389c5b5e28ec \ + --hash=sha256:200e1050faffacc162be6a486a984a0497866ec54149a01270adc8a59b7c7d21 \ + --hash=sha256:2040ad4d1795a0ae89bfc7e8429677f365d45aa9fd5e4587cf1ea737f927b4a1 \ + --hash=sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6 \ + --hash=sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce \ + --hash=sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8 \ + --hash=sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448 \ + --hash=sha256:3877ac408e14da24a6196de0ddcace62092bfc12a83823e92e49e40747e52c19 \ + --hash=sha256:3fd1fcdab3ea951b610dc4cef356d416d5802991e7e32b5254828d342f7b7e0b \ + --hash=sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87 \ + --hash=sha256:43af8d1f3bea642559019edfe64e9b11192a8978efbd1539d7bc2aaa23d92de4 \ + --hash=sha256:45abad819184f07240d8a696117a7aacd39787af9e0b719d00285549ed19a1e9 \ + --hash=sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b \ + --hash=sha256:4eb6c25dd62ee8d5edf68a8e1c171dd71c292fdae95d8aeb3dd7d7de4c364082 \ + --hash=sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464 \ + --hash=sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87 \ + --hash=sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c \ + --hash=sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369 \ + --hash=sha256:6e3dcd57ab780c741fde8dc68619de988b966db759a3c3152e8e9142c26295ad \ + --hash=sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f \ + --hash=sha256:744b2bf3640d907b79f3fd7874efe432d1cf171ee721243e350f55234b4cec4c \ + --hash=sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475 \ + --hash=sha256:766e0dc5a616d026a3a1cffa379af959671729083882f50307e18175797b3dfd \ + --hash=sha256:7bdf2da170b67fdf10bca777614b1c7d96ae3ca5794fd9587dce41eb2966e866 \ + --hash=sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d \ + --hash=sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6 \ + --hash=sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb \ + --hash=sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca \ + --hash=sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0 \ + --hash=sha256:9cdc1a2fcfd5c52cfb3045feb399f7b3ce822abdde3a193a6b9a60b3cb5854ca \ + --hash=sha256:9ecb4efb1cd6e8c4afea0daa91a87fbddbce1b99d2895d151596716c0b2e859d \ + --hash=sha256:a3472cfbca0a54177d0faa68f697d8ba4c80bbdc19908c3465556d9f7efce9ee \ + --hash=sha256:a4328d245944d09fd639771de275701ccadf5f781ba0ff092ad141e017eccda4 \ + --hash=sha256:a48a72c77a310327f6a3a920092fa2b8fd03d7deaa60f093038f22d98e096717 \ + --hash=sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49 \ + --hash=sha256:a77cbd07b940d326d39a1d1b37817e2ee4d79cb30e7338f3d0cddffae70fcaa2 \ + --hash=sha256:a9956e4d4f4a301ebf6cde39850333a6b6110799d470dbbb1e25326ac447f52a \ + --hash=sha256:adb2642e060a6549c343603a3851ba76ef0b74cc8c079a9a58121c7ec9fe2350 \ + --hash=sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950 \ + --hash=sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b \ + --hash=sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086 \ + --hash=sha256:cd96a1898c0a47be4520327e01f874acfd61fb48a9420f8aa9f6483412ffa444 \ + --hash=sha256:d2650c1fb97e184d12d8ba010493ee7b322864f7d3d00d3f9bb97d9c21de4068 \ + --hash=sha256:d30e57c72013c2a4fe441c2fcb8e77b14e152ad48b5464858e07e2ad9fbfceff \ + --hash=sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a \ + --hash=sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50 \ + --hash=sha256:e18f12c6b0bc5a592ed23d3f7b891f68fd7f8241d69b7883769eb5d5dfb52696 \ + --hash=sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21 \ + --hash=sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c \ + --hash=sha256:eb092099205ef62cd1782b006658db09e2fed75bffcae7cc0d44052d8aa0f484 \ + --hash=sha256:eee2cfda04c00a857206a4330f0c5e3e56535494e30ca445eb19ec624ae75118 \ + --hash=sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3 \ + --hash=sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea \ + --hash=sha256:f8885db0bc2bffa59d5c1b72fad7a6a92d3e80e7257f967dd81abb553a90d293 \ + --hash=sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76 + # via trendify +scipy==1.18.0 ; python_full_version >= '3.12' \ + --hash=sha256:09143f676d157d9f546d663504ef9c1becb819824f1afc018814176411942446 \ + --hash=sha256:0d13bca67c096d89fb95ced0d8921807300fce0275643aef9533cc63a0773468 \ + --hash=sha256:18e9575f1569b2c54174e6159d32942e03731177f63dce7975f0a0c88d102f5b \ + --hash=sha256:1a4441f15d620578772a49e5ab48c0ee1f7a0220e387110283062729136b2553 \ + --hash=sha256:1ad44305cfa24b1ba5803cbbebf033590ccbac1aa5d612d727b785325ab408b0 \ + --hash=sha256:1afac4a847207c7ff8efd321734a50b06d0280b3b2a2c0fc2f413101747ad7c7 \ + --hash=sha256:1f55797419e16e7f30cf88ffb3113ce0467f00cfe3f70d5c281730b21769bfc2 \ + --hash=sha256:265915e79107de9f946b855e50d7470d5893ec3f54b342e1aa6201cbdcd8bb6b \ + --hash=sha256:2d8bbdc6c817f5b4006a54d799d4f5bab6f910193cbb9a1ff310833d4d270f61 \ + --hash=sha256:2ef3abc54a4ffc53765374b0d5728532dfdd2585ed23f6b11c206a1f0b1b9af8 \ + --hash=sha256:368e0a705903c466aa5f08eefb39e6b1b6b2d659e7352a31fd9e2438365be0f8 \ + --hash=sha256:3f1ac564d3bf6c03d861d2cd87a1bea0da2887136f7fb1bf519c05a8971452d6 \ + --hash=sha256:40395a5fcd1abee49a5c7aaa98c29db393eedc835138560a588c47ec16156690 \ + --hash=sha256:4a55985d54c769c872e64b7f4c8a81cc30ef700cc04296abbbf3705439c126de \ + --hash=sha256:4c256ee70c0d1a8a2ace807e199ccd4e3f57037433842abb3fb36bc17eaa9578 \ + --hash=sha256:52a96e21517c7292375c0e27dd796a811f03fcea5fd4d108fdfea8145dcf17ab \ + --hash=sha256:56abf29a7c067dde59be8b9a22d606a4ea1b2f2a4b756d9d903c62818f5dacce \ + --hash=sha256:5aba46108853ddfc77906b6557aac839d2b52e900c1d72a1180adaaab58d265f \ + --hash=sha256:5efe260f69417b97ddae455bfb5a95e8359f7f66ad7fa9522a60feb66f169520 \ + --hash=sha256:67b2ad2ad54c72ca6d04975a9b2df8c3638c34ddd5b28738e94fc2b57929d378 \ + --hash=sha256:68363b7eaacd8b5dd426df56d782cc156468ac79a127a1b87ca597d6e2e82197 \ + --hash=sha256:6aa94e78ec192a30063a5e72e561c28af769dc311190b24fe91774eff1969709 \ + --hash=sha256:71ccc8faa2dd16ac310233203474a8b5cb67f10dedd54a3116d34943f4b19132 \ + --hash=sha256:7a7f3b01647384dbc3a711e8c6778e0aabbe93959249fef5c7393396bcac0867 \ + --hash=sha256:7bd21faaf5a1a3b2eff922d02db5f191b99a6518db9078a8fb23169f6d22259a \ + --hash=sha256:7c7a51b33ce387193c97f228320cf8e87361daa1bba750638677729598b3e677 \ + --hash=sha256:84031d7b052a54fae2f8632e0ec802073d385476eb9a63079bce6e23ef9283d4 \ + --hash=sha256:8ca01e8ae69f1b18e9a58d91afead31be3cef0dd905a10249dac559ee15460a0 \ + --hash=sha256:945c1761b93f38d7f99ae81ae80c63e621471608c7eeead563f6df025585cd58 \ + --hash=sha256:97b6cddaaee0a779ef6b5ca83c9604b27cc16b2b8fc22c142652df8793319fb8 \ + --hash=sha256:9aac6192fac56bf2ca534389d24623f07b39ff83317d58287285e7fbd622ff76 \ + --hash=sha256:9ab7b758be6940954a713ee466e2043e9f6e2ed965c1fce5c91039f4be3d90a9 \ + --hash=sha256:a46f9273dbd0eb1cefba61c9b8648b4dfe3cbc14a080176f9a73e44b8336dc7f \ + --hash=sha256:ad033410e2e0672ffdc1042110cef20e1c46f8fd0616cee1d44d8d58fad8fc11 \ + --hash=sha256:b6f758e35f12757b5d95c00bc6de2438e229c2664b7a92e96f205959d9f2dfa4 \ + --hash=sha256:c5557d8be5da8e41353fcd4d21491fdbab83b062fc579e94dc09a7c8ab4f669b \ + --hash=sha256:c5dbddf60e58c2312316d097271a8e73d40eaf2eabfa4d95ed7d3695bbf2ce7b \ + --hash=sha256:d88363fd9d8fbd3511bd273f1a49efb2a540773ddf92a91d57498ce7dd7f3e76 \ + --hash=sha256:e40baea28ae7f5475c779741e2d90b1247c78531207b49c7030e698ff81cee3f \ + --hash=sha256:f2a6af57bd9e4a75d70e4117e78a1bbee84f79ae3fbb6d0111005d6ebcc4cb8d \ + --hash=sha256:f351e0dd702687d12a402b867a1b4146a256923e1c38317cbc472f6372b94707 + # via trendify +selectolax==0.4.10 \ + --hash=sha256:01c1354b158f8c87b72ab50a12b4b6d7b276150ded39210d1078d65d1e24ae0d \ + --hash=sha256:16055f712bd93507ce61ecac156bb7acf96b2e46c4d4d30c616e810f74f4da6e \ + --hash=sha256:1bb589f6ed0f1ec28784c2cd29de111a5b6f8129c3ecf0e71b9665e588667b97 \ + --hash=sha256:1ff2585eaf13ddc5c6614b10a7e47679b0c18a78821495e0c448364f8871592e \ + --hash=sha256:2428f04d2a48ba5f4c182f0d7234a7e38ac799b3358b3063f0ae41f754ee1c4a \ + --hash=sha256:3236fc0fbea9e237ee963274ebae700e68b9d6784bf91e0b3693eda63b393fa2 \ + --hash=sha256:373298d5c2e22a73740ba8f60a5813fd6bdb8fa2c0fd170841341ad0119bdf6b \ + --hash=sha256:3c21749e3d252419581160f3a3e43c1ad95dd0f83a13fe0d8c8fe6256bf7bbe6 \ + --hash=sha256:40babac4aea579edfb32b74acdacdb4c38bacb1ee3d1c4189f9665c52c67586f \ + --hash=sha256:40ecd0ff315dffa4a55840107367b0a54f2cd35be66e700c619364e0cd087ace \ + --hash=sha256:425288d4f5b18cfb0049fd1d6f3bddfba319657b9547b0e2bd24103b4b69435e \ + --hash=sha256:48c238f4f2b4ebd3d94ec260363d2bbab7df2825b592a1f9b12d59a9a9e9ee9a \ + --hash=sha256:4b0e1ad8b3d3d11bc173d33bb0fcf9d3ef8c667f1f3debd31ac8e9e3880ee174 \ + --hash=sha256:4d41b7e95ab0e025053efcba71267af12a6c12bc624e3bdf5dd83c6534f3d696 \ + --hash=sha256:547de570413e22ae5cbc8432d6224dd5a2d5bc66d1a50e34b705e5940d035caa \ + --hash=sha256:5d5b5437ce7548e7bc0b7712114de07dd0e4f94a30b06c968a6344148621df50 \ + --hash=sha256:6517b40e41ae5cc7756f92d88c59f178eb4a3683c7ce39c66bd5617587f628e5 \ + --hash=sha256:67f826152635521e1751665e315f3be82d027fe79d6446bf8434e0f7069e55db \ + --hash=sha256:68e1ef717b47f5cdcd1b151b2176d7184c38cb3772f8964509979840575203ef \ + --hash=sha256:746838a34df35ceff5f6154991b09aa6c27f044dc1fe9a4137f8c57e3e9f1203 \ + --hash=sha256:794a10f0c2cb9662ad85c5a970a72ca072057d68f7f0b3cf7b3230e5f2a8f221 \ + --hash=sha256:7c596b424c55ae87003140f55e6aa6f88e060b645781fa69e947ef60691b2bde \ + --hash=sha256:88475ef523fe5426d113e8319eeb741806a51cc025840f337661734c65cf1aa4 \ + --hash=sha256:89764b4d1e32d38e635dfb270a639fc707af4315b863fd161357a517321e5046 \ + --hash=sha256:8b57c64690e3c86b5d07386e2e598f4d3b4990144b1d5717db7038d0b675a97e \ + --hash=sha256:8c74168deeb116a1271e74e7a157e329930b7f54e328b323ce00bf7089f39dc9 \ + --hash=sha256:975bf1199c80965307168a05c4d88312a62b8151ac27216ed1248fbd175695bb \ + --hash=sha256:98e41ac4a761c5d4589ce9c40866a80fa2c5d413ac6b3af9546b43a2b3a8da18 \ + --hash=sha256:98f93b92d23a8feb88efc7c8e692221456bae30dc551d86d376931491152b909 \ + --hash=sha256:9c4c9afbd28b81892806e9699ecd323656e1eff7318c1245e80cd6bb78566a99 \ + --hash=sha256:a5c80477a3a93f0ee350d832c6fc764cd2df1299914a816bcd5ed4f0c9701b9b \ + --hash=sha256:a95f67ed9d5947562e9268332cc7165660c7db0cd3faea959e13b6901b4d323f \ + --hash=sha256:a96d59ba2a8ba01e4f732913816f5684d30d0646b7cd0fa17377fc9d1032cc0d \ + --hash=sha256:ab07fc342cf477c0320d22fac52917b824871caf5ab177a0fd94377a901ab657 \ + --hash=sha256:ab8f95b196b2dfb2be3ea7274673d45bb251ec2e16a0e7a3c1fc21c1c20d0722 \ + --hash=sha256:b3d199a73894368b83e5d744f64bddf80c22a37c160253a8e81c1a6000be607b \ + --hash=sha256:b43da45acece07f94e4b0d555e073f1a91314c98cb86d10860a1b291bc498976 \ + --hash=sha256:b65ce508ed7f3951a2f36f807494c253d0ebe99d2b18ede149f9a97b99be7d7a \ + --hash=sha256:c1933f53fe7410777b3373b9900010ae8d392a6d245f019d8f011d12f700e389 \ + --hash=sha256:c1bb382bd7009676716814ee81327015ab3d472aff0148fccbd20322d37af83d \ + --hash=sha256:c4b4b7c5d09a20539d369891332a107a869ee170453254048fbc18f893deb4f9 \ + --hash=sha256:d42566a7e649d4e5461e763a241f46542df2613876422e0530bc59999063f36d \ + --hash=sha256:d60cabbf1899916a6389fa36f2908b1a76e00dd044f710ae3dd2d0b14919dfc7 \ + --hash=sha256:db236a92e49b27369a98b9e8ac6c97e1534368d83281d097f3e50c2ba597f112 \ + --hash=sha256:e053064c5e00788a6bcc5427a753e41c058f29e4285bf84a3e663989b7218cdb \ + --hash=sha256:ec333fe02c4b7d8a03c0aa58c7c2265edd3312b1ef309f03efd020f595f6dae1 + # via mkdocs-glightbox +setuptools==82.0.1 \ + --hash=sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9 \ + --hash=sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb + # via dash +six==1.17.0 \ + --hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \ + --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81 + # via python-dateutil +smmap==5.0.3 \ + --hash=sha256:4d9debb8b99007ae47165abc08670bd74cb74b5227dda7f643eccc4e9eb5642c \ + --hash=sha256:c106e05d5a61449cf6ba9a1e650227ecfb141590d2a98412103ff35d89fc7b2f + # via gitdb +sse-starlette==3.4.5 \ + --hash=sha256:83072538bc211a2f68b7b0422226c4af3e9b62e106e07034664b832ca019842a \ + --hash=sha256:e71bad53323f65573c3864a6c3bd0c1eb6e5f092b2e48082b0c35927d19ca296 + # via mcp +starlette==1.3.1 \ + --hash=sha256:05d0213193f2fbaae60e2ecb593b4add4262ad4e46536b54abe36f11a71724e0 \ + --hash=sha256:c7372aae11c3c3f26a42df7bd626cec2f47d03483d261d369516a615a53714c6 + # via + # mcp + # sse-starlette + # streamlit +streamlit==1.58.0 \ + --hash=sha256:4ca8a7afc5bd16a5f176ccf4be1e34e8121cad0240becd127fb58a103ea3178d \ + --hash=sha256:78a22e7085b053af7ce544442bf4b670771e68c509ba1bdaa056ba0708f49c3d + # via trendify +strenum==0.4.15 \ + --hash=sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff \ + --hash=sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659 + # via trendify +supervisor==4.3.0 \ + --hash=sha256:0bcb763fddafba410f35cbde226aa7f8514b9fb82eb05a0c85f6588d1c13f8db \ + --hash=sha256:4a2bf149adf42997e1bb44b70c43b613275ec9852c3edacca86a9166b27e945e + # via trendify +tenacity==9.1.4 \ + --hash=sha256:6095a360c919085f28c6527de529e76a06ad89b23659fa881ae0649b867a9d55 \ + --hash=sha256:adb31d4c263f2bd041081ab33b498309a57c77f9acf2db65aadf0898179cf93a + # via streamlit +toml==0.10.2 \ + --hash=sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b \ + --hash=sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f + # via streamlit +tomli==2.4.1 ; python_full_version <= '3.11' \ + --hash=sha256:01f520d4f53ef97964a240a035ec2a869fe1a37dde002b57ebc4417a27ccd853 \ + --hash=sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe \ + --hash=sha256:136443dbd7e1dee43c68ac2694fde36b2849865fa258d39bf822c10e8068eac5 \ + --hash=sha256:1d8591993e228b0c930c4bb0db464bdad97b3289fb981255d6c9a41aedc84b2d \ + --hash=sha256:2190f2e9dd7508d2a90ded5ed369255980a1bcdd58e52f7fe24b8162bf9fedbd \ + --hash=sha256:2c1c351919aca02858f740c6d33adea0c5deea37f9ecca1cc1ef9e884a619d26 \ + --hash=sha256:36d2bd2ad5fb9eaddba5226aa02c8ec3fa4f192631e347b3ed28186d43be6b54 \ + --hash=sha256:3d48a93ee1c9b79c04bb38772ee1b64dcf18ff43085896ea460ca8dec96f35f6 \ + --hash=sha256:47149d5bd38761ac8be13a84864bf0b7b70bc051806bc3669ab1cbc56216b23c \ + --hash=sha256:4ab97e64ccda8756376892c53a72bd1f964e519c77236368527f758fbc36a53a \ + --hash=sha256:4b605484e43cdc43f0954ddae319fb75f04cc10dd80d830540060ee7cd0243cd \ + --hash=sha256:504aa796fe0569bb43171066009ead363de03675276d2d121ac1a4572397870f \ + --hash=sha256:51529d40e3ca50046d7606fa99ce3956a617f9b36380da3b7f0dd3dd28e68cb5 \ + --hash=sha256:52c8ef851d9a240f11a88c003eacb03c31fc1c9c4ec64a99a0f922b93874fda9 \ + --hash=sha256:559db847dc486944896521f68d8190be1c9e719fced785720d2216fe7022b662 \ + --hash=sha256:5a881ab208c0baf688221f8cecc5401bd291d67e38a1ac884d6736cbcd8247e9 \ + --hash=sha256:5cb41aa38891e073ee49d55fbc7839cfdb2bc0e600add13874d048c94aadddd1 \ + --hash=sha256:5e262d41726bc187e69af7825504c933b6794dc3fbd5945e41a79bb14c31f585 \ + --hash=sha256:5ee18d9ebdb417e384b58fe414e8d6af9f4e7a0ae761519fb50f721de398dd4e \ + --hash=sha256:7008df2e7655c495dd12d2a4ad038ff878d4ca4b81fccaf82b714e07eae4402c \ + --hash=sha256:734e20b57ba95624ecf1841e72b53f6e186355e216e5412de414e3c51e5e3c41 \ + --hash=sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f \ + --hash=sha256:7f86fd587c4ed9dd76f318225e7d9b29cfc5a9d43de44e5754db8d1128487085 \ + --hash=sha256:7f94b27a62cfad8496c8d2513e1a222dd446f095fca8987fceef261225538a15 \ + --hash=sha256:88dceee75c2c63af144e456745e10101eb67361050196b0b6af5d717254dddf7 \ + --hash=sha256:8a650c2dbafa08d42e51ba0b62740dae4ecb9338eefa093aa5c78ceb546fcd5c \ + --hash=sha256:8d65a2fbf9d2f8352685bc1364177ee3923d6baf5e7f43ea4959d7d8bc326a36 \ + --hash=sha256:96481a5786729fd470164b47cdb3e0e58062a496f455ee41b4403be77cb5a076 \ + --hash=sha256:a120733b01c45e9a0c34aeef92bf0cf1d56cfe81ed9d47d562f9ed591a9828ac \ + --hash=sha256:b1d22e6e9387bf4739fbe23bfa80e93f6b0373a7f1b96c6227c32bef95a4d7a8 \ + --hash=sha256:b8c198f8c1805dc42708689ed6864951fd2494f924149d3e4bce7710f8eb5232 \ + --hash=sha256:c2541745709bad0264b7d4705ad453b76ccd191e64aa6f0fc66b69a293a45ece \ + --hash=sha256:c742f741d58a28940ce01d58f0ab2ea3ced8b12402f162f4d534dfe18ba1cd6a \ + --hash=sha256:c7f2c7f2b9ca6bdeef8f0fa897f8e05085923eb091721675170254cbc5b02897 \ + --hash=sha256:d312ef37c91508b0ab2cee7da26ec0b3ed2f03ce12bd87a588d771ae15dcf82d \ + --hash=sha256:d4d8fe59808a54658fcc0160ecfb1b30f9089906c50b23bcb4c69eddc19ec2b4 \ + --hash=sha256:da25dc3563bff5965356133435b757a795a17b17d01dbc0f42fb32447ddfd917 \ + --hash=sha256:eab21f45c7f66c13f2a9e0e1535309cee140182a9cdae1e041d02e47291e8396 \ + --hash=sha256:eb0dc4e38e6a1fd579e5d50369aa2e10acfc9cace504579b2faabb478e76941a \ + --hash=sha256:ec9bfaf3ad2df51ace80688143a6a4ebc09a248f6ff781a9945e51937008fcbc \ + --hash=sha256:ede3e6487c5ef5d28634ba3f31f989030ad6af71edfb0055cbbd14189ff240ba \ + --hash=sha256:f3c6818a1a86dd6dca7ddcaaf76947d5ba31aecc28cb1b67009a5877c9a64f3f \ + --hash=sha256:f758f1b9299d059cc3f6546ae2af89670cb1c4d48ea29c3cacc4fe7de3058257 \ + --hash=sha256:f8f0fc26ec2cc2b965b7a3b87cd19c5c6b8c5e5f436b984e85f486d652285c30 \ + --hash=sha256:fd0409a3653af6c147209d267a0e4243f0ae46b011aa978b1080359fddc9b6cf \ + --hash=sha256:ff18e6a727ee0ab0388507b89d1bc6a22b138d1e2fa56d1ad494586d61d2eae9 \ + --hash=sha256:ff2983983d34813c1aeb0fa89091e76c3a22889ee83ab27c5eeb45100560c049 + # via coverage +trove-classifiers==2026.6.1.19 \ + --hash=sha256:ab4c4ec93cc4a4e7815fa759906e05e6bb3f2fbd92ea0f897288c6a43efd15b3 \ + --hash=sha256:c5132b4b61a829d11cfbd2d72e97f20a45ed6edb95e45c5efdeb5e00836b2745 + # via hatchling +typing-extensions==4.15.0 \ + --hash=sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466 \ + --hash=sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548 + # via + # altair + # anyio + # dash + # mcp + # pydantic + # pydantic-core + # pytest-asyncio + # referencing + # starlette + # streamlit + # typing-inspection +typing-inspection==0.4.2 \ + --hash=sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7 \ + --hash=sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464 + # via + # mcp + # pydantic + # pydantic-settings +tzdata==2026.2 ; sys_platform == 'emscripten' or sys_platform == 'win32' \ + --hash=sha256:9173fde7d80d9018e02a662e168e5a2d04f87c41ea174b139fbef642eda62d10 \ + --hash=sha256:bbe9af844f658da81a5f95019480da3a89415801f6cc966806612cc7169bffe7 + # via pandas +urllib3==2.7.0 \ + --hash=sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c \ + --hash=sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897 + # via requests +uvicorn==0.49.0 \ + --hash=sha256:ba3d14c3ee7e41c6c654c46c9eb489d33213cdd30aa1696eab1374337c13f68f \ + --hash=sha256:ebf4271aa580d9de97f93192d4595176df6e91f9aae919ca73e4fc07df1e66a3 + # via + # mcp + # streamlit +verspec==0.1.0 \ + --hash=sha256:741877d5633cc9464c45a469ae2a31e801e6dbbaa85b9675d481cda100f11c31 \ + --hash=sha256:c4504ca697b2056cdb4bfa7121461f5a0e81809255b41c03dda4ba823637c01e + # via mike +waitress==3.0.2 \ + --hash=sha256:682aaaf2af0c44ada4abfb70ded36393f0e307f4ab9456a215ce0020baefc31f \ + --hash=sha256:c56d67fd6e87c2ee598b76abdd4e96cfad1f24cacdea5078d382b1f9d7b5ed2e + # via trendify +watchdog==6.0.0 \ + --hash=sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a \ + --hash=sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2 \ + --hash=sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f \ + --hash=sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c \ + --hash=sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c \ + --hash=sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c \ + --hash=sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0 \ + --hash=sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13 \ + --hash=sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134 \ + --hash=sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e \ + --hash=sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379 \ + --hash=sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282 \ + --hash=sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b \ + --hash=sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f \ + --hash=sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c \ + --hash=sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948 \ + --hash=sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860 \ + --hash=sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680 \ + --hash=sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26 \ + --hash=sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2 + # via + # mkdocs + # properdocs + # streamlit +websockets==16.0 \ + --hash=sha256:0298d07ee155e2e9fda5be8a9042200dd2e3bb0b8a38482156576f863a9d457c \ + --hash=sha256:08d7af67b64d29823fed316505a89b86705f2b7981c07848fb5e3ea3020c1abe \ + --hash=sha256:152284a83a00c59b759697b7f9e9cddf4e3c7861dd0d964b472b70f78f89e80e \ + --hash=sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec \ + --hash=sha256:19c4dc84098e523fd63711e563077d39e90ec6702aff4b5d9e344a60cb3c0cb1 \ + --hash=sha256:1c1b30e4f497b0b354057f3467f56244c603a79c0d1dafce1d16c283c25f6e64 \ + --hash=sha256:31a52addea25187bde0797a97d6fc3d2f92b6f72a9370792d65a6e84615ac8a8 \ + --hash=sha256:32da954ffa2814258030e5a57bc73a3635463238e797c7375dc8091327434206 \ + --hash=sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156 \ + --hash=sha256:349f83cd6c9a415428ee1005cadb5c2c56f4389bc06a9af16103c3bc3dcc8b7d \ + --hash=sha256:417b28978cdccab24f46400586d128366313e8a96312e4b9362a4af504f3bbad \ + --hash=sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2 \ + --hash=sha256:4a1aba3340a8dca8db6eb5a7986157f52eb9e436b74813764241981ca4888f03 \ + --hash=sha256:50f23cdd8343b984957e4077839841146f67a3d31ab0d00e6b824e74c5b2f6e8 \ + --hash=sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230 \ + --hash=sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8 \ + --hash=sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea \ + --hash=sha256:569d01a4e7fba956c5ae4fc988f0d4e187900f5497ce46339c996dbf24f17641 \ + --hash=sha256:5a4b4cc550cb665dd8a47f868c8d04c8230f857363ad3c9caf7a0c3bf8c61ca6 \ + --hash=sha256:5f451484aeb5cafee1ccf789b1b66f535409d038c56966d6101740c1614b86c6 \ + --hash=sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5 \ + --hash=sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f \ + --hash=sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00 \ + --hash=sha256:781caf5e8eee67f663126490c2f96f40906594cb86b408a703630f95550a8c3e \ + --hash=sha256:7be95cfb0a4dae143eaed2bcba8ac23f4892d8971311f1b06f3c6b78952ee70b \ + --hash=sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39 \ + --hash=sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9 \ + --hash=sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79 \ + --hash=sha256:8cc451a50f2aee53042ac52d2d053d08bf89bcb31ae799cb4487587661c038a0 \ + --hash=sha256:8d7f0659570eefb578dacde98e24fb60af35350193e4f56e11190787bee77dac \ + --hash=sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5 \ + --hash=sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c \ + --hash=sha256:a069d734c4a043182729edd3e9f247c3b2a4035415a9172fd0f1b71658a320a8 \ + --hash=sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1 \ + --hash=sha256:a35539cacc3febb22b8f4d4a99cc79b104226a756aa7400adc722e83b0d03244 \ + --hash=sha256:a5e18a238a2b2249c9a9235466b90e96ae4795672598a58772dd806edc7ac6d3 \ + --hash=sha256:a653aea902e0324b52f1613332ddf50b00c06fdaf7e92624fbf8c77c78fa5767 \ + --hash=sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a \ + --hash=sha256:af80d74d4edfa3cb9ed973a0a5ba2b2a549371f8a741e0800cb07becdd20f23d \ + --hash=sha256:b14dc141ed6d2dde437cddb216004bcac6a1df0935d79656387bd41632ba0bbd \ + --hash=sha256:b784ca5de850f4ce93ec85d3269d24d4c82f22b7212023c974c401d4980ebc5e \ + --hash=sha256:bc59589ab64b0022385f429b94697348a6a234e8ce22544e3681b2e9331b5944 \ + --hash=sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82 \ + --hash=sha256:c0ee0e63f23914732c6d7e0cce24915c48f3f1512ec1d079ed01fc629dab269d \ + --hash=sha256:caab51a72c51973ca21fa8a18bd8165e1a0183f1ac7066a182ff27107b71e1a4 \ + --hash=sha256:d6297ce39ce5c2e6feb13c1a996a2ded3b6832155fcfc920265c76f24c7cceb5 \ + --hash=sha256:daa3b6ff70a9241cf6c7fc9e949d41232d9d7d26fd3522b1ad2b4d62487e9904 \ + --hash=sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f \ + --hash=sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c \ + --hash=sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89 \ + --hash=sha256:f4a32d1bd841d4bcbffdcb3d2ce50c09c3909fbead375ab28d0181af89fd04da \ + --hash=sha256:fd3cb4adb94a2a6e2b7c0d8d05cb94e6f1c81a0cf9dc2694fb65c7e8d94c42e4 + # via streamlit +werkzeug==3.1.8 \ + --hash=sha256:63a77fb8892bf28ebc3178683445222aa500e48ebad5ec77b0ad80f8726b1f50 \ + --hash=sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44 + # via + # dash + # flask +zipp==4.1.0 \ + --hash=sha256:25ad4e16390cd314347dd8f1de67a2ac538ae658ed4ab9db16029c07c188e97f \ + --hash=sha256:4cb57381f544315db7688e976e922a2b18cdb513d21cc194eb42232ba2a3e602 + # via importlib-metadata diff --git a/src/trendify/cli.py b/src/trendify/cli.py index 5163fdd..b325ebf 100644 --- a/src/trendify/cli.py +++ b/src/trendify/cli.py @@ -14,7 +14,7 @@ import os from pathlib import Path import sys -from typing import List, Iterable +from collections.abc import Iterable import logging import matplotlib.pyplot as plt @@ -25,7 +25,6 @@ from trendify.api import api from trendify.api.base.helpers import DATA_PRODUCTS_FNAME_DEFAULT -from trendify.local_server import TrendifyProductServerLocal from trendify.streamlit import make_streamlit __all__ = [] @@ -120,6 +119,7 @@ def process_argument(arg: str): Returns; (int): Number of processes capped to `5*os.cpu_count()` + """ n_proc = int(arg) @@ -184,6 +184,7 @@ def process_argument(arg: str) -> api.ProductGenerator: Returns: (Callable): User-specified method to be mapped over raw data directories. + """ msplit = arg.split(":") assert 1 <= len(msplit) <= 2 @@ -243,6 +244,7 @@ def process_argument(arg: str) -> str: Returns: (str): String (file name to be used for generated data products) + """ return str(arg) @@ -255,7 +257,7 @@ class InputDirectories: _NAME = "input-directories" @classmethod - def get_from_namespace(cls, namespace: argparse.Namespace) -> List[Path]: + def get_from_namespace(cls, namespace: argparse.Namespace) -> list[Path]: return cls.process_argument(getattr(namespace, cls._NAME.replace("-", "_"))) @classmethod @@ -272,7 +274,7 @@ def add_argument(cls, parser: argparse.ArgumentParser): ) @staticmethod - def process_argument(arg: str) -> List[Path]: + def process_argument(arg: str) -> list[Path]: """ Converts CLI input to list of directories over which user-specified data product generator method will be mapped. @@ -281,6 +283,7 @@ def process_argument(arg: str) -> List[Path]: Returns: (List[Path]): List of directories over which to map the user-specified product generator + """ if isinstance(arg, str): return [ @@ -334,6 +337,7 @@ def process_argument(self, arg: str) -> FileManager: Returns: (FileManager): List of directories over which to map the user-specified product generator + """ return FileManager(output_dir=Path(arg).resolve()) @@ -347,8 +351,8 @@ def trendify(*pargs): Args: *pargs (list[Any]): List of flags and arguments to pass to commandline. Simulates running from commandline in pythong script. - """ + """ # Main parser parser = argparse.ArgumentParser( prog="trendify", From 5c5a3b5e8e45cad2d57db9a04194b9908da3ff4b Mon Sep 17 00:00:00 2001 From: David Gable Date: Fri, 3 Jul 2026 16:21:01 -0700 Subject: [PATCH 03/19] Beginning refactor --- .pre-commit-config.yaml | 14 +- benchmarks/stress_test.py | 139 + pyproject.toml | 42 +- requirements.txt | 1591 +----- rewrite_reference/OVERVIEW.md | 390 ++ rewrite_reference/dump_schemas.py | 48 + rewrite_reference/pydantic_schemas.json | 4479 +++++++++++++++++ src/trendify/__init__.py | 124 +- src/trendify/base/__init__.py | 34 + src/trendify/base/data_product.py | 138 + src/trendify/base/helpers.py | 68 + src/trendify/base/pen.py | 136 + src/trendify/formats/__init__.py | 22 + src/trendify/formats/format2d.py | 152 + src/trendify/formats/table.py | 50 + src/trendify/plotting/__init__.py | 40 + src/trendify/plotting/axline.py | 123 + src/trendify/plotting/figure.py | 339 ++ src/trendify/plotting/histogram.py | 249 + src/trendify/plotting/point.py | 89 + src/trendify/plotting/trace.py | 186 + src/trendify/store/__init__.py | 26 + src/trendify/store/db.py | 109 + src/trendify/store/product_store.py | 300 ++ src/trendify/store/tags.py | 51 + src/trendify/styling/__init__.py | 28 + src/trendify/styling/grid.py | 149 + src/trendify/styling/legend.py | 179 + src/trendify/styling/marker.py | 163 + src/trendify_old/__init__.py | 6 + .../api/__init__.py | 0 src/{trendify => trendify_old}/api/api.py | 0 .../api/base/__init__.py | 0 .../api/base/data_product.py | 2 +- .../api/base/helpers.py | 0 .../api/base/pen.py | 0 .../api/formats/__init__.py | 0 .../api/formats/format2d.py | 0 .../api/formats/table.py | 0 .../api/generator/__init__.py | 0 .../api/generator/data_product_collection.py | 94 +- .../api/generator/data_product_generator.py | 0 .../api/generator/histogrammer.py | 0 .../api/generator/table_builder.py | 2 +- .../api/generator/xy_data_plotter.py | 16 +- .../api/plotting/__init__.py | 0 .../api/plotting/axline.py | 0 .../api/plotting/histogram.py | 4 +- .../api/plotting/plotting.py | 0 .../api/plotting/point.py | 0 .../api/plotting/trace.py | 0 .../api/styling/__init__.py | 0 .../api/styling/grid.py | 0 .../api/styling/legend.py | 0 .../api/styling/marker.py | 0 .../assets/logo.svg | 0 .../assets/logo_white_bg.svg | 0 src/{trendify => trendify_old}/cli.py | 0 src/{trendify => trendify_old}/examples.py | 0 src/{trendify => trendify_old}/gallery.py | 0 .../local_server.py | 0 .../plotly_dashboard.py | 54 +- .../production_server.py | 0 src/{trendify => trendify_old}/server.py | 0 src/{trendify => trendify_old}/streamlit.py | 0 tests/test.sh | 25 - tests/test2.sh | 16 - tests/test_basic.py | 8 - tests/test_product_store.py | 171 + tests/unittests.py | 137 - uv.lock | 2366 +-------- 71 files changed, 8219 insertions(+), 4140 deletions(-) create mode 100644 benchmarks/stress_test.py create mode 100644 rewrite_reference/OVERVIEW.md create mode 100644 rewrite_reference/dump_schemas.py create mode 100644 rewrite_reference/pydantic_schemas.json create mode 100644 src/trendify/base/__init__.py create mode 100644 src/trendify/base/data_product.py create mode 100644 src/trendify/base/helpers.py create mode 100644 src/trendify/base/pen.py create mode 100644 src/trendify/formats/__init__.py create mode 100644 src/trendify/formats/format2d.py create mode 100644 src/trendify/formats/table.py create mode 100644 src/trendify/plotting/__init__.py create mode 100644 src/trendify/plotting/axline.py create mode 100644 src/trendify/plotting/figure.py create mode 100644 src/trendify/plotting/histogram.py create mode 100644 src/trendify/plotting/point.py create mode 100644 src/trendify/plotting/trace.py create mode 100644 src/trendify/store/__init__.py create mode 100644 src/trendify/store/db.py create mode 100644 src/trendify/store/product_store.py create mode 100644 src/trendify/store/tags.py create mode 100644 src/trendify/styling/__init__.py create mode 100644 src/trendify/styling/grid.py create mode 100644 src/trendify/styling/legend.py create mode 100644 src/trendify/styling/marker.py create mode 100644 src/trendify_old/__init__.py rename src/{trendify => trendify_old}/api/__init__.py (100%) rename src/{trendify => trendify_old}/api/api.py (100%) rename src/{trendify => trendify_old}/api/base/__init__.py (100%) rename src/{trendify => trendify_old}/api/base/data_product.py (98%) rename src/{trendify => trendify_old}/api/base/helpers.py (100%) rename src/{trendify => trendify_old}/api/base/pen.py (100%) rename src/{trendify => trendify_old}/api/formats/__init__.py (100%) rename src/{trendify => trendify_old}/api/formats/format2d.py (100%) rename src/{trendify => trendify_old}/api/formats/table.py (100%) rename src/{trendify => trendify_old}/api/generator/__init__.py (100%) rename src/{trendify => trendify_old}/api/generator/data_product_collection.py (93%) rename src/{trendify => trendify_old}/api/generator/data_product_generator.py (100%) rename src/{trendify => trendify_old}/api/generator/histogrammer.py (100%) rename src/{trendify => trendify_old}/api/generator/table_builder.py (98%) rename src/{trendify => trendify_old}/api/generator/xy_data_plotter.py (93%) rename src/{trendify => trendify_old}/api/plotting/__init__.py (100%) rename src/{trendify => trendify_old}/api/plotting/axline.py (100%) rename src/{trendify => trendify_old}/api/plotting/histogram.py (98%) rename src/{trendify => trendify_old}/api/plotting/plotting.py (100%) rename src/{trendify => trendify_old}/api/plotting/point.py (100%) rename src/{trendify => trendify_old}/api/plotting/trace.py (100%) rename src/{trendify => trendify_old}/api/styling/__init__.py (100%) rename src/{trendify => trendify_old}/api/styling/grid.py (100%) rename src/{trendify => trendify_old}/api/styling/legend.py (100%) rename src/{trendify => trendify_old}/api/styling/marker.py (100%) rename src/{trendify => trendify_old}/assets/logo.svg (100%) rename src/{trendify => trendify_old}/assets/logo_white_bg.svg (100%) rename src/{trendify => trendify_old}/cli.py (100%) rename src/{trendify => trendify_old}/examples.py (100%) rename src/{trendify => trendify_old}/gallery.py (100%) rename src/{trendify => trendify_old}/local_server.py (100%) rename src/{trendify => trendify_old}/plotly_dashboard.py (96%) rename src/{trendify => trendify_old}/production_server.py (100%) rename src/{trendify => trendify_old}/server.py (100%) rename src/{trendify => trendify_old}/streamlit.py (100%) delete mode 100644 tests/test.sh delete mode 100755 tests/test2.sh delete mode 100644 tests/test_basic.py create mode 100644 tests/test_product_store.py delete mode 100644 tests/unittests.py diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index afbe37a..560e980 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,22 +4,26 @@ repos: hooks: - id: check-added-large-files args: ["--maxkb=500"] + - repo: local + hooks: + - id: mkinit + name: auto-generate __init__.py files + entry: uv run mkinit + args: ["src/trendify", "-w", "--recursive"] + language: system + files: ^(src/trendify.*\.py)$ + pass_filenames: false - repo: https://github.com/astral-sh/ruff-pre-commit - # Ruff version. rev: v0.15.17 hooks: - # Run the linter. - id: ruff-check args: [--fix] - # Run the formatter. - id: ruff-format - repo: https://github.com/astral-sh/uv-pre-commit - # uv version. rev: 0.11.21 hooks: - id: uv-lock - repo: https://github.com/astral-sh/uv-pre-commit - # uv version. rev: 0.11.21 hooks: - id: uv-export diff --git a/benchmarks/stress_test.py b/benchmarks/stress_test.py new file mode 100644 index 0000000..88a6fb5 --- /dev/null +++ b/benchmarks/stress_test.py @@ -0,0 +1,139 @@ +""" +M1 concurrency stress test (the go/no-go gate for skipping the two-phase per-run-file -> merge +design, per the v2 architecture plan). Simulates N worker processes, each writing many runs' +worth of products directly to one shared SQLite `.db` file via `ProductStore.write_run`, and +measures wall-clock throughput plus checks for `SQLITE_BUSY` failures under `busy_timeout`. + +Uses the same synthetic workload shape as `bench_v1.py` (5 tags, ~42 products/run: 40 Point2D + +5 TableEntry + 5 HistogramEntry + 1 multi-tag Trace2D + 1 AxLine) for an apples-to-apples +comparison against v1's generate+sort pipeline. + +Run with the v2 venv: + + PYTHONPATH=src/v2 .venv-v2/bin/python src/v2/benchmarks/stress_test.py \ + --n-runs 10000 --n-procs 8 +""" + +from __future__ import annotations + +import argparse +import json +import time +from concurrent.futures import ProcessPoolExecutor +from pathlib import Path + +from trendify.base.pen import Pen +from trendify.plotting.axline import AxLine, LineOrientation +from trendify.plotting.histogram import HistogramEntry +from trendify.plotting.point import Point2D +from trendify.plotting.trace import Trace2D +from trendify.formats.table import TableEntry +from trendify.store.product_store import ProductStore + +TAGS = ["tag0", "tag1", "tag2", "tag3", "tag4"] + +_store: ProductStore | None = None + + +def _init_worker(db_path: str) -> None: + global _store + _store = ProductStore.open(Path(db_path)) + + +def _build_products(run_id: int): + products = [] + for i, tag in enumerate(TAGS): + for j in range(8): + products.append( + Point2D(tags=[tag], x=float(run_id + i + j), y=float(i * j)) + ) + products.append( + TableEntry(tags=[tag], row=f"r{run_id}", col=f"c{j}", value=float(run_id)) + ) + products.append(HistogramEntry(tags=[tag], value=float(run_id % 17))) + products.append( + Trace2D.from_xy( + tags=[TAGS[0], TAGS[1]], + x=list(range(20)), + y=[float(v * run_id) for v in range(20)], + pen=Pen(label="trace"), + ) + ) + products.append( + AxLine( + tags=[TAGS[2]], + value=1.0, + orientation=LineOrientation.HORIZONTAL, + pen=Pen(), + ) + ) + return products + + +def _write_one_run(run_id: int) -> tuple[int, str | None]: + assert _store is not None + try: + n = _store.write_run(Path(f"/synthetic/run/{run_id}"), _build_products(run_id)) + return n, None + except Exception as e: + return 0, f"{type(e).__name__}: {e}" + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--n-runs", type=int, default=10000) + parser.add_argument("--n-procs", type=int, default=8) + parser.add_argument( + "--db-path", type=str, default="/tmp/trendify_bench_v2/trendify.db" + ) + args = parser.parse_args() + + db_path = Path(args.db_path) + if db_path.parent.exists(): + for f in db_path.parent.glob("trendify.db*"): + f.unlink() + db_path.parent.mkdir(parents=True, exist_ok=True) + + # Bootstrap schema once, up front, from the main process, before workers race to open it. + ProductStore.open(db_path).close() + + t0 = time.perf_counter() + errors = [] + total_written = 0 + with ProcessPoolExecutor( + max_workers=args.n_procs, + initializer=_init_worker, + initargs=(str(db_path),), + ) as executor: + for n, err in executor.map(_write_one_run, range(args.n_runs), chunksize=32): + total_written += n + if err: + errors.append(err) + t1 = time.perf_counter() + + with ProductStore.open(db_path, readonly=True) as store: + (run_count,) = store._conn.execute("SELECT COUNT(*) FROM runs").fetchone() + (product_count,) = store._conn.execute( + "SELECT COUNT(*) FROM products" + ).fetchone() + (tag_row_count,) = store._conn.execute( + "SELECT COUNT(*) FROM product_tags" + ).fetchone() + + result = { + "n_runs": args.n_runs, + "n_procs": args.n_procs, + "write_seconds": t1 - t0, + "products_written_reported": total_written, + "runs_in_db": run_count, + "products_in_db": product_count, + "product_tag_rows_in_db": tag_row_count, + "db_file_size_bytes": db_path.stat().st_size, + "n_errors": len(errors), + "sample_errors": errors[:5], + } + print(json.dumps(result, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml index 012b0d1..64f50b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,22 +9,14 @@ description = "Tools for generating data products, storing, and interacting with readme = "README.md" requires-python = ">=3.11" dependencies = [ - "dash>=4.3.0", - "filelock>=3.29.4", - "flask>=3.1.3", - "grafana-api>=1.0.3", - "jinja2>=3.1.6", "matplotlib>=3.11.0", "numpy>=2.4.6", "numpydantic>=1.10.0", - "pandas>=3.0.3", "plotly>=6.8.0", + "polars>=1.42.1", "pydantic>=2.13.4", - "scipy>=1.17.1", - "streamlit>=1.58.0", - "strenum>=0.4.15", - "supervisor>=4.3.0", - "waitress>=3.0.2", + "rich>=15.0.0", + "typer>=0.26.8", ] keywords = ["Data", "Products", "Process", "Post", "Database"] @@ -103,7 +95,7 @@ ignore = [ [tool.pyright] stubPath = "typings" -venvPath = ".." +venvPath = "." venv = ".venv" ignore = ["typings"] @@ -112,32 +104,8 @@ exclude_also = ["if __name__ == .__main__.:", "@(abc\\.)?abstractmethod"] [dependency-groups] dev = [ - "black>=26.5.1", - "flake8>=7.3.0", - "griffe-pydantic>=1.3.1", - "hatchling>=1.30.1", - "isort>=8.0.1", - "markdown-callouts>=0.4.0", - "markdown-include>=0.8.1", - "mdx-gh-links>=0.4", - "mike>=2.2.0", - "mkdocs>=1.6.1", - "mkdocs-autorefs>=1.4.4", - "mkdocs-click>=0.9.0", - "mkdocs-exclude>=1.0.2", - "mkdocs-gen-files>=0.6.1", - "mkdocs-glightbox>=0.5.2", - "mkdocs-literate-nav>=0.6.3", - "mkdocs-material>=9.7.6", - "mkdocs-redirects>=1.2.3", - "mkdocs-section-index>=0.3.12", - "mkdocs-snippets>=1.3.2", - "mkdocstrings>=1.0.4", - "mkdocstrings-python>=2.0.5", - "pymdown-extensions>=11.0", + "mkinit>=1.2.0", "pytest>=9.1.1", - "pytest-asyncio>=1.4.0", - "pytest-cov>=7.1.0", ] [project.urls] diff --git a/requirements.txt b/requirements.txt index 9b77c05..0d99763 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,247 +1,20 @@ # This file was autogenerated by uv via the following command: # uv export --frozen --output-file=requirements.txt -e . -altair==6.2.2 \ - --hash=sha256:94014f8ad8617c3cb163d1137359cd6db5ba134b9b46d93cfd8b609fd245a583 \ - --hash=sha256:a1ff9d9cfe81c75414641826312b9471780e19d39293ba0b012933f6b6cba0fe - # via streamlit +annotated-doc==0.0.4 \ + --hash=sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320 \ + --hash=sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4 + # via typer annotated-types==0.7.0 \ --hash=sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 \ --hash=sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89 # via pydantic -anyio==4.14.1 \ - --hash=sha256:4e5533c5b8ff0a24f5d7a176cbe6877129cd183893f66b537f8f227d10527d72 \ - --hash=sha256:8d648a3544c1a700e3ff78615cd679e4c5c3f149904287e73687b2596963629e - # via - # httpx - # mcp - # sse-starlette - # starlette - # streamlit -attrs==26.1.0 \ - --hash=sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309 \ - --hash=sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32 - # via - # jsonschema - # referencing -babel==2.18.0 \ - --hash=sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d \ - --hash=sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35 - # via mkdocs-material -backrefs==7.0 \ - --hash=sha256:4989bb9e1e99eb23647c7160ed51fb21d0b41b5d200f2d3017da41e023097e82 \ - --hash=sha256:a0fa7360c63509e9e077e174ef4e6d3c21c8db94189b9d957289ae6d794b9475 \ - --hash=sha256:a6448b28180e3ca01134c9cf09dcebafad8531072e09903c5451748a05f24bc9 \ - --hash=sha256:b57cd227ea556b0aed3dc9b8da4628db4eabc0402c6d7fcfc69283a93955f7e9 \ - --hash=sha256:ca42ce6a49ace3d75684dfa9937f3373902a63284ecb385ce36d15e5dcb41c12 \ - --hash=sha256:f2c52955d631b9e1ac4cd56209f0a3a946d592b98e7790e77699339ae01c102a - # via mkdocs-material -black==26.5.1 \ - --hash=sha256:0e48b87e03bf109288e55cfceadcfa15ff5470aca2851a851950ed2926f450d7 \ - --hash=sha256:1037d5ac7b7b310b2632ad867ec8d0e4c4819dcdb0b820f63135da746a24e418 \ - --hash=sha256:1ef92b76f7733f282fd096ea406200b5a286c42947412b0eaff3a74e3616cefe \ - --hash=sha256:1f7ea64ebfa01b50f693508fc39f875e264446d3b097088f84f203b9d09618a0 \ - --hash=sha256:2b36cf2ddf5566e205f6535f782a62194a184d33e175b64ae8c40b1737522be3 \ - --hash=sha256:30d3c14661f2792e9142cce3eeeb1cbc175b3eb5f733be0c8eeb99651e52b0c3 \ - --hash=sha256:32d5ea7f6c8bdfa6e648326ebca1f02b0764e2a029edc6f8dce2627e19d468c3 \ - --hash=sha256:3915f256e75a2d7cf88d8953d37f780455dc586cc72dee059c528fe77f581217 \ - --hash=sha256:4ad6fa01f941920f54f2bbb35f3df7673428a0ef98a0b0840c2eaef3b110efa8 \ - --hash=sha256:4ed7f7da04046d2e488437170797d3b4a4ad83906683bcb7dfc68b673bbce5e2 \ - --hash=sha256:5119fa92ae61f786e8c3662fd60aece1d0a2dd5cca5d0c79417a95e7a4272a59 \ - --hash=sha256:577f21094ea469ef92ec1adaf2c9441a226d2144d01a5be2fa823cecf6543e50 \ - --hash=sha256:5c34b25da232ead53a6f335b76dbea124f4d152ad568b9080d6f944bc2b34b52 \ - --hash=sha256:96ae2c733b2aabdd9986e2c5df628ff3473676cd1c5faded1ff496cf6d74083c \ - --hash=sha256:9d98d4137277c75dfb898ec8d846c4fd68ba1e9cf77f95e2865c203dc18f4c3d \ - --hash=sha256:a1dca32d9f1784af512a13410ec204c6f7f0aa9797a111c42e1c03449821c264 \ - --hash=sha256:dd321f668053961824bcc1be1cc1df748b2d7e4fa28086b08331e577b0100a73 \ - --hash=sha256:e1a26503279b6b310669fb0b219c39e4820b77e8189fe80f522bb511f247db0a \ - --hash=sha256:e88976690a64b0af98312ca958415849cb42423423c5f2ee74af4b49a97a2168 \ - --hash=sha256:ea8d16dc41655aa113cd64665e7219446cd7e4ff2248d7178eaa905190c86b18 \ - --hash=sha256:ecb3e624844c798144e9bd986954e0adc81d8911a1f30f375e1252fe26e8c294 \ - --hash=sha256:ed1a20af114c301a0269bf01163d51dbef72737fd65f850001e7cbe7f3c7abae -blinker==1.9.0 \ - --hash=sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf \ - --hash=sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc - # via - # flask - # streamlit -cachetools==7.1.4 \ - --hash=sha256:323dc4127934744db5b54eb4924482d7edafbf9554e820d1531c2e08c0e4ef54 \ - --hash=sha256:437f55a4e0c1b01a4f3077cc470e6991d47430970e36fbcb77e2be0df4fc1cd6 - # via streamlit -certifi==2026.6.17 \ - --hash=sha256:024c88eeec92ca068db80f02b8b07c9cef7b9fe261d1d535abfd5abd6f6af432 \ - --hash=sha256:2227dcbaafe0d2f59279d1762ddddc37783ed4354594f194ffc31d20f41fc3db - # via - # httpcore - # httpx - # requests -cffi==2.0.0 ; platform_python_implementation != 'PyPy' \ - --hash=sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb \ - --hash=sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b \ - --hash=sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f \ - --hash=sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9 \ - --hash=sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c \ - --hash=sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75 \ - --hash=sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e \ - --hash=sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e \ - --hash=sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25 \ - --hash=sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe \ - --hash=sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b \ - --hash=sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91 \ - --hash=sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592 \ - --hash=sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187 \ - --hash=sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c \ - --hash=sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1 \ - --hash=sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94 \ - --hash=sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba \ - --hash=sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529 \ - --hash=sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca \ - --hash=sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6 \ - --hash=sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743 \ - --hash=sha256:66f011380d0e49ed280c789fbd08ff0d40968ee7b665575489afa95c98196ab5 \ - --hash=sha256:6824f87845e3396029f3820c206e459ccc91760e8fa24422f8b0c3d1731cbec5 \ - --hash=sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4 \ - --hash=sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d \ - --hash=sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b \ - --hash=sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93 \ - --hash=sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205 \ - --hash=sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27 \ - --hash=sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512 \ - --hash=sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d \ - --hash=sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c \ - --hash=sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037 \ - --hash=sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26 \ - --hash=sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c \ - --hash=sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8 \ - --hash=sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414 \ - --hash=sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9 \ - --hash=sha256:9de40a7b0323d889cf8d23d1ef214f565ab154443c42737dfe52ff82cf857664 \ - --hash=sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9 \ - --hash=sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775 \ - --hash=sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc \ - --hash=sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062 \ - --hash=sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe \ - --hash=sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92 \ - --hash=sha256:c649e3a33450ec82378822b3dad03cc228b8f5963c0c12fc3b1e0ab940f768a5 \ - --hash=sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13 \ - --hash=sha256:c6638687455baf640e37344fe26d37c404db8b80d037c3d29f58fe8d1c3b194d \ - --hash=sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26 \ - --hash=sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b \ - --hash=sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6 \ - --hash=sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c \ - --hash=sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef \ - --hash=sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5 \ - --hash=sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18 \ - --hash=sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad \ - --hash=sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3 \ - --hash=sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2 \ - --hash=sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5 - # via cryptography -charset-normalizer==3.4.7 \ - --hash=sha256:03853ed82eeebbce3c2abfdbc98c96dc205f32a79627688ac9a27370ea61a49c \ - --hash=sha256:08e721811161356f97b4059a9ba7bafb23ea5ee2255402c42881c214e173c6b4 \ - --hash=sha256:0c96c3b819b5c3e9e165495db84d41914d6894d55181d2d108cc1a69bfc9cce0 \ - --hash=sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c \ - --hash=sha256:0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5 \ - --hash=sha256:1a87ca9d5df6fe460483d9a5bbf2b18f620cbed41b432e2bddb686228282d10b \ - --hash=sha256:1c2a768fdd44ee4a9339a9b0b130049139b8ce3c01d2ce09f67f5a68048d477c \ - --hash=sha256:1c2aed2e5e41f24ea8ef1590b8e848a79b56f3a5564a65ceec43c9d692dc7d8a \ - --hash=sha256:202389074300232baeb53ae2569a60901f7efadd4245cf3a3bf0617d60b439d7 \ - --hash=sha256:203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb \ - --hash=sha256:2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c \ - --hash=sha256:298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1 \ - --hash=sha256:2d6eb928e13016cea4f1f21d1e10c1cebd5a421bc57ddf5b1142ae3f86824fab \ - --hash=sha256:2fe249cb4651fd12605b7288b24751d8bfd46d35f12a20b1ba33dea122e690df \ - --hash=sha256:30b8d1d8c52a48c2c5690e152c169b673487a2a58de1ec7393196753063fcd5e \ - --hash=sha256:3534e7dcbdcf757da6b85a0bbf5b6868786d5982dd959b065e65481644817a18 \ - --hash=sha256:38c0109396c4cfc574d502df99742a45c72c08eff0a36158b6f04000043dbf38 \ - --hash=sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110 \ - --hash=sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18 \ - --hash=sha256:3c9a494bc5ec77d43cea229c4f6db1e4d8fe7e1bbffa8b6f0f0032430ff8ab44 \ - --hash=sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d \ - --hash=sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48 \ - --hash=sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e \ - --hash=sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5 \ - --hash=sha256:4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d \ - --hash=sha256:532bc9bf33a68613fd7d65e4b1c71a6a38d7d42604ecf239c77392e9b4e8998c \ - --hash=sha256:54523e136b8948060c0fa0bc7b1b50c32c186f2fceee897a495406bb6e311d2b \ - --hash=sha256:5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116 \ - --hash=sha256:56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d \ - --hash=sha256:5b77459df20e08151cd6f8b9ef8ef1f961ef73d85c21a555c7eed5b79410ec10 \ - --hash=sha256:5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6 \ - --hash=sha256:6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2 \ - --hash=sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a \ - --hash=sha256:65bcd23054beab4d166035cabbc868a09c1a49d1efe458fe8e4361215df40265 \ - --hash=sha256:67f6279d125ca0046a7fd386d01b311c6363844deac3e5b069b514ba3e63c246 \ - --hash=sha256:6c114670c45346afedc0d947faf3c7f701051d2518b943679c8ff88befe14f8e \ - --hash=sha256:708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15 \ - --hash=sha256:715479b9a2802ecac752a3b0efa2b0b60285cf962ee38414211abdfccc233b41 \ - --hash=sha256:733784b6d6def852c814bce5f318d25da2ee65dd4839a0718641c696e09a2960 \ - --hash=sha256:752a45dc4a6934060b3b0dab47e04edc3326575f82be64bc4fc293914566503e \ - --hash=sha256:7579e913a5339fb8fa133f6bbcfd8e6749696206cf05acdbdca71a1b436d8e72 \ - --hash=sha256:7641bb8895e77f921102f72833904dcd9901df5d6d72a2ab8f31d04b7e51e4e7 \ - --hash=sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8 \ - --hash=sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b \ - --hash=sha256:8778f0c7a52e56f75d12dae53ae320fae900a8b9b4164b981b9c5ce059cd1fcb \ - --hash=sha256:8d828b6667a32a728a1ad1d93957cdf37489c57b97ae6c4de2860fa749b8fc1e \ - --hash=sha256:8e385e4267ab76874ae30db04c627faaaf0b509e1ccc11a95b3fc3e83f855c00 \ - --hash=sha256:92a0a01ead5e668468e952e4238cccd7c537364eb7d851ab144ab6627dbbe12f \ - --hash=sha256:a180c5e59792af262bf263b21a3c49353f25945d8d9f70628e73de370d55e1e1 \ - --hash=sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66 \ - --hash=sha256:a5fe03b42827c13cdccd08e6c0247b6a6d4b5e3cdc53fd1749f5896adcdc2356 \ - --hash=sha256:a89c23ef8d2c6b27fd200a42aa4ac72786e7c60d40efdc76e6011260b6e949c4 \ - --hash=sha256:adb2597b428735679446b46c8badf467b4ca5f5056aae4d51a19f9570301b1ad \ - --hash=sha256:ae196f021b5e7c78e918242d217db021ed2a6ace2bc6ae94c0fc596221c7f58d \ - --hash=sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5 \ - --hash=sha256:aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7 \ - --hash=sha256:bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49 \ - --hash=sha256:bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e \ - --hash=sha256:c03a41a8784091e67a39648f70c5f97b5b6a37f216896d44d2cdcb82615339a0 \ - --hash=sha256:c35abb8bfff0185efac5878da64c45dafd2b37fb0383add1be155a763c1f083d \ - --hash=sha256:c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0 \ - --hash=sha256:c45e9440fb78f8ddabcf714b68f936737a121355bf59f3907f4e17721b9d1aae \ - --hash=sha256:ce3412fbe1e31eb81ea42f4169ed94861c56e643189e1e75f0041f3fe7020abe \ - --hash=sha256:cf1493cd8607bec4d8a7b9b004e699fcf8f9103a9284cc94962cb73d20f9d4a3 \ - --hash=sha256:d4a48e5b3c2a489fae013b7589308a40146ee081f6f509e047e0e096084ceca1 \ - --hash=sha256:d6038d37043bced98a66e68d3aa2b6a35505dc01328cd65217cefe82f25def44 \ - --hash=sha256:d635aab80466bc95771bb78d5370e74d36d1fe31467b6b29b8b57b2a3cd7d22c \ - --hash=sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd \ - --hash=sha256:e060d01aec0a910bdccb8be71faf34e7799ce36950f8294c8bf612cba65a2c9e \ - --hash=sha256:e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b \ - --hash=sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859 \ - --hash=sha256:e74327fb75de8986940def6e8dee4f127cc9752bee7355bb323cc5b2659b6d46 \ - --hash=sha256:e8ac484bf18ce6975760921bb6148041faa8fef0547200386ea0b52b5d27bf7b \ - --hash=sha256:eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46 \ - --hash=sha256:edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a \ - --hash=sha256:effc3f449787117233702311a1b7d8f59cba9ced946ba727bdc329ec69028e24 \ - --hash=sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215 \ - --hash=sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063 \ - --hash=sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832 \ - --hash=sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6 \ - --hash=sha256:fbccdc05410c9ee21bbf16a35f4c1d16123dcdeb8a1d38f33654fa21d0234f79 \ - --hash=sha256:fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464 - # via requests -click==8.4.2 \ - --hash=sha256:9a6cea6e60b17ebe0a44c5cc636d94f09bd66142c1cd7d8b4cd731c4917a15f6 \ - --hash=sha256:e6f9f66136c816745b9d65817da91d61d957fb16e02e4dcd0552553c5a197b76 - # via - # black - # flask - # mkdocs - # mkdocs-click - # properdocs - # streamlit - # uvicorn -colorama==0.4.6 \ +colorama==0.4.6 ; sys_platform == 'win32' \ --hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \ --hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 # via - # click - # mkdocs - # mkdocs-material - # properdocs # pytest + # typer contourpy==1.3.3 \ --hash=sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69 \ --hash=sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc \ @@ -316,154 +89,10 @@ contourpy==1.3.3 \ --hash=sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9 \ --hash=sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a # via matplotlib -coverage==7.14.3 \ - --hash=sha256:02c41de2a88011b893050fc9830267d927a50a215f7ad5ec17349db7090ccf26 \ - --hash=sha256:0423d64c013057a06e70f070f073cec4b0cbc7d2b27f3c7007292f2ff1d52965 \ - --hash=sha256:0ee68f5c34812780f3a7063382c0a9fcbb99985b7ddcdcaa626e4f3fb2e0783a \ - --hash=sha256:11a7ec9f97ab950f4c5af62229befc7faf208fdbc0116d3902d7e306cf2c5abd \ - --hash=sha256:16b206e521feb8b7133a45754643dead0538489cf8b783b90cf5f4e3299625fd \ - --hash=sha256:1a7563a443f3d53fdeb040ec8c9f7466aed7ca3dc5891aa09d3ca3625fa4387f \ - --hash=sha256:1bb93c2aa61d2a5b38f1526546d95cf4132cb681e541a337bf8dfd092be816e5 \ - --hash=sha256:1e3b91f9c4740aeb571ecf82e5e8d8e4ab62d34fcb5a5d4e5baa38c6f7d2857c \ - --hash=sha256:2415902f385a23dcc4ccd26e0ba803249a169af6a930c003a4c715eeb9a5444e \ - --hash=sha256:27d07a46500ba23515b838dbcf52512026af04090755cf6cc64166d88c9b9a1a \ - --hash=sha256:2bfc4dd0a912329eccc7484a7d0b2a38032b38c40663b1e1ac595f10c457954b \ - --hash=sha256:2e41fd3aab806770008279a93879b0924b16247e09ab537c043d08bbca53b4ab \ - --hash=sha256:338b19131ab1a6b767b462bfcbaa692e7ae22f24463e39d49b02a83410ff6b37 \ - --hash=sha256:39e1dbbb6ff2c338e0196a482558a792a1de3aa64261196f5cdb3da016ad9cda \ - --hash=sha256:3c68df8e61f1e09633fefc7538297145623957a048534368c9d212782aa5e845 \ - --hash=sha256:3d74ff26299c4879ce3a4d826f9d3d4d556fd285fde7bbce3c0ef5a8ab1cec24 \ - --hash=sha256:3e5b550a128419373c2f6cec28a244207013ef15f5cbcff6a5ca09d1dfaaf027 \ - --hash=sha256:41de778bd41780586e2b04912079c73089ab5d839624e28db3bdb26de638da92 \ - --hash=sha256:47968988b367990ae4ab17523790c38cd125e02c6bfd379b6022be2d40bdc38c \ - --hash=sha256:4b60ca6d8af70473491a15a343cbabab2e8f9ea66a4376e81c7aa24876a6f977 \ - --hash=sha256:4d310baf69a4fbe8a098ce727e4808a34866ac718a6f759ae659cbd3221358bc \ - --hash=sha256:526ce9721116af23b1065089f0b75046fe521e7772ab94b641cd66b7a0421889 \ - --hash=sha256:5952f8c1bda2a5347154450379316e6dfa4d934d62ca35f6784451e6f55074fb \ - --hash=sha256:5d788e5fd55347eef06ca0732c77d04a264de67e8ff24631270cdff3767a60cf \ - --hash=sha256:605ab2b566a22bd94834529d66d295c364aba84afd3e5498285c7a524017b1fc \ - --hash=sha256:611e62cb9386096d81b63e0a05330750268617231e7bd598e1fe77482a2c58a5 \ - --hash=sha256:621e13c6108234d7960aaf5762ab5c3c00f33c30c15af06dcbff0c73bf112727 \ - --hash=sha256:62c7f79db2851c95ef020e5d28b97afde3daf9f7febcd35b53e05638f729063f \ - --hash=sha256:68520c90babfa2d560eca6d497921ed3a4f469623bd709733124491b2aa8ef3f \ - --hash=sha256:69918344541ed9c8368566c2adc03c0e33d4550d7faa87d1b35e49b6a3286ea9 \ - --hash=sha256:6a3693b4153394d265f44fb855fdc80e72403024d4d6f91c4871b334d028e4e0 \ - --hash=sha256:74fdd718d88fe144f4579b8747873a07ec3f04cb837d5faec5a25d9e22fa31a8 \ - --hash=sha256:7b27c822a8161afbe48e99f1adfb098d270ae7e0f7d7b0555ce110529bdb69cc \ - --hash=sha256:7ea52fc08f007bcc494d4bb3df3851e95843d881860ba38fe2c64dc100db5e7d \ - --hash=sha256:8427f370ca67db4c975d2a26acfc0e5783ca0b52444dbc50278ace0f35445949 \ - --hash=sha256:878832eaac515b62decfa76965aed558775f86bf1fc8cca76993c0c84ae31aed \ - --hash=sha256:8ac012839ff7e396030f1e94e10553a431d14e4de2ab65cb3acb72bbd5628ca2 \ - --hash=sha256:8cec0ad652ec57790970d817490105bd917d783c2f7b38d6b58a0ca312e1a336 \ - --hash=sha256:8cf0f2509acb4619e2471a1951089054dd58ebea7a912066d2ea56dd4c24ca4a \ - --hash=sha256:90f7608aeb5d9b60b523b9fb2a4ee1973867cc4865a3f26fe6c7577073b70205 \ - --hash=sha256:92c22e19ce64ca3f2ad751f16f14df1468b4c231bd6af97185063a9c292a0cb3 \ - --hash=sha256:96150a9cf3468ea20f0bc5d0e21b3df8972c31480ef90fa7614b773cc6429665 \ - --hash=sha256:98a0859b0e98e43e1178a9402e19c8127766b14f7109a374d976e5a62c0e5c73 \ - --hash=sha256:9973ef2463f8e6cfb61a6324126bb3e17d67a85f22f58d856e583ea2e3ca6501 \ - --hash=sha256:9be4e7d4c5ca0427889f8f9d614bd630c2be741b1de7699bca3b2b6c0e41003e \ - --hash=sha256:a090cbf9521e78ffdb2fcf448b72902afe9f5923ff6a12d5c0d0120200348af9 \ - --hash=sha256:a2335ea5fed26af2e831094964fa3f8fae60b45f7e37fcc2d3b615b2add3ad87 \ - --hash=sha256:a3c2134809e80fac091bfed18a6991b5a5eb5df5ae32b17ac4f4f99864b73dd7 \ - --hash=sha256:a571bd889cd36c5922ce8e42e059f9d37d02301531d11374afa4c87a578625d5 \ - --hash=sha256:a574912f3bde4b0619f6e97d01aa590b70998859244793769eb3a6df78ee56d3 \ - --hash=sha256:ac082660de8f429ba0ea363595abb838998570b9a7546777c60f413ab902bbde \ - --hash=sha256:b3d77f7f196abdef7e01415de1bce09f216189e83e58159cfeef2b92d0464994 \ - --hash=sha256:b3ff255799f5a1676c71c1c32ec01fd043aa09d57b3d95764b24992757184784 \ - --hash=sha256:b488bd4b23397db62e7a9459129d01ff06a846582a732efd24834b24a6ada498 \ - --hash=sha256:b75ee850fc2d7c831e883220c445b035f2224de2ba6103f1e56dbd237ab913f7 \ - --hash=sha256:b7f300ac92cd4b570724c8ffbbd0c130fee298d2447f41d5a3abf58976fae1de \ - --hash=sha256:beaab199b9e5ceaf5a225e16a9d4df136f2a1eae0a5c20de1e277c8a5225f388 \ - --hash=sha256:c02efd507227bde9969cab0db8f48890eb3b5dcad6afac57a4792df4133543ce \ - --hash=sha256:c66f9f9d4f1e9712eb9b1de5310f881d4e2188cfcba5065e1a8490f38687f2c4 \ - --hash=sha256:c90a7cdd5e380e1ce02f19792e2ac2fbfbf177e35a27e69fd3e873b30d895c0c \ - --hash=sha256:c946099774a7699de03cbd0ff0a64e21aed4525eed9d959adde4afe6d15758ef \ - --hash=sha256:cc96aa922e21d4bc5d5ed3c915cef27dfcbc13686f47d5e378d647fbfba655a2 \ - --hash=sha256:d20a15c622194234161535459affa8f7905830391c9ccfa060d495dbfe3a1c7f \ - --hash=sha256:d8e88f335544a47e22ae2e45b344772925ec65166555c958720d5ed971880891 \ - --hash=sha256:dc9b4e35e7c3920e925ba7f14886fd5fbe481232754624e832ddba66c7535635 \ - --hash=sha256:de76caefc8deabb0dd1678b6a980be97d14c8d87e213ac194dbf8b09e96d63fb \ - --hash=sha256:e343fb086c9cd780b38622fea7c369acd64c1a0724312149b5d769c387a2b1f5 \ - --hash=sha256:e4ed44705ca4bead6fc977a8b741f2145608289b33c8a9b42a95d0f15aedbf4d \ - --hash=sha256:e574801e1d643561594aa021206c46d80b257e9853087090ba97bed8b0a509d3 \ - --hash=sha256:e6230e688c7c3e65cedd41a774eb4ec221adc6bfee13768231015b702d5e4150 \ - --hash=sha256:ea3169c7116eb6cdf7608c6c7da9ecfcb3da40688e3a510fac2d1d2bafd6dc35 \ - --hash=sha256:f0a47095963cfe054e0df178daca95aec21e680d6076da807c3add28dfe920f7 \ - --hash=sha256:f502e948e03e866538048bba081c075caaa62e5bda6ea5b7432e45f587eb462a \ - --hash=sha256:f82b6bb7d75a2613e85d07cefa3a8c973d0544a8993337f6e2728e4a1e94c305 \ - --hash=sha256:fa9e5c6857a7e80fa22ace5cf3550ae392bbfc322f1d8dd2d2d5a8be38cec027 \ - --hash=sha256:fb7e18afb6e903c1a92401a2f0501ac277dca527bb9ca6fe1f691a8a0026a0e8 \ - --hash=sha256:fbb8c3a98e779013786ae01d229662aeacbc77100efbd3f2f245219ace5af700 - # via pytest-cov -cryptography==49.0.0 \ - --hash=sha256:026ac7423e6fa66872d3bf889be5974507da3944f866f704fa200eadacd00001 \ - --hash=sha256:07cab27cc7b7e0fd28e5e26bb9eeedde5c135c868b46de4a27845abe94af6122 \ - --hash=sha256:084ef1af862eb07ec46d25f68689f2102a9fc0e05ce7b80f14f5fe51e4eef0f6 \ - --hash=sha256:0b82e28ee398a386f0807bba7884d30f25218855690f45115831bcce5d90822c \ - --hash=sha256:0e959b578856a3924bc0cbb710fc12c387b9412a951389f3ca61704a9e25f325 \ - --hash=sha256:0f21641cf4b30fca7aee061ced0ec7ad7b073518088b7c9969a297c0ae796c69 \ - --hash=sha256:196ecd6a36e4e9aa10270393bb98d8df88fccee0bf1e5128b91ae4eb4375896d \ - --hash=sha256:2400ef9c9e2299a25614eb1dea3db54a69b1349efd043bfac9c67630d136df36 \ - --hash=sha256:28d8b15e6275f12c8a207dc309dfa957903c927d08d0cc937ee3f63f200693cc \ - --hash=sha256:2afe9051da7ae7bd5905da5a949280c7d2bb75682e188f650a9d0f2756b834c6 \ - --hash=sha256:2eda353d8a27bcbcaa4cbed18994a74ab4d19a2ca897db188ea269ab9b71419b \ - --hash=sha256:32703d93296f5c1f4b53349ad3a250c2cae0fdecd3a3dd5d47e616d8d616af27 \ - --hash=sha256:33cd0565932807baddb67b96dbee92f2c374b5c89dee09fd74079aeb8c8dba61 \ - --hash=sha256:35b151772baff2c74cba7fa290ceaff4c3b11c0c881eb93eb5dbc05a7cfbba18 \ - --hash=sha256:36d1709f992593689b45bda411498d62c6e365f2ca00b84657d4dadd24de16db \ - --hash=sha256:42b0684e0e40cf26122427802486f6d93aea593612603a94fbf260c7eb1e9c1b \ - --hash=sha256:4ae387c9cb68ea569ca17e490d66d8142b81c3cc814bf179974b7d146e490bbb \ - --hash=sha256:53ecee2e23f7169b6117e99fc8a944e5e50f79e69758a83b52a00cb98ab2b2d2 \ - --hash=sha256:66ec79c3904820572d7e987abdf304281f141d37ad9a489b8e97066e7b9b6459 \ - --hash=sha256:67e1d20ad9ef3a563c59ef22e7a8a0b8210bd26604369ea4a30a7c66aefe504e \ - --hash=sha256:6f2debedf9ca60cf1d5bd466475638af5130f89965605cd818484d19987d3a21 \ - --hash=sha256:6fc361c34fb6aac015ce19435876635e5c6d21db31998b0920f675f131e043b8 \ - --hash=sha256:73a205dce83953d131a4aa1e0fd917a2fd1c5b1eef251e9d7152efefcbf5caf7 \ - --hash=sha256:7abcee80084cda3f7691f3eb1ce480d8df49cec637b429aa35986c1de71738aa \ - --hash=sha256:8c25ceb16df5b9435f3f6a9829204985b0e0cbee3b48aacd432c7d2c850b44d9 \ - --hash=sha256:966fe0e9c67490071f14c0d2b1cb2dfb3023c5ce39457343931415f08382f2db \ - --hash=sha256:9e82dcc8e56052715fb18b2429e3bca4823b1629136a2084fc45a9a5cecb9b64 \ - --hash=sha256:b20133d204d2bb56ba047642199603876c872026ca53e79c35b83772ab2cc505 \ - --hash=sha256:b39efa323140595abd3ecca8529d321ae50f55f3aa3ba9cc81ea56a6011953d5 \ - --hash=sha256:b47db11c2c3525083296069b98ac5221907455e989ae0c2e3008bde851921615 \ - --hash=sha256:b87e65d263b3e5d3bb92a57e2a6638e2f31110fa7aa890c7b2dbba42248d0a3f \ - --hash=sha256:b970c6da94d5bb18629db453d14f2a1300f6bf59b61e9b82377931ef95504866 \ - --hash=sha256:be9fcb48a55f023493482827d4f459bd263cc20efde64f204b97c123201850c6 \ - --hash=sha256:c2bc30226390d60ea19d9f82b19db005fe0452154a23c1c410c12ea801e43561 \ - --hash=sha256:c83782480a4a9da4d0feb51950131ba32e12e70813848b3343f6e18c28a66838 \ - --hash=sha256:cbc77da8c523d5abd028635ba850a6966fcee2c82e2bf65a41d1d8afe0f98be9 \ - --hash=sha256:ccac2bfebc306b862133e3bb71f3f6ee8bb525240089b2d952e4144b3a6d5da7 \ - --hash=sha256:d0527ce944105f257f605a827d6ebead966c752038b6e8656abb9c5edee6fc68 \ - --hash=sha256:d8ecde755e2e91bf773fc94e8c9d730cd7f2007004cb492263a794ec3899a1c8 \ - --hash=sha256:e3fb64c420688e5319ae25113a354015abbd8dffbfbc41781a1ea66fc7622ac3 \ - --hash=sha256:e5dfc1e64de5677cec922ffa8da89c546d0415bf6efdf081842e5d44c84e1f0e \ - --hash=sha256:ec5e529fb80935c94fe7b729f9972b50e351a0e6b50aa294fd5cabb109fcc29a \ - --hash=sha256:f37d847238971164fdbc68ade6f6574aecc9c0af714190e2083429ff68f4ce9d \ - --hash=sha256:f78ff2c9ed8dc2d036b0f4d640e22522213d047c1b14e61205a7e55c80a494d4 \ - --hash=sha256:f89660a348f4f78a92366240a61404e337586ef7f5909a2fef59ca88ef505493 \ - --hash=sha256:fc1e275c2f1d97b1a6450b8b0ea3ebfa6e087a611c2b26cb2404d48588abab7b - # via pyjwt cycler==0.12.1 \ --hash=sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 \ --hash=sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c # via matplotlib -dash==4.3.0 \ - --hash=sha256:1ec96641d5e3c06b7dfffad8241e345533d70327d96f722a8e13b827c287341b \ - --hash=sha256:cbbe79a2bb1a5e46fbbbddc33f9f558419442c2d55cd12526078f489b5801cc0 - # via trendify -filelock==3.29.4 \ - --hash=sha256:10cdb3656fc44541cdf30652a93fb10ec6b05325620eb316bd26893e4201538a \ - --hash=sha256:dac1648087d5115554850d113e7dd8c83ab2d38e3435dde2d4f163847e57b767 - # via trendify -flake8==7.3.0 \ - --hash=sha256:b9696257b9ce8beb888cdbe31cf885c90d31928fe202be0889a7cdafad32f01e \ - --hash=sha256:fe044858146b9fc69b551a4b490d69cf960fcb78ad1edcb84e7fbb1b4a8e3872 -flask==3.1.3 \ - --hash=sha256:0ef0e52b8a9cd932855379197dd8f94047b359ca0a78695144304cb45f87c9eb \ - --hash=sha256:f4bcbefc124291925f1a26446da31a5178f9483862233b23c0c96a20701f670c - # via - # dash - # trendify fonttools==4.63.0 \ --hash=sha256:063e08bd17bd5a90127a14123de0d6a952dbc847695fd98b63c043d58057f90c \ --hash=sha256:0eac00b9118c3c2f87d272e45341871c5b3066baa3c86897fa634a7c3fb59096 \ @@ -508,143 +137,10 @@ fonttools==4.63.0 \ --hash=sha256:ef3048ef05dbb552b89817713d9cac912e00d0fde4a3105c00d29e52e10c89af \ --hash=sha256:fd1e3094f42d806d3d7c79162fc59e5910fcbe3a7360c385b8da969bc4493745 # via matplotlib -ghp-import==2.1.0 \ - --hash=sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619 \ - --hash=sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343 - # via - # mkdocs - # properdocs -gitdb==4.0.12 \ - --hash=sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571 \ - --hash=sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf - # via gitpython -gitpython==3.1.50 \ - --hash=sha256:80da2d12504d52e1f998772dc5baf6e553f8d2fcfe1fcc226c9d9a2ee3372dcc \ - --hash=sha256:d352abe2908d07355014abdd21ddf798c2a961469239afec4962e9da884858f9 - # via streamlit -grafana-api==1.0.3 \ - --hash=sha256:30caef227025ecdb5662b242aaae921b89b58959566d83a5948523c8138e98ce \ - --hash=sha256:d541ea1a5b7efafa56c5f04053ed42b2d972a6aa313bc4881dd192aeb0706e2e - # via trendify -griffe-pydantic==1.3.1 \ - --hash=sha256:475103794a1d5da3933d3968e82a2bd9d9a1fa507c06d5ee1a39ee1fadcca628 \ - --hash=sha256:f7caedfa0effedb22893bf01cc411fd567614f7b4de7ce0c1f4293eb7acb5c44 -griffelib==2.1.0 \ - --hash=sha256:762a186d2c6fd6794d4ea20d428d597ffb857cb56b66421651cbba15bdd5e813 \ - --hash=sha256:cc7b3d2d2865ad0b909fcc38086e3f554b5ea7acbaa7bbb7ecaa3f5dfb7d9f00 - # via - # griffe-pydantic - # mkdocstrings-python -h11==0.16.0 \ - --hash=sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1 \ - --hash=sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86 - # via - # httpcore - # uvicorn -hatchling==1.30.1 \ - --hash=sha256:161eacafb3c6f91526e92116d21426369f2c36e98c36a864f11a96345ad4ee31 \ - --hash=sha256:eee4fd45357f72ebb3d7a42e5d72cfb5e29ed426d79e8836288926c4258d5f2e -httpcore==1.0.9 \ - --hash=sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55 \ - --hash=sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8 - # via httpx -httptools==0.8.0 \ - --hash=sha256:0770728beb05094c809b98e814edff5fef69d26ad7d21185f2f6d5884a0ba683 \ - --hash=sha256:159e9ab5f701ccd42e555a12f1ad8ff69702910fc1c996cf2bb66e5fcb7a231b \ - --hash=sha256:19d1ee275bb59ba2643ba9a3a1e51cc0c788caf2b8df506368e03f56fdd08527 \ - --hash=sha256:20b4aac66ff65f7db06a375808b78f42a94970aa22e826b3cb2b43eb09174124 \ - --hash=sha256:2a021c3a8e65cc125390d72f59b968afca3bdcaff25bd67965e0a055a14946ca \ - --hash=sha256:2c032fa028f46871ec7e1fc59fc15e8023eab3e6bbe6ece786a1611719a5d081 \ - --hash=sha256:2d689918c15a013c65ef52d9fd495d766893ab831a2c8d89f2ac5940a5df847c \ - --hash=sha256:384c17174464c8e873398b7af24f0b1f44d992c820328413951a625323155d77 \ - --hash=sha256:425f83884fd6343828d8c565f046cb72b6d19063f6924093e11bcd8e1548cd09 \ - --hash=sha256:48774d39cbb70e2b1f71f88852a3087ae1d3a1eb80482bb48c13067ab080c14f \ - --hash=sha256:52dd695b865fe96d9d2b16b64a895f3f57bf3cb064e8383cd3b5713a069e8085 \ - --hash=sha256:57278e6fa0424c42a8a3e454828ab4f0aff27b40cddf9679579b98c6dce6a376 \ - --hash=sha256:5931891fb7b441b8a3853cf1b85c82c903defce084dd5f6771ca46e31bf862c5 \ - --hash=sha256:614ceea8ea606848bece2338ac03b3ce5324bcb4be8dc7d377ed708012fa4db8 \ - --hash=sha256:6a43c9dd399758ccc0531acb0a3c4a6c299ee893ee9400e9c893b7bdcfae0681 \ - --hash=sha256:6b2a32f18d97e16e90827d7a819ffa8dbd8cc245fc4e1fa9d1095b54ef4bd999 \ - --hash=sha256:7685df791fad561384bfb139e77fde27a1ffd93134e016f95a0db424ffbf77b1 \ - --hash=sha256:880490234c10f70a9830743097e8958d6e4b9f5a0ffc24515023afeef984054d \ - --hash=sha256:88bdd940f2b5d487b4d032c6afa5489a7dc4694410d43de3c38c4fb3af0dc45d \ - --hash=sha256:88eead8ec8680a9f146c655bc88445a325bd7921cfd8194c7337e9467282427d \ - --hash=sha256:9518c406d7b310f05adb1a37f80acabac40504a575d7c0da6d3e365c695ac20d \ - --hash=sha256:a1afd7c9fbff0d9f5d489c4ce2768bd09c84a46ddefc7161e6aa82ae35c85745 \ - --hash=sha256:a1b4c8e7a489a0d750d91894e9a8cdc295838f1924c0ca903ae993456fddec07 \ - --hash=sha256:a3b7387147361c3fd47a0bde763c5c91b5b4cd4dc9989b8ece84ff436c99843b \ - --hash=sha256:b15fc622b0f869d19207c4089a501d9bcc63ca5e071ffdd2f03f922df882dcb2 \ - --hash=sha256:bbb8caadb2b742d293169d2b458b5c001ef70e3158704aa3d3ef9597624c5d1d \ - --hash=sha256:c4a9f1707e4823d54dfec6c33fa3697d302aed536ed352a7ebb5a061ddb869d0 \ - --hash=sha256:cd96f29b4bab1d42fa6e3d008711c75e0f79e94e06827330160e3a304227f150 \ - --hash=sha256:d76ad7b951387e3632c8716a9bb03ac5b45c5f16119aa409db0459520887944e \ - --hash=sha256:de1ed58a974e75d56560acc7e7fed01a454994429456f65209789992e41f2568 \ - --hash=sha256:de242a49b5d18e0a8776e654e9f6bf6d89f3875a5c35b425a0e7ce940feb3fd6 \ - --hash=sha256:e93c227b595c6926c1acee96891dd9da4be338cfbe82e5cd3bb9d8dd7dc4ac0b \ - --hash=sha256:eb3028cca2fc0a6d720e52ef61d8ebb62fcbfeb1de56874546d858d3f25a26b7 \ - --hash=sha256:ed377e64805bdba4943c82717333f8f8603a13b09aff9cead2717c6c817fb168 \ - --hash=sha256:ef7c3c97f4311c7be57e2986629df89d49cb434dbff78eafcd48c2bff986b15a \ - --hash=sha256:f256d6ce930c52ca1cb2a960b7da03548c454e7d28b06059ad41bfe789036ce0 - # via streamlit -httpx==0.28.1 \ - --hash=sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc \ - --hash=sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad - # via mcp -httpx-sse==0.4.3 \ - --hash=sha256:0ac1c9fe3c0afad2e0ebb25a934a59f4c7823b60792691f779fad2c5568830fc \ - --hash=sha256:9b1ed0127459a66014aec3c56bebd93da3c1bc8bb6618c8082039a44889a755d - # via mcp -idna==3.18 \ - --hash=sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2 \ - --hash=sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848 - # via - # anyio - # httpx - # requests -importlib-metadata==9.0.0 \ - --hash=sha256:2d21d1cc5a017bd0559e36150c21c830ab1dc304dedd1b7ea85d20f45ef3edd7 \ - --hash=sha256:a4f57ab599e6a2e3016d7595cfd72eb4661a5106e787a95bcc90c7105b831efc - # via dash iniconfig==2.3.0 \ --hash=sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730 \ --hash=sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12 # via pytest -isort==8.0.1 \ - --hash=sha256:171ac4ff559cdc060bcfff550bc8404a486fee0caab245679c2abe7cb253c78d \ - --hash=sha256:28b89bc70f751b559aeca209e6120393d43fbe2490de0559662be7a9787e3d75 -itsdangerous==2.2.0 \ - --hash=sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef \ - --hash=sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173 - # via - # flask - # streamlit -janus==2.0.0 \ - --hash=sha256:0970f38e0e725400496c834a368a67ee551dc3b5ad0a257e132f5b46f2e77770 \ - --hash=sha256:7e6449d34eab04cd016befbd7d8c0d8acaaaab67cb59e076a69149f9031745f9 - # via dash -jinja2==3.1.6 \ - --hash=sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d \ - --hash=sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67 - # via - # altair - # flask - # mike - # mkdocs - # mkdocs-material - # mkdocstrings - # properdocs - # pydeck - # trendify -jsonschema==4.26.0 \ - --hash=sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326 \ - --hash=sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce - # via - # altair - # mcp -jsonschema-specifications==2025.9.1 \ - --hash=sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe \ - --hash=sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d - # via jsonschema kiwisolver==1.5.0 \ --hash=sha256:012b1eb16e28718fa782b5e61dc6f2da1f0792ca73bd05d54de6cb9561665fc9 \ --hash=sha256:01808c6d15f4c3e8559595d6d1fe6411c68e4a3822b4b9972b44473b24f4e679 \ @@ -746,102 +242,10 @@ kiwisolver==1.5.0 \ --hash=sha256:fd40bb9cd0891c4c3cb1ddf83f8bbfa15731a248fdc8162669405451e2724b09 \ --hash=sha256:ff710414307fefa903e0d9bdf300972f892c23477829f49504e59834f4195398 # via matplotlib -markdown==3.10.2 \ - --hash=sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950 \ - --hash=sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36 - # via - # markdown-callouts - # markdown-include - # mdx-gh-links - # mkdocs - # mkdocs-autorefs - # mkdocs-click - # mkdocs-material - # mkdocstrings - # properdocs - # pymdown-extensions -markdown-callouts==0.4.0 \ - --hash=sha256:7ed2c90486967058a73a547781121983839522d67041ae52c4979616f1b2b746 \ - --hash=sha256:ed0da38f29158d93116a0d0c6ecaf9df90b37e0d989b5337d678ee6e6d6550b7 -markdown-include==0.8.1 \ - --hash=sha256:1d0623e0fc2757c38d35df53752768356162284259d259c486b4ab6285cdbbe3 \ - --hash=sha256:32f0635b9cfef46997b307e2430022852529f7a5b87c0075c504283e7cc7db53 -markupsafe==3.0.3 \ - --hash=sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a \ - --hash=sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf \ - --hash=sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19 \ - --hash=sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf \ - --hash=sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175 \ - --hash=sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219 \ - --hash=sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb \ - --hash=sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6 \ - --hash=sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab \ - --hash=sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce \ - --hash=sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218 \ - --hash=sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634 \ - --hash=sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad \ - --hash=sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73 \ - --hash=sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c \ - --hash=sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe \ - --hash=sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa \ - --hash=sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37 \ - --hash=sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f \ - --hash=sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d \ - --hash=sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c \ - --hash=sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97 \ - --hash=sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a \ - --hash=sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19 \ - --hash=sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9 \ - --hash=sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9 \ - --hash=sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc \ - --hash=sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4 \ - --hash=sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354 \ - --hash=sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50 \ - --hash=sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698 \ - --hash=sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9 \ - --hash=sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b \ - --hash=sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc \ - --hash=sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115 \ - --hash=sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485 \ - --hash=sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f \ - --hash=sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12 \ - --hash=sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025 \ - --hash=sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009 \ - --hash=sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d \ - --hash=sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a \ - --hash=sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5 \ - --hash=sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f \ - --hash=sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1 \ - --hash=sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287 \ - --hash=sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6 \ - --hash=sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f \ - --hash=sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581 \ - --hash=sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed \ - --hash=sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b \ - --hash=sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026 \ - --hash=sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676 \ - --hash=sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e \ - --hash=sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d \ - --hash=sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d \ - --hash=sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01 \ - --hash=sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795 \ - --hash=sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5 \ - --hash=sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d \ - --hash=sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe \ - --hash=sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda \ - --hash=sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e \ - --hash=sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737 \ - --hash=sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523 \ - --hash=sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a \ - --hash=sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50 - # via - # flask - # jinja2 - # mkdocs - # mkdocs-autorefs - # mkdocstrings - # properdocs - # werkzeug +markdown-it-py==4.2.0 \ + --hash=sha256:04a21681d6fbb623de53f6f364d352309d4094dd4194040a10fd51833e418d49 \ + --hash=sha256:9f7ebbcd14fe59494226453aed97c1070d83f8d24b6fc3a3bcf9a38092641c4a + # via rich matplotlib==3.11.0 \ --hash=sha256:03acfeddf87b0dddb11b081ef7740ad445a3ca8bcb6b8e3011b08f2cf802b75c \ --hash=sha256:0515d495124be3124340e59f164d901ed4484e2246a5b74cfa483cac3b80bd97 \ @@ -890,100 +294,17 @@ matplotlib==3.11.0 \ --hash=sha256:e6b3e64dea5062c570f04358e2711859f3531b459f29516274fbad889079e4f3 \ --hash=sha256:f857524b442f0f36e641868ce2171aafa88cb0bc0644f4e1d8a5df9b32649fef # via trendify -mccabe==0.7.0 \ - --hash=sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325 \ - --hash=sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e - # via flake8 -mcp==1.28.1 \ - --hash=sha256:2726bca5e7193f61c5dde8b12500a6de2d9acf6d1a1c0be9e8c2e706437991df \ - --hash=sha256:d51e36a5f5644faea4f85ea649bfffa6bc6c26770d42798ad6a3de3d2ba69683 - # via dash -mdx-gh-links==0.4 \ - --hash=sha256:41d5aac2ab201425aa0a19373c4095b79e5e015fdacfe83c398199fe55ca3686 \ - --hash=sha256:9057bca1fa5280bf1fcbf354381e46c9261cc32c2d5c0407801f8a910be5f099 -mergedeep==1.3.4 \ - --hash=sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8 \ - --hash=sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307 - # via - # mkdocs - # mkdocs-get-deps -mike==2.2.0 \ - --hash=sha256:1e3858e32c0f125aac14432fc7848434358f9ae0962c5c5cde387ad47f6ad25e \ - --hash=sha256:e1f4981c1152eec7c2490a3401142292cc47d686194188416db2648fdfe1d040 -mkdocs==1.6.1 \ - --hash=sha256:7b432f01d928c084353ab39c57282f29f92136665bdd6abf7c1ec8d822ef86f2 \ - --hash=sha256:db91759624d1647f3f34aa0c3f327dd2601beae39a366d6e064c03468d35c20e - # via - # mike - # mkdocs-autorefs - # mkdocs-exclude - # mkdocs-gen-files - # mkdocs-literate-nav - # mkdocs-material - # mkdocs-redirects - # mkdocs-section-index - # mkdocstrings -mkdocs-autorefs==1.4.4 \ - --hash=sha256:834ef5408d827071ad1bc69e0f39704fa34c7fc05bc8e1c72b227dfdc5c76089 \ - --hash=sha256:d54a284f27a7346b9c38f1f852177940c222da508e66edc816a0fa55fc6da197 - # via - # mkdocstrings - # mkdocstrings-python -mkdocs-click==0.9.0 \ - --hash=sha256:5208e828f4f68f63c847c1ef7be48edee9964090390afc8f5b3d4cbe5ea9bbed \ - --hash=sha256:6050917628d4740517541422b607404d044117bc31b770c4f9e9e1939a50c908 -mkdocs-exclude==1.0.2 \ - --hash=sha256:ba6fab3c80ddbe3fd31d3e579861fd3124513708271180a5f81846da8c7e2a51 -mkdocs-gen-files==0.6.1 \ - --hash=sha256:57d7ff2229e23d077e46d14a33db6d37c8823f6ce1a503c874c1764a71679763 \ - --hash=sha256:b3182bfc6219e35b8d26658cb988368659d5d023aac30c2a819247558fc12189 -mkdocs-get-deps==0.2.2 \ - --hash=sha256:8ee8d5f316cdbbb2834bc1df6e69c08fe769a83e040060de26d3c19fad3599a1 \ - --hash=sha256:e7878cbeac04860b8b5e0ca31d3abad3df9411a75a32cde82f8e44b6c16ff650 - # via mkdocs -mkdocs-glightbox==0.5.2 \ - --hash=sha256:23a431ea802b60b1030c73323db2eed6ba859df1a0822ce575afa43e0ea3f47e \ - --hash=sha256:c7622799347c32310878e01ccf14f70648445561010911c80590cec0353370ac -mkdocs-literate-nav==0.6.3 \ - --hash=sha256:2c421561280fa9184f88cbf399bebbd4cc17ee507e978a31ce11fd6f3aabf233 \ - --hash=sha256:edbaca22343f861fe4e34aac47d55a0c9955c640dbf02eea99fe631e914cf9ee -mkdocs-material==9.7.6 \ - --hash=sha256:00bdde50574f776d328b1862fe65daeaf581ec309bd150f7bff345a098c64a69 \ - --hash=sha256:71b84353921b8ea1ba84fe11c50912cc512da8fe0881038fcc9a0761c0e635ba -mkdocs-material-extensions==1.3.1 \ - --hash=sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443 \ - --hash=sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31 - # via mkdocs-material -mkdocs-redirects==1.2.3 \ - --hash=sha256:5e980330999299729a2d6a125347d1af78023d68a23681a4de3053ce7dfe2e51 \ - --hash=sha256:ec7312fff462d03ec16395d0c001006a418f8d0c21cdf2b47ff11cf839dc3ce0 -mkdocs-section-index==0.3.12 \ - --hash=sha256:285635bf86c643b0fc7a343053d7a818049817bff4408f52b80c4367bd5e7268 \ - --hash=sha256:a1100039546beb4ebef63ce6fc91f3195fb9c0c3763105d4d3d7cd31e0a046eb -mkdocs-snippets==1.3.2 \ - --hash=sha256:0a2be9ced4169acb3449d89a2d882f7e0e516a8c9cf3ffb8b9c6565af83a9a61 \ - --hash=sha256:d46d2700dec2dd8dab1d2977a656bed11ad89fdfd4dab30f2008c99d42086c53 -mkdocstrings==1.0.4 \ - --hash=sha256:3969a6515b77db65fd097b53c1b7aa4ae840bd71a2ee62a6a3e89503446d7172 \ - --hash=sha256:63464b4b29053514f32a1dbbf604e52876d5e638111b0c295ab7ed3cac73ca9b - # via mkdocstrings-python -mkdocstrings-python==2.0.5 \ - --hash=sha256:30c837bbff016549f659fcba6539ac351303f0fd7e713c89a040611072236e9d \ - --hash=sha256:3a4d92556ad39637e88af94a5374213af9a8e3040c3824ceaed04b486c017594 -mypy-extensions==1.1.0 \ - --hash=sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505 \ - --hash=sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558 - # via black +mdurl==0.1.2 \ + --hash=sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8 \ + --hash=sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba + # via markdown-it-py +mkinit==1.2.0 \ + --hash=sha256:172755988cdcdc5212d0b76b586ec4765c2bff9ae41266a93f5f4b962c3d2def \ + --hash=sha256:4b776ca991ccedbb202b079bd3e573d753121baa2a4f330324247325c9a1d346 narwhals==2.23.0 \ --hash=sha256:13e7ff5b4bb4a2f77b907c2e4d8a76e273dfc1323a3c997440a2f9fd26aed408 \ --hash=sha256:769e7b9ab102c93d8fa019f6b4cd1a657909b04a20bf6210e5a35aae06814ae9 - # via - # altair - # plotly -nest-asyncio==1.6.0 \ - --hash=sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe \ - --hash=sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c - # via dash + # via plotly numpy==2.4.6 ; python_full_version < '3.12' \ --hash=sha256:001fbb8e08d942dd57599e781f2472269ee7f2755fae407b4f67b2f0b17da3f1 \ --hash=sha256:0280e0356c0829a18d9de1cb7eee50ec22ca639878d7240307ca0943d73cd2c4 \ @@ -1061,10 +382,6 @@ numpy==2.4.6 ; python_full_version < '3.12' \ # contourpy # matplotlib # numpydantic - # pandas - # pydeck - # scipy - # streamlit # trendify numpy==2.5.0 ; python_full_version >= '3.12' \ --hash=sha256:016623417bb330d719d579daf2d6b9a01ddc52e41a9ed61a47f39fde46dcd865 \ @@ -1115,10 +432,6 @@ numpy==2.5.0 ; python_full_version >= '3.12' \ # contourpy # matplotlib # numpydantic - # pandas - # pydeck - # scipy - # streamlit # trendify numpydantic==1.10.0 \ --hash=sha256:1c62a445d305da69a5fa4510f7e7e1c25218f58fe462e5d59548042f1f769e66 \ @@ -1128,79 +441,9 @@ packaging==26.2 \ --hash=sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e \ --hash=sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661 # via - # altair - # black - # hatchling # matplotlib - # mkdocs # plotly - # properdocs # pytest - # streamlit -paginate==0.5.7 \ - --hash=sha256:22bd083ab41e1a8b4f3690544afb2c60c25e5c9a63a30fa2f483f6c60c8e5945 \ - --hash=sha256:b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591 - # via mkdocs-material -pandas==3.0.3 \ - --hash=sha256:0383c72c75cdcca61a9e116e611143902dbfd08bff356829c2f6d1cf40a9ca8c \ - --hash=sha256:05f1f1752b8533ea03f7f39a9c15b1a058d067bb48f4748948e7a8691e0510f2 \ - --hash=sha256:08d789b41f87e0905880e293cedf6197ce71fe67cc081358b1e148a491b9bd13 \ - --hash=sha256:0d589105b3c14645af1738ff279b2995102d8f7a03b0a66dc8d95550eb513e04 \ - --hash=sha256:13fc1e853d9e04743d11ba75a985ccbc2a317fe07d8af61e445a6fd24dacd6a6 \ - --hash=sha256:14da8316da4d0c5a77618425996bfb1248ca87fc2c1486e6fde4652bd18b5824 \ - --hash=sha256:1928e07221f82db493cd4af1e23c1bfca524a19a4699887975bff68f49a72bfb \ - --hash=sha256:261e308dfb22448384b7580cf719d2f998fe2966c92893c3e77d14008af1f066 \ - --hash=sha256:275c14e0fce14a2ec20eee474aecd305478ea3c1e6f6a9d8fe219a165542717e \ - --hash=sha256:335f62418ed562cfc3c49e9e196375c28b729dcef8543abf4f9438e381bf3c76 \ - --hash=sha256:3650109c0f22879df8bd6179ab9ee3d7f1d1d4e7e0094a3f0032d9f51e2e64ac \ - --hash=sha256:39436b377d56d2a2e52d0395bdbee171f01068e99af5250509aceeb929f765c7 \ - --hash=sha256:3c20a521bbb85902f79f7270c80a59e1b5452d96d170c034f207181870f97ac5 \ - --hash=sha256:3e91cec1879ada0624fc3dc9953c5cbd60208e59c0db28f540c5d6d47502422f \ - --hash=sha256:455f6f8139d4282188f526868dbc3c828470e88a3d9d59a891bd46a455f21b98 \ - --hash=sha256:46997386d528eb40376ecd6b033cf4a8a1e5282580f68f43de875b78cba2199d \ - --hash=sha256:4db8c527972a821cf5286b40ccc57642a39bc62e62022b42f99f8a67fca8c3a1 \ - --hash=sha256:4e15135e2ee5df1063313e2425ceef8ac0f4ae775893815b0923651b806a5639 \ - --hash=sha256:51b1fe551acb77dac643c6fda86084d8d446c10fe64b06a9cc29c4cc8540e7f2 \ - --hash=sha256:557409bc4178e70ee8d9ddb494798e51ebf6ea59330f6be22c51bab2a7db6c49 \ - --hash=sha256:5cc09a68b3120e0f54870dede8287a7bb1fa463907e4fcec1ea77cab6179bf7a \ - --hash=sha256:60ae316d3fd75d1858d450d0db0103ea2be3e7d4a95ec2f064f7e2ae63f7b028 \ - --hash=sha256:6674ab18ad8c57802867264b00e15e7bb904700cdd9046e3b2fa1fce237439ea \ - --hash=sha256:67b3b64c11910cfa29f4e94a14d3bff9ee693b6fc76055e7cad549cee0aec5fa \ - --hash=sha256:696a4a00a2a2a35d4e5deb3fc946641b96c944f02230e4f76137fe35d806c4fc \ - --hash=sha256:6dc0b3fd2169c9157deed50b4d519553a3655c8c6a96027136d654592be973a9 \ - --hash=sha256:7e65d5407dc0b394f509699650e4a2ec01c0514f21850f453fa60f3be79a5dbf \ - --hash=sha256:819959dab7bbd0049c15623fbac4e29a191b9528160a61fb1032242d8ced2d9c \ - --hash=sha256:8a1e45c80cceb3b4a21bc5939d52e8cbd8d9b7305309219d59e9754d9ce09e27 \ - --hash=sha256:9c39be2d709d01fa972a0cabc522389fceca4f3969332ba25a7d6c5802cf976a \ - --hash=sha256:9d71c63ae4ebdbf70209742096f1fc46a83a0613c99d4b23766cced9ff8cd62a \ - --hash=sha256:a2d2dff8a04f3917b55ab3910c32990f8ddf7eceba114947838cefa976a68977 \ - --hash=sha256:a4eeb6830daf35a71cc09649bd823e2b542dac246cdee9614c6e4bd65028cd6a \ - --hash=sha256:a55066a0505dae0ba2b50a46637db34b46f9094c65c5d4800794ef6335010938 \ - --hash=sha256:a82d532a3351d435432cd913edbccaf8b8e01d4dd0e5ced5a8d2e8ecd94c7e44 \ - --hash=sha256:b168fc218fd80a6cbdbdbc1a97ddc7889ed057d7eb45f50d866ceab5f39904c4 \ - --hash=sha256:b2c95f8bfc1ee412bf482605d7bfd30c12d1d26bd59fdd91efeef1d4718decb1 \ - --hash=sha256:ba7e08b9ac1d54569cd1e256e3668975ed624d6826f7b68df0342b012007bddb \ - --hash=sha256:bab900348131a7db1f69a7309ef141fd5680f1487094193bcbbb61791573bf8f \ - --hash=sha256:bd3a518890b400d32f9023722dc9a9a5c969f00b415419a3c06c043f09bb5d7d \ - --hash=sha256:c7be265b62cef88e253a941e4698604973736dcfe242fdb5198f0f7bc473cdcc \ - --hash=sha256:d26cbe1fcfc12e8fd900e2454163e466b2d3af84f7c75481df7683ffc073d870 \ - --hash=sha256:d4be06d68f9ddcfc645b87534911da79a8fbffc7573c80e0edcf42a5020624d8 \ - --hash=sha256:d72828c20c6d6e83e1e22a6a3b47b326b71664112fa9705dcbccfd7a39b62085 \ - --hash=sha256:dd1a5d1def6a46002e964510bdc67c368aa0951df5d1d9f8365336f5a1f490cd \ - --hash=sha256:e3a2ec42c98ffa2565a67e08e218d06d72576d758d90facb7c00805194d8f360 \ - --hash=sha256:f8894dc474d648fe7b6ff0ca9b0bd73950d19952bc1a6534540762c5d79d305c \ - --hash=sha256:fed2ff7fd9779120e388e285fc029bd5cf9490cdd2e4166a9ee22c0e49a9ab09 - # via - # streamlit - # trendify -pathspec==1.1.1 \ - --hash=sha256:17db5ecd524104a120e173814c90367a96a98d07c45b2e10c2f3919fff91bf5a \ - --hash=sha256:a00ce642f577bf7f473932318056212bc4f8bfdf53128c78bbd5af0b9b20b189 - # via - # black - # hatchling - # mkdocs - # properdocs pillow==12.3.0 \ --hash=sha256:00808c5e14ef63ac5161091d242999076604ff74b883423a11e5d7bbb38bf756 \ --hash=sha256:04f01d28a6aaff387bf842a13be313df23ba0597a44f1a976c9feb3c6ff4711a \ @@ -1280,108 +523,35 @@ pillow==12.3.0 \ --hash=sha256:fdafc9cce40277e0f7a0feabce0ee50dd2fa1800f3b38015e51296b5e814048d \ --hash=sha256:fe3cca2e4e8a592be0f269a1ca4835c25199d9f3ce815c8491048f785b0a0198 \ --hash=sha256:ffd0c5368496f41b0944be820fcb7a838aa6e623d250b01acf2643939c3f99d7 - # via - # matplotlib - # streamlit -platformdirs==4.10.0 \ - --hash=sha256:31e761a6a0ca04faf7353ea759bdba55652be214725111e5aac52dfa29d4bef7 \ - --hash=sha256:fb516cdb12eb0d857d0cd85a7c57cea4d060bee4578d6cf5a14dfdf8cbf8784a - # via - # black - # mkdocs-get-deps - # properdocs + # via matplotlib plotly==6.8.0 \ --hash=sha256:13c5c4a0f70b74cab1913eda0de49b826df5931708eb6f9c3010040614700ec8 \ --hash=sha256:e088e7ddc68d4f70e3d66659224727a45296d71d2b8284181862d3d8f1f0d88f - # via - # dash - # trendify + # via trendify pluggy==1.6.0 \ --hash=sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3 \ --hash=sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746 - # via - # hatchling - # pytest - # pytest-cov -properdocs==1.6.7 \ - --hash=sha256:6fa0cfa2e01bf338f684892c8a506cf70ea88ae7f3479c933b6fa20168101cbd \ - --hash=sha256:adc7b16e562890af0e098a7e5b02e3a81c20894a87d6a28d345c9300de73c26e - # via - # mkdocs-gen-files - # mkdocs-literate-nav - # mkdocs-redirects - # mkdocs-section-index -protobuf==7.35.1 \ - --hash=sha256:11d6b0ec246892d85215b0a13ca6e0233cf5284b68f0ac02646427f4ff88a799 \ - --hash=sha256:230a75ddfc2de4806e56696ce9640c1cdfdb6543b7cfce98d42a4c0a0e7bdb87 \ - --hash=sha256:24f857477359a85c0c235261b8ba905fd51b2562f4a64ca1df5473f29850cbf6 \ - --hash=sha256:353652e4efd0bca5b5fc2656abf8307ef351f0cf938c9eba09f0e09c20a25c30 \ - --hash=sha256:4bc97768d8fe4ad6743c8a19403e314511ed9f6d13205b687e52421c023ac1b9 \ - --hash=sha256:74758715c53d7158fb76caf4f0cfdacc5329a4b1bb994f865d6cf302d413a1c4 \ - --hash=sha256:b73f9489a4b8b1c9cb1f8ed951c736392592edb24b9d6819f36d2e10b171d5b4 \ - --hash=sha256:ce115a26fe0c39a2c29973d914d327e516a6455464489fe3cd1e51a1b354f81a - # via streamlit -pyarrow==24.0.0 \ - --hash=sha256:02b001b3ed4723caa44f6cd1af2d5c86aa2cf9971dacc2ffa55b21237713dfba \ - --hash=sha256:04920d6a71aabd08a0417709efce97d45ea8e6fb733d9ca9ecffb13c67839f68 \ - --hash=sha256:0b3537c00fb8d384f15ac1e79b6eb6db04a16514c8c1d22e59a9b95c8ba42868 \ - --hash=sha256:1183baeb14c5f587b1ec52831e665718ce632caab84b7cd6b85fd44f96114495 \ - --hash=sha256:14e31a3c9e35f1ab6356c6378f6f72830e6d2d5f1791df3774a7b097d18a6a1e \ - --hash=sha256:1617043b99bd33e5318ae18eb2919af09c71322ef1ca46566cdafc6e6712fb66 \ - --hash=sha256:1a4e45017efbf115032e4475ee876d525e0e36c742214fbe405332480ecd6275 \ - --hash=sha256:1b2fe7f9a5566401a0ef2571f197eb92358925c1f0c8dba305d6e43ea0871bb3 \ - --hash=sha256:1cc9057f0319e26333b357e17f3c2c022f1a83739b48a88b25bfd5fa2dc18838 \ - --hash=sha256:25ea65d868eb04015cd18e6df2fbe98f07e5bda2abefabcb88fce39a947716f6 \ - --hash=sha256:295f0a7f2e242dabd513737cf076007dc5b2d59237e3eca37b05c0c6446f3826 \ - --hash=sha256:2f16197705a230a78270cdd4ea8a1d57e86b2fdcbc34a1f6aebc72e65c986f9a \ - --hash=sha256:35405aecb474e683fb36af650618fd5340ee5471fc65a21b36076a18bbc6c981 \ - --hash=sha256:38be1808cdd068605b787e6ca9119b27eb275a0234e50212c3492331680c3b1e \ - --hash=sha256:3b13dedfe76a0ad2d1d859b0811b53827a4e9d93a0bcb05cf59333ab4980cc7e \ - --hash=sha256:418e48ce50a45a6a6c73c454677203a9c75c966cb1e92ca3370959185f197a05 \ - --hash=sha256:55a3bc1e3df3b5567b7d27ef551b2283f0c68a5e86f1cd56abc569da4f31335b \ - --hash=sha256:6165461f55ef6314f026de6638d661188e3455d3ec49834556a0ebbdbace18bb \ - --hash=sha256:61a3d7eaa97a14768b542f3d284dc6400dd2470d9f080708b13cd46b6ae18136 \ - --hash=sha256:6233c9ed9ab9d1db47de57d9753256d9dcffbf42db341576099f0fd9f6bf4810 \ - --hash=sha256:641f795b361874ac9da5294f8f443dfdbee355cf2bd9e3b8d97aaac2306b9b37 \ - --hash=sha256:6f066b179d68c413374294bc1735f68475457c933258df594443bb9d88ddc2a0 \ - --hash=sha256:7986f1fa71cee060ad00758bcc79d3a93bab8559bf978fab9e53472a2e25a17b \ - --hash=sha256:806f24b4085453c197a5078218d1ee08783ebbba271badd153d1ae22a3ee804f \ - --hash=sha256:85fe721a14dd823aca09127acbb06c3ca723efbd436c004f16bca601b04dcc83 \ - --hash=sha256:8adc8e6ce5fccf5dc707046ae4914fd537def529709cc0d285d37a7f9cd442ca \ - --hash=sha256:9700ebd9a51f5895ce75ff4ac4b3c47a7d4b42bc618be8e713e5d56bacf5f931 \ - --hash=sha256:9b18371ad2f44044b81a8d23bc2d8a9b6a6226dca775e8e16cfee640473d6c5d \ - --hash=sha256:a964266397740257f16f7bb2e4f08a0c81454004beab8ff59dd531b73610e9f2 \ - --hash=sha256:adbbedc55506cbdabb830890444fb856bfb0060c46c6f8026c6c2f2cf86ae795 \ - --hash=sha256:ae8a1145af31d903fa9bb166824d7abe9b4681a000b0159c9fb99c11bc11ad26 \ - --hash=sha256:b0e131f880cda8d04e076cee175a46fc0e8bc8b65c99c6c09dff6669335fde74 \ - --hash=sha256:b196eb3f931862af3fa84c2a253514d859c08e0d8fe020e07be12e75a5a9780c \ - --hash=sha256:b7d9a514e73bc42711e6a35aaccf3587c520024fe0a25d830a1a8a27c15f4f57 \ - --hash=sha256:c91d00057f23b8d353039520dc3a6c09d8608164c692e9f59a175a42b2ae0c19 \ - --hash=sha256:d3e0b61e8efb24ed38898e5cdc5fffa9124be480008d401a1f8071500494ae42 \ - --hash=sha256:d7027eba1df3b2069e2e8d80f644fa0918b68c46432af3d088ddd390d063ecde \ - --hash=sha256:d8ddd2768da81d3ee08cfea9b597f4abb4e8e1dc8ae7e204b608d23a0d3ab699 \ - --hash=sha256:e4505fc6583f7b05ab854934896bcac8253b04ac1171a77dfb73efef92076d91 \ - --hash=sha256:e56a1ffe9bf7b727432b89104cc0849c21582949dd7bdcb34f17b2001a351a76 \ - --hash=sha256:e6f1278ee4785b6db21229374a1c9e54ec7c549de5d1efc9630b6207de7e170b \ - --hash=sha256:f7616236ec1bc2b15bfdec22a71ab38851c86f8f05ff64f379e1278cf20c634a \ - --hash=sha256:fb24ac194bfc5e86839d7dcd52092ee31e5fe6733fe11f5e3b06ef0812b20072 - # via streamlit -pycodestyle==2.14.0 \ - --hash=sha256:c4b5b517d278089ff9d0abdec919cd97262a3367449ea1c8b49b91529167b783 \ - --hash=sha256:dd6bf7cb4ee77f8e016f9c8e74a35ddd9f67e1d5fd4184d86c3b98e07099f42d - # via flake8 -pycparser==3.0 ; implementation_name != 'PyPy' and platform_python_implementation != 'PyPy' \ - --hash=sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29 \ - --hash=sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992 - # via cffi + # via pytest +polars==1.42.1 \ + --hash=sha256:2fe94f3059334650bd850ae19a9c165dcd5d9cb12cd95ea04de2201662e70e8a \ + --hash=sha256:3c0c65cdfa21a621650c4bdcbbccf93964d052fd766c3e70e84a55d961c259fd + # via trendify +polars-runtime-32==1.42.1 \ + --hash=sha256:4d4809e1c1b9a6611f6944f27b24abea902b5159e6b6fa262fd716e947af5afd \ + --hash=sha256:635d9dbcae2302ae223afb395d5cd220bffa61a53d0ab6871d17c8bc830101cf \ + --hash=sha256:7051226e6b42ffc395a7a9190377cd28649fbfb991b8f85c6271f4e1cfb736fb \ + --hash=sha256:8b8bf972d99d48aaaa2582e2bce966a6f43bc815bd8725d15f5cab9e2fb15d17 \ + --hash=sha256:bbdc26d68ee5b23b0ce227fa0599220aa35b77c826b6b0a6b2d8e7f6c1c36974 \ + --hash=sha256:d059e8e53cc114ff82f9bd791fd341dc53534a2c745e6f6aa37594c3a93f01fe \ + --hash=sha256:e9364c26da389a8b7339e4d29e20a3d12af730247e6ed3b7804bddce2477f428 \ + --hash=sha256:f6c0288be940b607dc4a7476c01e67fb6bbee93f5f1dd42c64970274c71008ba \ + --hash=sha256:f91f0b13588324905682809d270e1de5f1990c908721c8527657d77a044c9919 + # via polars pydantic==2.13.4 \ --hash=sha256:45a282cde31d808236fd7ea9d919b128653c8b38b393d1c4ab335c62924d9aba \ --hash=sha256:c40756b57adaa8b1efeeced5c196f3f3b7c435f90e84ea7f443901bec8099ef6 # via - # dash - # mcp # numpydantic - # pydantic-settings # trendify pydantic-core==2.46.4 \ --hash=sha256:00c603d540afdd6b80eb39f078f33ebd46211f02f33e34a32d9f053bba711de0 \ @@ -1477,696 +647,53 @@ pydantic-core==2.46.4 \ --hash=sha256:fc010ab034c8c7452522748bf937df58020d256ccae0874463d1f4d01758af8e \ --hash=sha256:fc3e9034a63de20e15e8ade85358bc6efc614008cab72898b4b4952bea0509ff # via pydantic -pydantic-settings==2.14.2 \ - --hash=sha256:a20c97b37910b6550d5ea50fbcc2d4187defe58cd57070b73863d069419c9440 \ - --hash=sha256:c19dd64b19097f1de80184f0cc7b0272a13ae6e170cbf240a3e27e381ed14a5f - # via mcp -pydeck==0.9.2 \ - --hash=sha256:8213dfeacc5f6bfe6825f61c8ee34e3850e8a31fc43924379ec98edb34a75b25 \ - --hash=sha256:c10d9035e81ead6385264cac8d19402471f6866a15ca1f7df1400f52142bcf87 - # via streamlit -pyflakes==3.4.0 \ - --hash=sha256:b24f96fafb7d2ab0ec5075b7350b3d2d2218eab42003821c06344973d3ea2f58 \ - --hash=sha256:f742a7dbd0d9cb9ea41e9a24a918996e8170c799fa528688d40dd582c8265f4f - # via flake8 pygments==2.20.0 \ --hash=sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f \ --hash=sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176 # via - # mkdocs-material # pytest -pyjwt==2.13.0 \ - --hash=sha256:41571c89ca91598c79e8ef18a2d07367d4810fbbd6f637794879baf1b7703423 \ - --hash=sha256:66adcc2aff09b3f1bbd95fc1e1577df8ac8723c978552fd43304c8a290ac5728 - # via mcp -pymdown-extensions==11.0 \ - --hash=sha256:8269cef0247f9e2d0a62fcea10860aba05c1cbab5470fd4b63230b96434dc589 \ - --hash=sha256:fbc4acb641814fa9d17521bbd21a5240ef739a662f11c06330c4b78c93e954d6 - # via - # mkdocs-material - # mkdocstrings + # rich pyparsing==3.3.2 \ --hash=sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d \ --hash=sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc - # via - # matplotlib - # mike + # via matplotlib pytest==9.1.1 \ --hash=sha256:1088fbde8f2b49d95a549a195707afa7a76a3ce9bcadc26b6d71f0ffda5fe313 \ --hash=sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c - # via - # pytest-asyncio - # pytest-cov -pytest-asyncio==1.4.0 \ - --hash=sha256:933ca923a23075a87fb7070c0ec272a6848489824d887c85c812670932835aa1 \ - --hash=sha256:c6c0d2259945122819f171a32ecea2c349ead889ee28176caaf492143424be42 -pytest-cov==7.1.0 \ - --hash=sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2 \ - --hash=sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678 python-dateutil==2.9.0.post0 \ --hash=sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3 \ --hash=sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427 + # via matplotlib +rich==15.0.0 \ + --hash=sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb \ + --hash=sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36 # via - # ghp-import - # matplotlib - # pandas -python-dotenv==1.2.2 \ - --hash=sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a \ - --hash=sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3 - # via pydantic-settings -python-multipart==0.0.32 \ - --hash=sha256:be54b7f3fa167bb83e4fcd936b887b708f4e57fe75911c02aebf53efaf8d938e \ - --hash=sha256:ff6d3f776f16878c894e52e107296ffc890e913c611b1a4ec6c44e2821fe2e23 - # via - # mcp - # streamlit -pytokens==0.4.1 \ - --hash=sha256:140709331e846b728475786df8aeb27d24f48cbcf7bcd449f8de75cae7a45083 \ - --hash=sha256:24afde1f53d95348b5a0eb19488661147285ca4dd7ed752bbc3e1c6242a304d1 \ - --hash=sha256:26cef14744a8385f35d0e095dc8b3a7583f6c953c2e3d269c7f82484bf5ad2de \ - --hash=sha256:292052fe80923aae2260c073f822ceba21f3872ced9a68bb7953b348e561179a \ - --hash=sha256:29d1d8fb1030af4d231789959f21821ab6325e463f0503a61d204343c9b355d1 \ - --hash=sha256:3f901fe783e06e48e8cbdc82d631fca8f118333798193e026a50ce1b3757ea68 \ - --hash=sha256:4a14d5f5fc78ce85e426aa159489e2d5961acf0e47575e08f35584009178e321 \ - --hash=sha256:4a58d057208cb9075c144950d789511220b07636dd2e4708d5645d24de666bdc \ - --hash=sha256:5502408cab1cb18e128570f8d598981c68a50d0cbd7c61312a90507cd3a1276f \ - --hash=sha256:584c80c24b078eec1e227079d56dc22ff755e0ba8654d8383b2c549107528918 \ - --hash=sha256:5ad948d085ed6c16413eb5fec6b3e02fa00dc29a2534f088d3302c47eb59adf9 \ - --hash=sha256:6d6c4268598f762bc8e91f5dbf2ab2f61f7b95bdc07953b602db879b3c8c18e1 \ - --hash=sha256:79fc6b8699564e1f9b521582c35435f1bd32dd06822322ec44afdeba666d8cb3 \ - --hash=sha256:8bdb9d0ce90cbf99c525e75a2fa415144fd570a1ba987380190e8b786bc6ef9b \ - --hash=sha256:8fcb9ba3709ff77e77f1c7022ff11d13553f3c30299a9fe246a166903e9091eb \ - --hash=sha256:967cf6e3fd4adf7de8fc73cd3043754ae79c36475c1c11d514fc72cf5490094a \ - --hash=sha256:970b08dd6b86058b6dc07efe9e98414f5102974716232d10f32ff39701e841c4 \ - --hash=sha256:97f50fd18543be72da51dd505e2ed20d2228c74e0464e4262e4899797803d7fa \ - --hash=sha256:9bd7d7f544d362576be74f9d5901a22f317efc20046efe2034dced238cbbfe78 \ - --hash=sha256:b35d7e5ad269804f6697727702da3c517bb8a5228afa450ab0fa787732055fc9 \ - --hash=sha256:b49750419d300e2b5a3813cf229d4e5a4c728dae470bcc89867a9ad6f25a722d \ - --hash=sha256:d31b97b3de0f61571a124a00ffe9a81fb9939146c122c11060725bd5aea79975 \ - --hash=sha256:d70e77c55ae8380c91c0c18dea05951482e263982911fc7410b1ffd1dadd3440 \ - --hash=sha256:d9907d61f15bf7261d7e775bd5d7ee4d2930e04424bab1972591918497623a16 \ - --hash=sha256:dc74c035f9bfca0255c1af77ddd2d6ae8419012805453e4b0e7513e17904545d \ - --hash=sha256:ee44d0f85b803321710f9239f335aafe16553b39106384cef8e6de40cb4ef2f6 \ - --hash=sha256:f66a6bbe741bd431f6d741e617e0f39ec7257ca1f89089593479347cc4d13324 - # via black -pywin32==312 ; sys_platform == 'win32' \ - --hash=sha256:17948aeadbdb091f0ced6ef0841620794e68327b94ee415571c1203594b7215c \ - --hash=sha256:59aba5d5940842075343a5ddc6b11f1cdf0d1567fe745290359dfbcc7c2eb831 \ - --hash=sha256:5c1fbe4a937a73ae9297384a3da38518cbc694c68ad8a809b2e19acd350f03ed \ - --hash=sha256:6017c58e12f6809fbb0555b75df144c2922a9ffd18e4b9b5afa863b6c1a9d950 \ - --hash=sha256:7a27df850933d16a8eabfbaeb73d52b273e2da667f80d70b01a89d1f6828d02c \ - --hash=sha256:9fce94568364e0155e6dfb781ac5d95903be8baf28670632beab1b523f300daa \ - --hash=sha256:a4dd3a848290ef724347b19f301045831d8e802fa4464f491b98b1e0a081432e \ - --hash=sha256:a77a90fbb6881238d2ca9c6fd797b25817f3768fe78d214a90137ff055a75f5b \ - --hash=sha256:a8597d28f267b39074aef51fa593530082b39cbe5a074226096857b1fed2dfb9 \ - --hash=sha256:b2200a054ca6d6625c4842fc56a4976a4b47f96b73dbe5538c3f813a80359f47 \ - --hash=sha256:b457f6d628a47e8a7346ce22acb7e1a46a4a78b52e1d17e1af56871bd19a93bc \ - --hash=sha256:c2f03a0f73f804a13c2735b99392b0cd426bb4f2c4d0178e5ac966a0f21618d5 \ - --hash=sha256:c53e878d15a1c44788082bfe712a905433473aa38f86375b7cf8b45e3acbaaf9 \ - --hash=sha256:d11417d84412f859b722fad0841b3614459ed0047f7542d8362e77884f6b6e8a \ - --hash=sha256:dab4f65ac9c4e48400a2a0530c46c3c579cd5905ecd11b80692373915269208b - # via mcp -pyyaml==6.0.3 \ - --hash=sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c \ - --hash=sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3 \ - --hash=sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6 \ - --hash=sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c \ - --hash=sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65 \ - --hash=sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a \ - --hash=sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1 \ - --hash=sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310 \ - --hash=sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4 \ - --hash=sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea \ - --hash=sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e \ - --hash=sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac \ - --hash=sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9 \ - --hash=sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7 \ - --hash=sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35 \ - --hash=sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb \ - --hash=sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b \ - --hash=sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c \ - --hash=sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd \ - --hash=sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824 \ - --hash=sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065 \ - --hash=sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c \ - --hash=sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c \ - --hash=sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764 \ - --hash=sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196 \ - --hash=sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b \ - --hash=sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00 \ - --hash=sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac \ - --hash=sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8 \ - --hash=sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e \ - --hash=sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28 \ - --hash=sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3 \ - --hash=sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5 \ - --hash=sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf \ - --hash=sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5 \ - --hash=sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702 \ - --hash=sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788 \ - --hash=sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d \ - --hash=sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc \ - --hash=sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba \ - --hash=sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5 \ - --hash=sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26 \ - --hash=sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f \ - --hash=sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b \ - --hash=sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be \ - --hash=sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c \ - --hash=sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6 \ - --hash=sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0 - # via - # mike - # mkdocs - # mkdocs-get-deps - # properdocs - # pymdown-extensions - # pyyaml-env-tag -pyyaml-env-tag==1.1 \ - --hash=sha256:17109e1a528561e32f026364712fee1264bc2ea6715120891174ed1b980d2e04 \ - --hash=sha256:2eb38b75a2d21ee0475d6d97ec19c63287a7e140231e4214969d0eac923cd7ff - # via - # mike - # mkdocs - # properdocs -referencing==0.37.0 \ - --hash=sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231 \ - --hash=sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8 - # via - # jsonschema - # jsonschema-specifications -requests==2.34.2 \ - --hash=sha256:2a0d60c172f83ac6ab31e4554906c0f3b3588d37b5cb939b1c061f4907e278e0 \ - --hash=sha256:f288924cae4e29463698d6d60bc6a4da69c89185ad1e0bcc4104f584e960b9ed - # via - # dash - # grafana-api - # mkdocs-material - # streamlit -retrying==1.4.2 \ - --hash=sha256:bbc004aeb542a74f3569aeddf42a2516efefcdaff90df0eb38fbfbf19f179f59 \ - --hash=sha256:d102e75d53d8d30b88562d45361d6c6c934da06fab31bd81c0420acb97a8ba39 - # via dash -rpds-py==2026.6.3 \ - --hash=sha256:0be972be84cfcaf46c8c6edf690ca0f154ac17babf1f6a955a51579b34ad2dc5 \ - --hash=sha256:127565fead0a10943b282957bd5447804ff3160ad79f2ad2635e6d249e380680 \ - --hash=sha256:127e08c0642d880cf32ca47ec2a4a77b901f7e2dd1ad9762adb13955d72ffcc9 \ - --hash=sha256:166cf54d9f44fc6ceb53c7860258dde44a81406646de79f8ed3234fca3b6e538 \ - --hash=sha256:168c733a7112e071bb7a66460e667edfcff06c017a3c523f7a8a8e08d0140804 \ - --hash=sha256:1967debc37f64f2c4dc90a7f563aec558b471966e12adcac4e1c4240496b6ebf \ - --hash=sha256:1cebd1337c242e4ec2293e541f712b2da849b29f48f0c293684b71c0632625d4 \ - --hash=sha256:1cf01971c4f2c5553b772a542e4aaf191789cd331bc2cd4ff0e6e65ba49e1e97 \ - --hash=sha256:1e5822dfc2f0d4ab7e745eaa6d85945069329beeccef965af3f3bb26058fcab6 \ - --hash=sha256:22bffe6042b9bcb0822bcd1955ec00e245daf17b4344e4ed8e9551b976b63e96 \ - --hash=sha256:23a439f31ccbeff1574e24889128821d1f7917470e830cf6544dced1c662262a \ - --hash=sha256:24e9c5386e16669b674a69c156c8eeefcb578f3b3397b713b08e6d60f3c7b187 \ - --hash=sha256:270b293dae9058fc9fcedab50f13cebf46fb8ed1d1d54e0521a9da5d6b211975 \ - --hash=sha256:29dfa0533a5d4c94d4dfa1b694fcb56c9c63aad8330ffdd816fd225d0a7a162f \ - --hash=sha256:2a9c6f195058cb45335e8cc3802745c603d716eb96bc9625950c1aac71c0c703 \ - --hash=sha256:2bfd04c19ddbd6640de0b51894d764bd2758854d5b75bd102d2ef10cb9c293a9 \ - --hash=sha256:2c54a076ca4d370980ab57bc0e31df57bbe8d41340436a90ef8b1219a3cbb127 \ - --hash=sha256:2c958bf94822e9290a40aaf2a822d4bc5c88099093e3948ad6c571eca9272e5f \ - --hash=sha256:2c99f7e8ccb3dd6e3e4bfeac657a7b208c9bac8075f4b078c02d7404c34107fa \ - --hash=sha256:2f7c26fbc5acd2522b95d4177fe4710ffd8e9b20529e703ffbf8db4d93903f05 \ - --hash=sha256:30c6dc199b24a5e3e81d50da0f00858c5bbdb2617a750395687f4339c5818171 \ - --hash=sha256:38a2fea2787428f811719ceb9114cb78964a3138838320c29ac39526c79c16ba \ - --hash=sha256:3a83ae6c67b7676b9878378547ca8e93ed77a580037bcbcd1d32f739e1e6089c \ - --hash=sha256:3cfe765c1da0072636ca06628261e0ea05688e160d5c8a03e0217c3854037223 \ - --hash=sha256:421aba32367055614287a4292b6a17f1939c9452299f7a0209c117e990b646d4 \ - --hash=sha256:425560c6fa0415f27261727bb20bd097568485e5eb0c121f1949417d1c516885 \ - --hash=sha256:4470ce197d4090875cf6affbf1f853338387428df97c4fb7b7106317b8214698 \ - --hash=sha256:4cf2d36a2357e4d07bb5a4f98801265327b48256867816cfd2ceb001e9754a8f \ - --hash=sha256:4f4bca01b63096f606e095734dd56e74e175f94cfbf24ff3d63281cec61f7bb7 \ - --hash=sha256:501f9f04a588d6a09179368c57071301445191767c64e4b52a6aa9871f1ef5ed \ - --hash=sha256:536bceea4fa4acf7e1c61da2b5786304367c816c8895be71b8f537c480b0ea1f \ - --hash=sha256:538949e262e46caa31ac01bdb3c1e8f642622922cacbabbae6a8445d9dc33eaf \ - --hash=sha256:539d75de9e0d536c84ff18dfeb805398e58227001ce09231a26a08b9aed1ee0e \ - --hash=sha256:54f45a148e28767bf343d33a684693c70e451c6f4c0e9904709a723fafbdfc1f \ - --hash=sha256:55927d532399c2c646100ff7feb48eaa940ad70f42cd68e1328f3ded9f81ca24 \ - --hash=sha256:58eadac9cd119677b60e1cf8ac4052f35949d71b8a9e5556efccbe82533cf22a \ - --hash=sha256:5e8d07bddee435a2ff6f1920e18feff28d0bc4533e42f4bf6927fbd073312c41 \ - --hash=sha256:62698275682bf121181861295c9181e789030a2d516071f5b8f3c23c170cd0fc \ - --hash=sha256:639c8929aa0afe81be836b04de888460d6bed38b9c54cfc18da8f6bfabf5af5d \ - --hash=sha256:67e3a721ffc5d8d2210d3671872298c4a84e4b8035cfe42ffd7cde35d772b146 \ - --hash=sha256:6de4744d05bd1aa1be4ed7ea1189e3979196808008113bbbf899a460966b925e \ - --hash=sha256:6e84adbcf4bf841aed8116a8264b9f50b4cb3e7bd89b516122e616ac56ca269e \ - --hash=sha256:7491ee23305ac3eb59e492b6945881f5cd77a6f731061a3f25b77fd40f9e99a4 \ - --hash=sha256:79486287de1730dbaff3dbd124d0ca4d2ef7f9d29bf2544f1f93c09b5bcbbd12 \ - --hash=sha256:7b689145a1485c335569bd056464f3243a29af7ed3871c7be31ad624ba239bc7 \ - --hash=sha256:7f88d653e7b3b779d71ae7454e20dcc9b6bae903f33c269db9f2be41bda3f261 \ - --hash=sha256:8020133a74bd81b4572dd8e4be028a6b1ebcd70e6726edc3918008c08bee6ee6 \ - --hash=sha256:808345f53cb952433ca2816f1604ff3515608a81784954f38d4452acfe8e61d5 \ - --hash=sha256:83e35b57523816c8613fd0776b40cd8bb9f596b37ddd2692eb4a6bb5ab2f8c93 \ - --hash=sha256:842e7b070435622248c7a2c44ae53fa1440e073cc3023bc919fed570884097a7 \ - --hash=sha256:847927daf4cffbd4e90e42bc890069897101edd015f956cb8721b3473372edda \ - --hash=sha256:882076c00c0a608b131187055ddc5ae29f2e7eaf870d6168980420d58528a5c8 \ - --hash=sha256:8b95977e7211527ab0ba576e286d023389fbeeb32a6b7b771665d333c60e5342 \ - --hash=sha256:8bb68f03f395eb793220b45c097bd4d8c32944393da0fad8b999efac0868fc8c \ - --hash=sha256:8c2642a7603ec0b16ed77da4555db3b4b472341904873788327c0b0d7b95f1bb \ - --hash=sha256:8c3d1e9c15b9d51ca0391e13da1a25a0a4df3c58a37c9dc368e0736cf7f69df0 \ - --hash=sha256:8c6e5a2f750cc71c3e3b11d71661f21d6f9bc6cebc6564b1466417a1ec03ec77 \ - --hash=sha256:8d2294a31386bfa251d8c8a39472beee17db67d4f1a6eabea665d35c9a4461c3 \ - --hash=sha256:8e4320744c1ffdd95a603def63344bfab2d33edeab301c5007e7de9f9f5b3885 \ - --hash=sha256:8e65860d238379ed982fd9ba690579b5e95af2f4840f99c772816dbe573cb826 \ - --hash=sha256:8f2e5c5ee828d42cb11760761c0af6507927bec42d0ad5458f97c9203b054617 \ - --hash=sha256:900a67df3fd1660b035a4761c4ce73c382ea6b35f90f9863c36c6fd8bf8b09bb \ - --hash=sha256:913ca42ccad3f8cc6e292b587ae8ae49c8c823e5dce51a736252fc7c7cdfa577 \ - --hash=sha256:9250a9a0a6fd4648b3f868da8d91a4c52b5811a62df58e753d50ae4454a36f80 \ - --hash=sha256:931908d9fc855d8f74783377822be318edb6dcb19e47169dc038f9a1bf60b06e \ - --hash=sha256:9826217f048f620d9a712672818bf231442c1b35d96b227a07eabd11b4bb6945 \ - --hash=sha256:9891e594296ab9dada6551c8e7b387b2721f27a67eecd528412e8906247a7b90 \ - --hash=sha256:9c1255b302953c86a486b81d330d5ee1d5bd937691ce271b6be0ef0e299eaab7 \ - --hash=sha256:a0811d33247c3d6128a3001d763f2aa056bb3425204335400ac54f89eec3a0d0 \ - --hash=sha256:a136d453475ac0fcbda502ef1e6504bd28d6d904700915d278deeab0d00fe140 \ - --hash=sha256:a214c993455f99a89aaeadc9b21241900037adc9d97203e374d75513c5911822 \ - --hash=sha256:a3086b538543802f84c843911242db20447de00d8752dd0efc936dbcf02218ba \ - --hash=sha256:a3450b693fde92133e9f51060568a4c31fcca76d5e53bbd611e689ca446517e9 \ - --hash=sha256:a550fb4950a06dde3beb4721f5ad4b25bf4513784665b0a8522c792e2bd822a4 \ - --hash=sha256:a9f4645593036b81bbdb36b9c8e0ea0d1c3fee968c4d59db0344c14087ef143a \ - --hash=sha256:aca6c1ef08a82bfe327cc156da694660f599923e2e6665b6d81c9c2d0ac9ffc8 \ - --hash=sha256:acac386b453c2516111b50985d60ce46e7fadb5ea71ae7b25f4c946935bf27cf \ - --hash=sha256:acc992ab27b15f852c76755eb2ab7dce86585ddadba6fa5946e58556088845b4 \ - --hash=sha256:ae3d4fe8c0b9213624fdce7279d70e3b148b682ca20719ebd193a23ebfa47324 \ - --hash=sha256:ae50181a047c871561212bb97f7932a2d45fb53e947bd9b57ebad85b529cbc53 \ - --hash=sha256:ae6dd8f10bd17aad820876d24caec9efdafd80a318d16c0a48edb5e136902c6b \ - --hash=sha256:af05d726809bff6b141be124d4c7ce998f9c9c7f30edb1f46c07aa103d540b41 \ - --hash=sha256:afd70d95892096cdb26f15a00c45907b17817577aa8d1c76b2dcc2788391f9e9 \ - --hash=sha256:b5c2dc92304aa48a4a60443b548bb12f12e119d4b72f314015e67b9e1be97fca \ - --hash=sha256:bc0011654b91cc4fb2ae701bec0a0ba1e552c0714247fa7af6c59e0ccfa3a4e1 \ - --hash=sha256:bcfbcf66006befb9fd2aeaa9e01feaf881b4dc330a02ba07d2322b1c11be7b5d \ - --hash=sha256:bdbd97738551fca3917c1bd7188bec1920bb520104f28e7e1007f9ceb17b7690 \ - --hash=sha256:c60924535c75f1566b6eb75b5c31a48a43fef04fa2d0d201acbad8a9969c6107 \ - --hash=sha256:c7b9a2f8f4d8e90af72571d3d495deebdd7e3c75451f5b41719aee166e940fc2 \ - --hash=sha256:ca6546b66be9dc4738b1b043d5ebd5488c66c578c5ff0fd0e8065313fe3afb76 \ - --hash=sha256:ccffae9a092a00deb7efd545fe5e2c33c33b88e7c054337e9a74c179347d0b7d \ - --hash=sha256:cdc7e35386f3847df728fbcb5e887e2d79c19e2fa1eba9e51b6621d23e3243af \ - --hash=sha256:d15fde0e6fb0d88a60d221204873743e5d9f0b7d29165e62cd86d0413ad74ba6 \ - --hash=sha256:d34c20167764fbcf927194d532dd7e0c56772f0a5f943fa5ef9e9afbba8fb9db \ - --hash=sha256:d483fe17f01ad64b7bf7cc38fcefff1ca9fb83f8c2b2542b68f97ffe0611b369 \ - --hash=sha256:d7469697dce35be237db177d42e2a2ee26e6dcc5fc052078a6fefabd288c6edd \ - --hash=sha256:db08f45aecde626498fb3df07bcf6d2ec040af42e859a4f5040d79c200342911 \ - --hash=sha256:dc319e5a1de4b6913aac94bf6a2f9e847371e0a140a43dd4991db1a09bc2d504 \ - --hash=sha256:de3eceba0b683bcbb1ab93da016d0270df1f9ae7be716b40214c5dafac6ea45a \ - --hash=sha256:dfcc8b909769d19db55c7cc9541eb64b9b774b1057ffffb4f1048070475bb9f9 \ - --hash=sha256:e059c5dde6452b44424bd1834557556c226b57781dee1227af23518459722b13 \ - --hash=sha256:e4316bf32babbed84e691e352faf967ce2f0f024174a8643c37c94a1080374fc \ - --hash=sha256:e52655eaf81e32593abedaa4bfe33170c8cfedf3365ed9be6e11e07f148f0278 \ - --hash=sha256:e55d236be29255554da47abe5c577637db7c24a02b8b46f0ca9524c855801868 \ - --hash=sha256:ea7bb13b7c9a29791f87a0387ba7d3ad3a6d783d827e4d3f27b40a0ff44495e2 \ - --hash=sha256:ea964164cc9afa72d4d9b23cc28dafae93693c0a53e0b42acbff15b22c3f9ddd \ - --hash=sha256:ec829541c45bca16e61c7ae50c20501f213605beb75d1aba91a6ee37fbbb56a4 \ - --hash=sha256:ecabd69db66de867690f9797f2f8fa27ba501bbc24540cbdbdc649cd15888ba6 \ - --hash=sha256:ed0c1e5d10cdc7135537988c74a0188da68e2f3c30813ba3744ab1e42e0480f9 \ - --hash=sha256:f0840b5b17057f7fd918b76183a4b5a0635f43e14eb2ce60dce1d4ee4707ea00 \ - --hash=sha256:f4d78253f6996be4901669ad25319f842f740eccf4d58e3c7f3dd39e6dde1d8f \ - --hash=sha256:f56f1695bc5c0871cbc33dc0130fcf503aab0c57dcc5a6700a4f49eba4f2652e \ - --hash=sha256:f826877d462181e5eb1c26a0026b8d0cab05d99844ecb6d8bf3627a2ca0c0442 \ - --hash=sha256:f8f23ead891a3b762f35ab3b04623da7056545b48aa60d59957e6789914545da \ - --hash=sha256:f90938e92afda60266da758ee7d363447f7f0138c9559f9e1811629580582d90 \ - --hash=sha256:faa679d19a6696fd54259ad321251ad77a13e70e03dd834daa762a44fb6196ef - # via - # jsonschema - # referencing -scipy==1.17.1 ; python_full_version < '3.12' \ - --hash=sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0 \ - --hash=sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458 \ - --hash=sha256:08b900519463543aa604a06bec02461558a6e1cef8fdbb8098f77a48a83c8118 \ - --hash=sha256:131f5aaea57602008f9822e2115029b55d4b5f7c070287699fe45c661d051e39 \ - --hash=sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e \ - --hash=sha256:1cc682cea2ae55524432f3cdff9e9a3be743d52a7443d0cba9017c23c87ae2f6 \ - --hash=sha256:1f95b894f13729334fb990162e911c9e5dc1ab390c58aa6cbecb389c5b5e28ec \ - --hash=sha256:200e1050faffacc162be6a486a984a0497866ec54149a01270adc8a59b7c7d21 \ - --hash=sha256:2040ad4d1795a0ae89bfc7e8429677f365d45aa9fd5e4587cf1ea737f927b4a1 \ - --hash=sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6 \ - --hash=sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce \ - --hash=sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8 \ - --hash=sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448 \ - --hash=sha256:3877ac408e14da24a6196de0ddcace62092bfc12a83823e92e49e40747e52c19 \ - --hash=sha256:3fd1fcdab3ea951b610dc4cef356d416d5802991e7e32b5254828d342f7b7e0b \ - --hash=sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87 \ - --hash=sha256:43af8d1f3bea642559019edfe64e9b11192a8978efbd1539d7bc2aaa23d92de4 \ - --hash=sha256:45abad819184f07240d8a696117a7aacd39787af9e0b719d00285549ed19a1e9 \ - --hash=sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b \ - --hash=sha256:4eb6c25dd62ee8d5edf68a8e1c171dd71c292fdae95d8aeb3dd7d7de4c364082 \ - --hash=sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464 \ - --hash=sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87 \ - --hash=sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c \ - --hash=sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369 \ - --hash=sha256:6e3dcd57ab780c741fde8dc68619de988b966db759a3c3152e8e9142c26295ad \ - --hash=sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f \ - --hash=sha256:744b2bf3640d907b79f3fd7874efe432d1cf171ee721243e350f55234b4cec4c \ - --hash=sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475 \ - --hash=sha256:766e0dc5a616d026a3a1cffa379af959671729083882f50307e18175797b3dfd \ - --hash=sha256:7bdf2da170b67fdf10bca777614b1c7d96ae3ca5794fd9587dce41eb2966e866 \ - --hash=sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d \ - --hash=sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6 \ - --hash=sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb \ - --hash=sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca \ - --hash=sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0 \ - --hash=sha256:9cdc1a2fcfd5c52cfb3045feb399f7b3ce822abdde3a193a6b9a60b3cb5854ca \ - --hash=sha256:9ecb4efb1cd6e8c4afea0daa91a87fbddbce1b99d2895d151596716c0b2e859d \ - --hash=sha256:a3472cfbca0a54177d0faa68f697d8ba4c80bbdc19908c3465556d9f7efce9ee \ - --hash=sha256:a4328d245944d09fd639771de275701ccadf5f781ba0ff092ad141e017eccda4 \ - --hash=sha256:a48a72c77a310327f6a3a920092fa2b8fd03d7deaa60f093038f22d98e096717 \ - --hash=sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49 \ - --hash=sha256:a77cbd07b940d326d39a1d1b37817e2ee4d79cb30e7338f3d0cddffae70fcaa2 \ - --hash=sha256:a9956e4d4f4a301ebf6cde39850333a6b6110799d470dbbb1e25326ac447f52a \ - --hash=sha256:adb2642e060a6549c343603a3851ba76ef0b74cc8c079a9a58121c7ec9fe2350 \ - --hash=sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950 \ - --hash=sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b \ - --hash=sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086 \ - --hash=sha256:cd96a1898c0a47be4520327e01f874acfd61fb48a9420f8aa9f6483412ffa444 \ - --hash=sha256:d2650c1fb97e184d12d8ba010493ee7b322864f7d3d00d3f9bb97d9c21de4068 \ - --hash=sha256:d30e57c72013c2a4fe441c2fcb8e77b14e152ad48b5464858e07e2ad9fbfceff \ - --hash=sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a \ - --hash=sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50 \ - --hash=sha256:e18f12c6b0bc5a592ed23d3f7b891f68fd7f8241d69b7883769eb5d5dfb52696 \ - --hash=sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21 \ - --hash=sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c \ - --hash=sha256:eb092099205ef62cd1782b006658db09e2fed75bffcae7cc0d44052d8aa0f484 \ - --hash=sha256:eee2cfda04c00a857206a4330f0c5e3e56535494e30ca445eb19ec624ae75118 \ - --hash=sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3 \ - --hash=sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea \ - --hash=sha256:f8885db0bc2bffa59d5c1b72fad7a6a92d3e80e7257f967dd81abb553a90d293 \ - --hash=sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76 - # via trendify -scipy==1.18.0 ; python_full_version >= '3.12' \ - --hash=sha256:09143f676d157d9f546d663504ef9c1becb819824f1afc018814176411942446 \ - --hash=sha256:0d13bca67c096d89fb95ced0d8921807300fce0275643aef9533cc63a0773468 \ - --hash=sha256:18e9575f1569b2c54174e6159d32942e03731177f63dce7975f0a0c88d102f5b \ - --hash=sha256:1a4441f15d620578772a49e5ab48c0ee1f7a0220e387110283062729136b2553 \ - --hash=sha256:1ad44305cfa24b1ba5803cbbebf033590ccbac1aa5d612d727b785325ab408b0 \ - --hash=sha256:1afac4a847207c7ff8efd321734a50b06d0280b3b2a2c0fc2f413101747ad7c7 \ - --hash=sha256:1f55797419e16e7f30cf88ffb3113ce0467f00cfe3f70d5c281730b21769bfc2 \ - --hash=sha256:265915e79107de9f946b855e50d7470d5893ec3f54b342e1aa6201cbdcd8bb6b \ - --hash=sha256:2d8bbdc6c817f5b4006a54d799d4f5bab6f910193cbb9a1ff310833d4d270f61 \ - --hash=sha256:2ef3abc54a4ffc53765374b0d5728532dfdd2585ed23f6b11c206a1f0b1b9af8 \ - --hash=sha256:368e0a705903c466aa5f08eefb39e6b1b6b2d659e7352a31fd9e2438365be0f8 \ - --hash=sha256:3f1ac564d3bf6c03d861d2cd87a1bea0da2887136f7fb1bf519c05a8971452d6 \ - --hash=sha256:40395a5fcd1abee49a5c7aaa98c29db393eedc835138560a588c47ec16156690 \ - --hash=sha256:4a55985d54c769c872e64b7f4c8a81cc30ef700cc04296abbbf3705439c126de \ - --hash=sha256:4c256ee70c0d1a8a2ace807e199ccd4e3f57037433842abb3fb36bc17eaa9578 \ - --hash=sha256:52a96e21517c7292375c0e27dd796a811f03fcea5fd4d108fdfea8145dcf17ab \ - --hash=sha256:56abf29a7c067dde59be8b9a22d606a4ea1b2f2a4b756d9d903c62818f5dacce \ - --hash=sha256:5aba46108853ddfc77906b6557aac839d2b52e900c1d72a1180adaaab58d265f \ - --hash=sha256:5efe260f69417b97ddae455bfb5a95e8359f7f66ad7fa9522a60feb66f169520 \ - --hash=sha256:67b2ad2ad54c72ca6d04975a9b2df8c3638c34ddd5b28738e94fc2b57929d378 \ - --hash=sha256:68363b7eaacd8b5dd426df56d782cc156468ac79a127a1b87ca597d6e2e82197 \ - --hash=sha256:6aa94e78ec192a30063a5e72e561c28af769dc311190b24fe91774eff1969709 \ - --hash=sha256:71ccc8faa2dd16ac310233203474a8b5cb67f10dedd54a3116d34943f4b19132 \ - --hash=sha256:7a7f3b01647384dbc3a711e8c6778e0aabbe93959249fef5c7393396bcac0867 \ - --hash=sha256:7bd21faaf5a1a3b2eff922d02db5f191b99a6518db9078a8fb23169f6d22259a \ - --hash=sha256:7c7a51b33ce387193c97f228320cf8e87361daa1bba750638677729598b3e677 \ - --hash=sha256:84031d7b052a54fae2f8632e0ec802073d385476eb9a63079bce6e23ef9283d4 \ - --hash=sha256:8ca01e8ae69f1b18e9a58d91afead31be3cef0dd905a10249dac559ee15460a0 \ - --hash=sha256:945c1761b93f38d7f99ae81ae80c63e621471608c7eeead563f6df025585cd58 \ - --hash=sha256:97b6cddaaee0a779ef6b5ca83c9604b27cc16b2b8fc22c142652df8793319fb8 \ - --hash=sha256:9aac6192fac56bf2ca534389d24623f07b39ff83317d58287285e7fbd622ff76 \ - --hash=sha256:9ab7b758be6940954a713ee466e2043e9f6e2ed965c1fce5c91039f4be3d90a9 \ - --hash=sha256:a46f9273dbd0eb1cefba61c9b8648b4dfe3cbc14a080176f9a73e44b8336dc7f \ - --hash=sha256:ad033410e2e0672ffdc1042110cef20e1c46f8fd0616cee1d44d8d58fad8fc11 \ - --hash=sha256:b6f758e35f12757b5d95c00bc6de2438e229c2664b7a92e96f205959d9f2dfa4 \ - --hash=sha256:c5557d8be5da8e41353fcd4d21491fdbab83b062fc579e94dc09a7c8ab4f669b \ - --hash=sha256:c5dbddf60e58c2312316d097271a8e73d40eaf2eabfa4d95ed7d3695bbf2ce7b \ - --hash=sha256:d88363fd9d8fbd3511bd273f1a49efb2a540773ddf92a91d57498ce7dd7f3e76 \ - --hash=sha256:e40baea28ae7f5475c779741e2d90b1247c78531207b49c7030e698ff81cee3f \ - --hash=sha256:f2a6af57bd9e4a75d70e4117e78a1bbee84f79ae3fbb6d0111005d6ebcc4cb8d \ - --hash=sha256:f351e0dd702687d12a402b867a1b4146a256923e1c38317cbc472f6372b94707 - # via trendify -selectolax==0.4.10 \ - --hash=sha256:01c1354b158f8c87b72ab50a12b4b6d7b276150ded39210d1078d65d1e24ae0d \ - --hash=sha256:16055f712bd93507ce61ecac156bb7acf96b2e46c4d4d30c616e810f74f4da6e \ - --hash=sha256:1bb589f6ed0f1ec28784c2cd29de111a5b6f8129c3ecf0e71b9665e588667b97 \ - --hash=sha256:1ff2585eaf13ddc5c6614b10a7e47679b0c18a78821495e0c448364f8871592e \ - --hash=sha256:2428f04d2a48ba5f4c182f0d7234a7e38ac799b3358b3063f0ae41f754ee1c4a \ - --hash=sha256:3236fc0fbea9e237ee963274ebae700e68b9d6784bf91e0b3693eda63b393fa2 \ - --hash=sha256:373298d5c2e22a73740ba8f60a5813fd6bdb8fa2c0fd170841341ad0119bdf6b \ - --hash=sha256:3c21749e3d252419581160f3a3e43c1ad95dd0f83a13fe0d8c8fe6256bf7bbe6 \ - --hash=sha256:40babac4aea579edfb32b74acdacdb4c38bacb1ee3d1c4189f9665c52c67586f \ - --hash=sha256:40ecd0ff315dffa4a55840107367b0a54f2cd35be66e700c619364e0cd087ace \ - --hash=sha256:425288d4f5b18cfb0049fd1d6f3bddfba319657b9547b0e2bd24103b4b69435e \ - --hash=sha256:48c238f4f2b4ebd3d94ec260363d2bbab7df2825b592a1f9b12d59a9a9e9ee9a \ - --hash=sha256:4b0e1ad8b3d3d11bc173d33bb0fcf9d3ef8c667f1f3debd31ac8e9e3880ee174 \ - --hash=sha256:4d41b7e95ab0e025053efcba71267af12a6c12bc624e3bdf5dd83c6534f3d696 \ - --hash=sha256:547de570413e22ae5cbc8432d6224dd5a2d5bc66d1a50e34b705e5940d035caa \ - --hash=sha256:5d5b5437ce7548e7bc0b7712114de07dd0e4f94a30b06c968a6344148621df50 \ - --hash=sha256:6517b40e41ae5cc7756f92d88c59f178eb4a3683c7ce39c66bd5617587f628e5 \ - --hash=sha256:67f826152635521e1751665e315f3be82d027fe79d6446bf8434e0f7069e55db \ - --hash=sha256:68e1ef717b47f5cdcd1b151b2176d7184c38cb3772f8964509979840575203ef \ - --hash=sha256:746838a34df35ceff5f6154991b09aa6c27f044dc1fe9a4137f8c57e3e9f1203 \ - --hash=sha256:794a10f0c2cb9662ad85c5a970a72ca072057d68f7f0b3cf7b3230e5f2a8f221 \ - --hash=sha256:7c596b424c55ae87003140f55e6aa6f88e060b645781fa69e947ef60691b2bde \ - --hash=sha256:88475ef523fe5426d113e8319eeb741806a51cc025840f337661734c65cf1aa4 \ - --hash=sha256:89764b4d1e32d38e635dfb270a639fc707af4315b863fd161357a517321e5046 \ - --hash=sha256:8b57c64690e3c86b5d07386e2e598f4d3b4990144b1d5717db7038d0b675a97e \ - --hash=sha256:8c74168deeb116a1271e74e7a157e329930b7f54e328b323ce00bf7089f39dc9 \ - --hash=sha256:975bf1199c80965307168a05c4d88312a62b8151ac27216ed1248fbd175695bb \ - --hash=sha256:98e41ac4a761c5d4589ce9c40866a80fa2c5d413ac6b3af9546b43a2b3a8da18 \ - --hash=sha256:98f93b92d23a8feb88efc7c8e692221456bae30dc551d86d376931491152b909 \ - --hash=sha256:9c4c9afbd28b81892806e9699ecd323656e1eff7318c1245e80cd6bb78566a99 \ - --hash=sha256:a5c80477a3a93f0ee350d832c6fc764cd2df1299914a816bcd5ed4f0c9701b9b \ - --hash=sha256:a95f67ed9d5947562e9268332cc7165660c7db0cd3faea959e13b6901b4d323f \ - --hash=sha256:a96d59ba2a8ba01e4f732913816f5684d30d0646b7cd0fa17377fc9d1032cc0d \ - --hash=sha256:ab07fc342cf477c0320d22fac52917b824871caf5ab177a0fd94377a901ab657 \ - --hash=sha256:ab8f95b196b2dfb2be3ea7274673d45bb251ec2e16a0e7a3c1fc21c1c20d0722 \ - --hash=sha256:b3d199a73894368b83e5d744f64bddf80c22a37c160253a8e81c1a6000be607b \ - --hash=sha256:b43da45acece07f94e4b0d555e073f1a91314c98cb86d10860a1b291bc498976 \ - --hash=sha256:b65ce508ed7f3951a2f36f807494c253d0ebe99d2b18ede149f9a97b99be7d7a \ - --hash=sha256:c1933f53fe7410777b3373b9900010ae8d392a6d245f019d8f011d12f700e389 \ - --hash=sha256:c1bb382bd7009676716814ee81327015ab3d472aff0148fccbd20322d37af83d \ - --hash=sha256:c4b4b7c5d09a20539d369891332a107a869ee170453254048fbc18f893deb4f9 \ - --hash=sha256:d42566a7e649d4e5461e763a241f46542df2613876422e0530bc59999063f36d \ - --hash=sha256:d60cabbf1899916a6389fa36f2908b1a76e00dd044f710ae3dd2d0b14919dfc7 \ - --hash=sha256:db236a92e49b27369a98b9e8ac6c97e1534368d83281d097f3e50c2ba597f112 \ - --hash=sha256:e053064c5e00788a6bcc5427a753e41c058f29e4285bf84a3e663989b7218cdb \ - --hash=sha256:ec333fe02c4b7d8a03c0aa58c7c2265edd3312b1ef309f03efd020f595f6dae1 - # via mkdocs-glightbox -setuptools==82.0.1 \ - --hash=sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9 \ - --hash=sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb - # via dash + # trendify + # typer +shellingham==1.5.4 \ + --hash=sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686 \ + --hash=sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de + # via typer six==1.17.0 \ --hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \ --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81 # via python-dateutil -smmap==5.0.3 \ - --hash=sha256:4d9debb8b99007ae47165abc08670bd74cb74b5227dda7f643eccc4e9eb5642c \ - --hash=sha256:c106e05d5a61449cf6ba9a1e650227ecfb141590d2a98412103ff35d89fc7b2f - # via gitdb -sse-starlette==3.4.5 \ - --hash=sha256:83072538bc211a2f68b7b0422226c4af3e9b62e106e07034664b832ca019842a \ - --hash=sha256:e71bad53323f65573c3864a6c3bd0c1eb6e5f092b2e48082b0c35927d19ca296 - # via mcp -starlette==1.3.1 \ - --hash=sha256:05d0213193f2fbaae60e2ecb593b4add4262ad4e46536b54abe36f11a71724e0 \ - --hash=sha256:c7372aae11c3c3f26a42df7bd626cec2f47d03483d261d369516a615a53714c6 - # via - # mcp - # sse-starlette - # streamlit -streamlit==1.58.0 \ - --hash=sha256:4ca8a7afc5bd16a5f176ccf4be1e34e8121cad0240becd127fb58a103ea3178d \ - --hash=sha256:78a22e7085b053af7ce544442bf4b670771e68c509ba1bdaa056ba0708f49c3d - # via trendify -strenum==0.4.15 \ - --hash=sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff \ - --hash=sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659 +typer==0.26.8 \ + --hash=sha256:3512ca79ac5c11113414b36e80281b872884477722440691c89d1112e321a49c \ + --hash=sha256:c244a6bd558886fe3f8780efb6bdd28bb9aff005a94eedebaa5cb32926fe2f7e # via trendify -supervisor==4.3.0 \ - --hash=sha256:0bcb763fddafba410f35cbde226aa7f8514b9fb82eb05a0c85f6588d1c13f8db \ - --hash=sha256:4a2bf149adf42997e1bb44b70c43b613275ec9852c3edacca86a9166b27e945e - # via trendify -tenacity==9.1.4 \ - --hash=sha256:6095a360c919085f28c6527de529e76a06ad89b23659fa881ae0649b867a9d55 \ - --hash=sha256:adb31d4c263f2bd041081ab33b498309a57c77f9acf2db65aadf0898179cf93a - # via streamlit -toml==0.10.2 \ - --hash=sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b \ - --hash=sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f - # via streamlit -tomli==2.4.1 ; python_full_version <= '3.11' \ - --hash=sha256:01f520d4f53ef97964a240a035ec2a869fe1a37dde002b57ebc4417a27ccd853 \ - --hash=sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe \ - --hash=sha256:136443dbd7e1dee43c68ac2694fde36b2849865fa258d39bf822c10e8068eac5 \ - --hash=sha256:1d8591993e228b0c930c4bb0db464bdad97b3289fb981255d6c9a41aedc84b2d \ - --hash=sha256:2190f2e9dd7508d2a90ded5ed369255980a1bcdd58e52f7fe24b8162bf9fedbd \ - --hash=sha256:2c1c351919aca02858f740c6d33adea0c5deea37f9ecca1cc1ef9e884a619d26 \ - --hash=sha256:36d2bd2ad5fb9eaddba5226aa02c8ec3fa4f192631e347b3ed28186d43be6b54 \ - --hash=sha256:3d48a93ee1c9b79c04bb38772ee1b64dcf18ff43085896ea460ca8dec96f35f6 \ - --hash=sha256:47149d5bd38761ac8be13a84864bf0b7b70bc051806bc3669ab1cbc56216b23c \ - --hash=sha256:4ab97e64ccda8756376892c53a72bd1f964e519c77236368527f758fbc36a53a \ - --hash=sha256:4b605484e43cdc43f0954ddae319fb75f04cc10dd80d830540060ee7cd0243cd \ - --hash=sha256:504aa796fe0569bb43171066009ead363de03675276d2d121ac1a4572397870f \ - --hash=sha256:51529d40e3ca50046d7606fa99ce3956a617f9b36380da3b7f0dd3dd28e68cb5 \ - --hash=sha256:52c8ef851d9a240f11a88c003eacb03c31fc1c9c4ec64a99a0f922b93874fda9 \ - --hash=sha256:559db847dc486944896521f68d8190be1c9e719fced785720d2216fe7022b662 \ - --hash=sha256:5a881ab208c0baf688221f8cecc5401bd291d67e38a1ac884d6736cbcd8247e9 \ - --hash=sha256:5cb41aa38891e073ee49d55fbc7839cfdb2bc0e600add13874d048c94aadddd1 \ - --hash=sha256:5e262d41726bc187e69af7825504c933b6794dc3fbd5945e41a79bb14c31f585 \ - --hash=sha256:5ee18d9ebdb417e384b58fe414e8d6af9f4e7a0ae761519fb50f721de398dd4e \ - --hash=sha256:7008df2e7655c495dd12d2a4ad038ff878d4ca4b81fccaf82b714e07eae4402c \ - --hash=sha256:734e20b57ba95624ecf1841e72b53f6e186355e216e5412de414e3c51e5e3c41 \ - --hash=sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f \ - --hash=sha256:7f86fd587c4ed9dd76f318225e7d9b29cfc5a9d43de44e5754db8d1128487085 \ - --hash=sha256:7f94b27a62cfad8496c8d2513e1a222dd446f095fca8987fceef261225538a15 \ - --hash=sha256:88dceee75c2c63af144e456745e10101eb67361050196b0b6af5d717254dddf7 \ - --hash=sha256:8a650c2dbafa08d42e51ba0b62740dae4ecb9338eefa093aa5c78ceb546fcd5c \ - --hash=sha256:8d65a2fbf9d2f8352685bc1364177ee3923d6baf5e7f43ea4959d7d8bc326a36 \ - --hash=sha256:96481a5786729fd470164b47cdb3e0e58062a496f455ee41b4403be77cb5a076 \ - --hash=sha256:a120733b01c45e9a0c34aeef92bf0cf1d56cfe81ed9d47d562f9ed591a9828ac \ - --hash=sha256:b1d22e6e9387bf4739fbe23bfa80e93f6b0373a7f1b96c6227c32bef95a4d7a8 \ - --hash=sha256:b8c198f8c1805dc42708689ed6864951fd2494f924149d3e4bce7710f8eb5232 \ - --hash=sha256:c2541745709bad0264b7d4705ad453b76ccd191e64aa6f0fc66b69a293a45ece \ - --hash=sha256:c742f741d58a28940ce01d58f0ab2ea3ced8b12402f162f4d534dfe18ba1cd6a \ - --hash=sha256:c7f2c7f2b9ca6bdeef8f0fa897f8e05085923eb091721675170254cbc5b02897 \ - --hash=sha256:d312ef37c91508b0ab2cee7da26ec0b3ed2f03ce12bd87a588d771ae15dcf82d \ - --hash=sha256:d4d8fe59808a54658fcc0160ecfb1b30f9089906c50b23bcb4c69eddc19ec2b4 \ - --hash=sha256:da25dc3563bff5965356133435b757a795a17b17d01dbc0f42fb32447ddfd917 \ - --hash=sha256:eab21f45c7f66c13f2a9e0e1535309cee140182a9cdae1e041d02e47291e8396 \ - --hash=sha256:eb0dc4e38e6a1fd579e5d50369aa2e10acfc9cace504579b2faabb478e76941a \ - --hash=sha256:ec9bfaf3ad2df51ace80688143a6a4ebc09a248f6ff781a9945e51937008fcbc \ - --hash=sha256:ede3e6487c5ef5d28634ba3f31f989030ad6af71edfb0055cbbd14189ff240ba \ - --hash=sha256:f3c6818a1a86dd6dca7ddcaaf76947d5ba31aecc28cb1b67009a5877c9a64f3f \ - --hash=sha256:f758f1b9299d059cc3f6546ae2af89670cb1c4d48ea29c3cacc4fe7de3058257 \ - --hash=sha256:f8f0fc26ec2cc2b965b7a3b87cd19c5c6b8c5e5f436b984e85f486d652285c30 \ - --hash=sha256:fd0409a3653af6c147209d267a0e4243f0ae46b011aa978b1080359fddc9b6cf \ - --hash=sha256:ff18e6a727ee0ab0388507b89d1bc6a22b138d1e2fa56d1ad494586d61d2eae9 \ - --hash=sha256:ff2983983d34813c1aeb0fa89091e76c3a22889ee83ab27c5eeb45100560c049 - # via coverage -trove-classifiers==2026.6.1.19 \ - --hash=sha256:ab4c4ec93cc4a4e7815fa759906e05e6bb3f2fbd92ea0f897288c6a43efd15b3 \ - --hash=sha256:c5132b4b61a829d11cfbd2d72e97f20a45ed6edb95e45c5efdeb5e00836b2745 - # via hatchling -typing-extensions==4.15.0 \ - --hash=sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466 \ - --hash=sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548 +typing-extensions==4.16.0 \ + --hash=sha256:481caa481374e813c1b176ada14e97f1f67a4539ce9cfeb3f350d78d6370c2e8 \ + --hash=sha256:dc983d19a509c94dba722ee6abd33940f7c05a89e243c47e907eb4db6f1a43e5 # via - # altair - # anyio - # dash - # mcp # pydantic # pydantic-core - # pytest-asyncio - # referencing - # starlette - # streamlit # typing-inspection typing-inspection==0.4.2 \ --hash=sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7 \ --hash=sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464 - # via - # mcp - # pydantic - # pydantic-settings -tzdata==2026.2 ; sys_platform == 'emscripten' or sys_platform == 'win32' \ - --hash=sha256:9173fde7d80d9018e02a662e168e5a2d04f87c41ea174b139fbef642eda62d10 \ - --hash=sha256:bbe9af844f658da81a5f95019480da3a89415801f6cc966806612cc7169bffe7 - # via pandas -urllib3==2.7.0 \ - --hash=sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c \ - --hash=sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897 - # via requests -uvicorn==0.49.0 \ - --hash=sha256:ba3d14c3ee7e41c6c654c46c9eb489d33213cdd30aa1696eab1374337c13f68f \ - --hash=sha256:ebf4271aa580d9de97f93192d4595176df6e91f9aae919ca73e4fc07df1e66a3 - # via - # mcp - # streamlit -verspec==0.1.0 \ - --hash=sha256:741877d5633cc9464c45a469ae2a31e801e6dbbaa85b9675d481cda100f11c31 \ - --hash=sha256:c4504ca697b2056cdb4bfa7121461f5a0e81809255b41c03dda4ba823637c01e - # via mike -waitress==3.0.2 \ - --hash=sha256:682aaaf2af0c44ada4abfb70ded36393f0e307f4ab9456a215ce0020baefc31f \ - --hash=sha256:c56d67fd6e87c2ee598b76abdd4e96cfad1f24cacdea5078d382b1f9d7b5ed2e - # via trendify -watchdog==6.0.0 \ - --hash=sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a \ - --hash=sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2 \ - --hash=sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f \ - --hash=sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c \ - --hash=sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c \ - --hash=sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c \ - --hash=sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0 \ - --hash=sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13 \ - --hash=sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134 \ - --hash=sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e \ - --hash=sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379 \ - --hash=sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282 \ - --hash=sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b \ - --hash=sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f \ - --hash=sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c \ - --hash=sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948 \ - --hash=sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860 \ - --hash=sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680 \ - --hash=sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26 \ - --hash=sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2 - # via - # mkdocs - # properdocs - # streamlit -websockets==16.0 \ - --hash=sha256:0298d07ee155e2e9fda5be8a9042200dd2e3bb0b8a38482156576f863a9d457c \ - --hash=sha256:08d7af67b64d29823fed316505a89b86705f2b7981c07848fb5e3ea3020c1abe \ - --hash=sha256:152284a83a00c59b759697b7f9e9cddf4e3c7861dd0d964b472b70f78f89e80e \ - --hash=sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec \ - --hash=sha256:19c4dc84098e523fd63711e563077d39e90ec6702aff4b5d9e344a60cb3c0cb1 \ - --hash=sha256:1c1b30e4f497b0b354057f3467f56244c603a79c0d1dafce1d16c283c25f6e64 \ - --hash=sha256:31a52addea25187bde0797a97d6fc3d2f92b6f72a9370792d65a6e84615ac8a8 \ - --hash=sha256:32da954ffa2814258030e5a57bc73a3635463238e797c7375dc8091327434206 \ - --hash=sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156 \ - --hash=sha256:349f83cd6c9a415428ee1005cadb5c2c56f4389bc06a9af16103c3bc3dcc8b7d \ - --hash=sha256:417b28978cdccab24f46400586d128366313e8a96312e4b9362a4af504f3bbad \ - --hash=sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2 \ - --hash=sha256:4a1aba3340a8dca8db6eb5a7986157f52eb9e436b74813764241981ca4888f03 \ - --hash=sha256:50f23cdd8343b984957e4077839841146f67a3d31ab0d00e6b824e74c5b2f6e8 \ - --hash=sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230 \ - --hash=sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8 \ - --hash=sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea \ - --hash=sha256:569d01a4e7fba956c5ae4fc988f0d4e187900f5497ce46339c996dbf24f17641 \ - --hash=sha256:5a4b4cc550cb665dd8a47f868c8d04c8230f857363ad3c9caf7a0c3bf8c61ca6 \ - --hash=sha256:5f451484aeb5cafee1ccf789b1b66f535409d038c56966d6101740c1614b86c6 \ - --hash=sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5 \ - --hash=sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f \ - --hash=sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00 \ - --hash=sha256:781caf5e8eee67f663126490c2f96f40906594cb86b408a703630f95550a8c3e \ - --hash=sha256:7be95cfb0a4dae143eaed2bcba8ac23f4892d8971311f1b06f3c6b78952ee70b \ - --hash=sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39 \ - --hash=sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9 \ - --hash=sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79 \ - --hash=sha256:8cc451a50f2aee53042ac52d2d053d08bf89bcb31ae799cb4487587661c038a0 \ - --hash=sha256:8d7f0659570eefb578dacde98e24fb60af35350193e4f56e11190787bee77dac \ - --hash=sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5 \ - --hash=sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c \ - --hash=sha256:a069d734c4a043182729edd3e9f247c3b2a4035415a9172fd0f1b71658a320a8 \ - --hash=sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1 \ - --hash=sha256:a35539cacc3febb22b8f4d4a99cc79b104226a756aa7400adc722e83b0d03244 \ - --hash=sha256:a5e18a238a2b2249c9a9235466b90e96ae4795672598a58772dd806edc7ac6d3 \ - --hash=sha256:a653aea902e0324b52f1613332ddf50b00c06fdaf7e92624fbf8c77c78fa5767 \ - --hash=sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a \ - --hash=sha256:af80d74d4edfa3cb9ed973a0a5ba2b2a549371f8a741e0800cb07becdd20f23d \ - --hash=sha256:b14dc141ed6d2dde437cddb216004bcac6a1df0935d79656387bd41632ba0bbd \ - --hash=sha256:b784ca5de850f4ce93ec85d3269d24d4c82f22b7212023c974c401d4980ebc5e \ - --hash=sha256:bc59589ab64b0022385f429b94697348a6a234e8ce22544e3681b2e9331b5944 \ - --hash=sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82 \ - --hash=sha256:c0ee0e63f23914732c6d7e0cce24915c48f3f1512ec1d079ed01fc629dab269d \ - --hash=sha256:caab51a72c51973ca21fa8a18bd8165e1a0183f1ac7066a182ff27107b71e1a4 \ - --hash=sha256:d6297ce39ce5c2e6feb13c1a996a2ded3b6832155fcfc920265c76f24c7cceb5 \ - --hash=sha256:daa3b6ff70a9241cf6c7fc9e949d41232d9d7d26fd3522b1ad2b4d62487e9904 \ - --hash=sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f \ - --hash=sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c \ - --hash=sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89 \ - --hash=sha256:f4a32d1bd841d4bcbffdcb3d2ce50c09c3909fbead375ab28d0181af89fd04da \ - --hash=sha256:fd3cb4adb94a2a6e2b7c0d8d05cb94e6f1c81a0cf9dc2694fb65c7e8d94c42e4 - # via streamlit -werkzeug==3.1.8 \ - --hash=sha256:63a77fb8892bf28ebc3178683445222aa500e48ebad5ec77b0ad80f8726b1f50 \ - --hash=sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44 - # via - # dash - # flask -zipp==4.1.0 \ - --hash=sha256:25ad4e16390cd314347dd8f1de67a2ac538ae658ed4ab9db16029c07c188e97f \ - --hash=sha256:4cb57381f544315db7688e976e922a2b18cdb513d21cc194eb42232ba2a3e602 - # via importlib-metadata + # via pydantic +ubelt==1.4.2 \ + --hash=sha256:40322cf3bb59c05b7567222b10bd0d553c6abc463cd480c23ea3dbcf2ef332fb \ + --hash=sha256:6cdbcbba75cd7c3e1ef9556a13b7c0e29a55f67cb454f022a981e42808f2b06e + # via mkinit diff --git a/rewrite_reference/OVERVIEW.md b/rewrite_reference/OVERVIEW.md new file mode 100644 index 0000000..75deb3b --- /dev/null +++ b/rewrite_reference/OVERVIEW.md @@ -0,0 +1,390 @@ +# Trendify: Current Behavior Reference (pre-rewrite) + +This document is a functional inventory of `trendify` as it exists today, written to support a +clean rewrite. Goal: nothing in this list should silently disappear during the rewrite, and the +on-disk/JSON schema for `DataProduct` objects should stay compatible (or the break should be a +deliberate, documented decision) so that old `data_products.json` files stay loadable. + +The full pydantic JSON Schema for every model is exported alongside this file in +[`pydantic_schemas.json`](pydantic_schemas.json) (generated by `dump_schemas.py`, re-runnable any +time with `.venv/bin/python rewrite_reference/dump_schemas.py`). + +## 1. What Trendify does, end to end + +Trendify batch-processes many "run" directories of raw data (e.g. simulation outputs) into a +common set of typed **data products** (points, traces, table entries, histogram entries, axis +lines), sorts those products by user-defined **tags** into a nested directory tree, and then +renders each tag's products into assets: matplotlib static images, CSV tables, or an interactive +Plotly/Dash/Streamlit dashboard. + +Pipeline (`trendify.api.make_it_trendy`, also reachable piecewise via CLI): + +1. **Generate** (`make_products` → `DataProductGenerator.process_and_save`) + - User supplies a `ProductGenerator`: `Callable[[Path], list[DataProduct]]`. + - Mapped over each input directory (optionally in parallel via `ProcessPoolExecutor`). + - Each directory's returned products are wrapped in a `DataProductCollection` and serialized to + `data_products.json` (name configurable) in that same directory. +2. **Sort** (`sort_products` → `DataProductCollection.sort_by_tags_single_directory`) + - Reads each directory's `data_products.json`, gets the set of tags present + (`DataProductCollection.get_tags`), and for each tag writes a sub-collection into + `output_dir//.json`. + - Tuple tags become nested folders (`tags=[("a","b")]` → `output_dir/a/b/`). + - Index numbers are stable/deduped per source file via `ProductIndexMap`, a small JSON + file (`index_map`) per output folder that maps `{source_path: index}`, guarded with a + `FileLock` (`reserving_index.lock`) so parallel workers don't clash. +3. **Render static assets** (`make_tables_and_figures` → `DataProductCollection.process_collection`) + - Runs once per sorted tag-directory. + - Loads all JSONs in that directory back into a collection, then for each tag present: + - `TableEntry`s → `TableBuilder` → 3 CSVs: `_melted.csv`, `_pivot.csv` (if pivot + succeeds), `_stats.csv` (min/mean/max/3-sigma, if pivot columns are numeric). + - `Point2D`/`Trace2D`/`AxLine` → `XYDataPlotter.handle_points_and_traces` draws onto a shared + matplotlib `SingleAxisFigure`. + - `HistogramEntry` → `Histogrammer.handle_histogram_entries` draws onto the *same* shared + figure (so XY and histogram products with the same tag are overlaid on the same axes today + — this looks like it may be accidental behavior worth revisiting in the rewrite). + - All `Format2D`s seen for the tag are merged via `Format2D.union_from_iterable` (requires + titles/labels/legend to be identical across products sharing a tag, min/max of limits) and + applied once to the figure, which is then saved as `.jpg` and closed. +4. **Include files** (`make_include_files`, optional) — walks the static-assets tree and writes + `include.md` per directory with MkDocs `{% include %}` / `{{ read_csv(...) }}` snippets for + figures/tables/subdirectories, so a docs site can pull in results without manual linking. +5. **Interactive serving** — two independent paths, not really unified: + - **Plotly/Dash** (`serve_products_to_plotly_dashboard` / + `DataProductCollection.serve_plotly_dashboard` / `trendify.plotly_dashboard`): builds one big + `dash.Dash` app with a category+tag dropdown UI, one XY figure + table + histogram section per + tag, client-side callbacks for legend/grid/autorange toggles and histogram bin count. Runs via + Flask dev server or `waitress` if installed and `debug=False`. + - **Streamlit** (`trendify.streamlit`, wired up via `trendify make dashboard`): reads the + *sorted products* directory tree directly off disk (using the presence of `index_map` files to + discover tags), renders a collapsible sidebar of nested tags built from folder structure, and + on selection produces one `PlotlyFigure` via + `DataProductCollection.process_tag_for_streamlit` (note: this path calls + `add_to_plotly` per-product rather than the matplotlib-only `plot_to_ax`/`Histogrammer` route + used for static assets — so static and interactive rendering are two separate code paths that + must each be kept in sync with new product types). + - There is a **third**, older, largely dead HTTP-serving path: `trendify.server` / a + `Flask` app with hardcoded `DATABASE_ROOT` pointing at a specific developer's machine, and + `trendify.local_server` (`TrendifyProductServerLocal`), a slightly more generic Flask JSON API + over a products directory keyed by URL path segments. Both exist to feed a **Grafana** + dashboard (see `UQL_TableEntry` / `UQL_Point2D` / `UQL_Trace2D` query strings in + `data_product_collection.py`, and the fully commented-out `make_grafana_dashboard` / + `make_grafana_panels` functions that depended on a `grafana_api` package). Grafana support is + effectively disabled today (commented out) but the dependency (`grafana-api`) is still listed + in `pyproject.toml` and `ProductType` docstring/enum still lists Grafana-flavored intent. TODO.md + says "Sunset production server, grafana, etc." — treat this whole vertical (`server.py`, + `local_server.py`, `production_server.py`, Grafana comments, UQL strings) as a candidate for + deletion rather than porting, unless the user says otherwise. + +## 2. Package layout (`src/trendify/`) + +``` +trendify/ +├── __init__.py # re-exports trendify.api.* and trendify.server.* as top-level `trendify.X` +├── api/ +│ ├── __init__.py # re-exports all submodule __all__s — this is the umbrella "trendify.api" namespace +│ ├── api.py # pipeline orchestration functions (make_products, sort_products, make_tables_and_figures, make_it_trendy, serve_products_to_plotly_dashboard, make_include_files) +│ ├── base/ +│ │ ├── data_product.py # DataProduct (pydantic base class + subclass registry), ProductList, ProductGenerator +│ │ ├── helpers.py # Tag/Tags type aliases, HashableBase, ProductType enum, DATA_PRODUCTS_FNAME_DEFAULT +│ │ └── pen.py # Pen (matplotlib line/scatter style + rgba/contrast helpers) +│ ├── formats/ +│ │ ├── format2d.py # AxisScale enum, Format2D, PlottableData2D, XYData base classes +│ │ └── table.py # TableEntry +│ ├── styling/ +│ │ ├── grid.py # GridTheme enum, GridAxis, Grid (+ theme presets: MATLAB/LIGHT/DARK) +│ │ ├── legend.py # LegendLocation enum, Legend (+ plotly position mapping) +│ │ └── marker.py # Marker (matplotlib scatter style + plotly symbol mapping) +│ ├── plotting/ +│ │ ├── plotting.py # SingleAxisFigure (matplotlib fig+ax wrapper), PlotlyFigure (go.Figure wrapper) +│ │ ├── point.py # Point2D +│ │ ├── trace.py # Trace2D +│ │ ├── axline.py # LineOrientation enum, AxLine +│ │ └── histogram.py # HistogramStyle, HistogramEntry +│ └── generator/ +│ ├── data_product_collection.py # DataProductCollection, ProductEntryMetadata, ProductIndexMap, flatten/atleast_1d/_squeeze helpers +│ ├── data_product_generator.py # DataProductGenerator (runs user callable, writes JSON) +│ ├── histogrammer.py # Histogrammer (matplotlib histogram rendering) +│ ├── table_builder.py # TableBuilder (melted/pivot/stats CSV export) +│ └── xy_data_plotter.py # XYDataPlotter (matplotlib + plotly XY rendering) +├── cli.py # argparse CLI ("trendify ..."); NOTE pyproject.toml script entry point is `trendify.CLI:trendify` (wrong case) — currently broken unless case-insensitive FS +├── examples.py # sample data generator + example_data_product_generator + `_main`/`make_sample_data` CLI entry +├── gallery.py # standalone example generator (sine/scatter/histogram/table) used by `trendify make gallery` +├── plotly_dashboard.py # PlotlyDashboardGenerator + generate_plotly_dashboard (Dash app builder) +├── streamlit.py # Streamlit dashboard (tag sidebar + PlotlyFigure viewer), `make_streamlit` scaffolding writer +├── server.py # legacy Flask/Grafana server, hardcoded path, largely dead +├── local_server.py # more generic Flask JSON API over a products dir, also Grafana-oriented +└── production_server.py # waitress wrapper to run a Dash app or DataProductCollection in "production" +``` + +Other loose files at repo root (`alternative_tag_selectors.py`, `custom_handler.py`, +`implementation_recommendation.py`, `improved_tag_selection.py`, `sample_hierarchical_data.py`, +`test.py`) are **not part of the installed package** (they live outside `src/`) — they read like +scratch experiments/prototypes for streamlit tag selection UI. Worth a skim before the rewrite in +case they contain ideas already validated, but they are not part of the current shipped behavior. + +## 3. The data model + +### 3.1 `DataProduct` — the polymorphic base (`api/base/data_product.py`) + +- Pydantic `BaseModel`, `model_config = ConfigDict(extra="allow")` on the base class (subclasses + mostly override to `extra="forbid"`). +- Fields: `tags: Tags` (required), `metadata: dict[str, str] = {}`. +- `product_type: str` is a `@computed_field` property returning `type(self).__name__` — this is + what gets serialized into JSON and is the polymorphism discriminator. +- `__init_subclass__` auto-registers every subclass by class name into a module-level + `_data_product_subclass_registry: dict[str, type[DataProduct]]`. **This means product types are + looked up by bare class name, globally, at import time** — two different classes named + `Trace2D` in different modules would collide. Worth deciding deliberately in the rewrite whether + to keep name-based polymorphism or move to `pydantic`'s built-in discriminated unions / + `Annotated[Union[...], Field(discriminator=...)]`. +- `deserialize_child_classes(cls, key, **kwargs)`: manually walks `kwargs[key]` (a list of raw + dicts), pops `"product_type"` from each, looks up the class in the registry, and constructs it. + This is how `DataProductCollection.__init__` turns a raw `elements: [...]` JSON list into actual + typed objects instead of relying on pydantic's own polymorphic validation — a hand-rolled + substitute for `SerializeAsAny`/discriminated unions. +- `append_to_list(l)` / `set_metadata(new)`: fluent helpers so example code can do + `Trace2D(...).append_to_list(products).set_metadata({...})` inline in a list comprehension. +- `ProductList = list[SerializeAsAny[InstanceOf[DataProduct]]]` — the type alias used everywhere a + list of heterogeneous products is expected; `SerializeAsAny` is what makes `model_dump_json()` + include subclass-specific fields instead of truncating to the base class's fields. +- `ProductGenerator = Callable[[Path], ProductList]` — the type user code must implement. + +### 3.2 Concrete `DataProduct` subclasses (the actual schema surface) + +All in `pydantic_schemas.json`. Summarized here with every field, default, and constraint: + +| Class | Base | Fields (name: type = default) | `extra` | +|---|---|---|---| +| `TableEntry` | `DataProduct` | `row: float\|str`, `col: float\|str`, `value: float\|str\|bool`, `unit: str\|None = None` | forbid | +| `PlottableData2D` | `DataProduct` | `format2d: Format2D\|None = None` | (inherits `allow`) | +| `XYData` | `PlottableData2D` | *(no new fields — pure marker base class)* | (inherits) | +| `Point2D` | `XYData` | `x: float\|str`, `y: float\|str`, `marker: Marker\|None = Marker()` | forbid | +| `Trace2D` | `XYData` | `points: list[Point2D]`, `pen: Pen = Pen()` | forbid | +| `AxLine` | `PlottableData2D` | `value: float`, `orientation: LineOrientation`, `pen: Pen = Pen()` | forbid | +| `HistogramEntry` | `PlottableData2D` | `value: float\|str`, `tags: Tags` (redeclared), `style: HistogramStyle\|None = HistogramStyle()` | forbid | + +Every `DataProduct` (via base) also carries `tags: Tags`, `metadata: dict[str,str] = {}`, and the +computed `product_type: str`. + +`Tag = Union[tuple[Hashable, ...], Hashable]`, `Tags = list[Tag]` — tags are either scalars +(`"foo"`) or tuples (`("foo", "bar")`, which becomes nested folders `foo/bar/` when sorting). +Note: `Hashable` is extremely permissive — in practice tags are strings or tuples of strings; the +rewrite might want to narrow this type for safety. + +### 3.3 Style / format value objects (not `DataProduct`s themselves — used as fields) + +- **`Pen`** (`HashableBase`, `extra="forbid"`): `color: tuple[float,float,float]|tuple[float,float,float,float]|str = "k"`, `size: float = 1`, `alpha: float = 1`, `zorder: float = 0`, `linestyle: str|tuple[int,tuple[int,...]] = "-"`, `label: str|None = None`. Methods: `as_scatter_plot_kwargs()` (→ matplotlib `plot` kwargs), `_convert_linestyle_to_plotly()`, `rgba`/`rgb` properties, `get_contrast_color(background_luminance=1.0)` (WCAG-style relative luminance blend for legible text/hover color). +- **`Marker`** (`HashableBase`, `extra="forbid"`): `color: str = "k"`, `size: float = 5`, `alpha: float = 1`, `zorder: float = 0`, `label: str|None = None`, `symbol: str = "."`. `from_pen(pen, symbol=".")` classmethod (note: **this method is buggy** — `pen.model_dump().pop("linestyle")` pops and returns just the *value* of `linestyle`, discarding the rest of the dict, then tries to pass that single value as `**kwargs`, which will raise `TypeError` on any real invocation; grep shows it's called from `Trace2D.propagate_format2d_and_pen`, which itself appears unused elsewhere — confirm before quietly reimplementing "the same way"). `as_scatter_plot_kwargs()` (has a duplicate `"marker"` key literal — harmless dict-literal bug, last one wins). `plotly_symbol` property maps a fixed matplotlib marker-char set to plotly symbol names (unmapped symbols silently fall back to `"circle"`). `rgba`, `get_contrast_color()` mirror `Pen`'s. +- **`Legend`** (`HashableBase`): `visible: bool = True`, `title: str|None`, `framealpha: float = 1`, `loc: LegendLocation = BEST`, `ncol: int = 1`, `fancybox: bool = True`, `edgecolor: str = "black"`, `zorder: int = 10`, `bbox_to_anchor: tuple[float,float]|None = None`. `LegendLocation` StrEnum mirrors matplotlib's location strings. `to_kwargs()` → matplotlib legend kwargs subset (does *not* include `zorder`, `edgecolor`, or `bbox_to_anchor` — those are applied separately by the caller). `plotly_location` property: hand-maintained lookup table mapping each `LegendLocation` to `{x,y,xanchor,yanchor}` plus a `bbox_to_anchor`-override branch with its own anchor-inference logic. +- **`GridAxis`** (`HashableBase`, `extra="forbid"`): `show: bool = False`, `pen: Pen = Pen(color="gray", alpha=1.0, size=0.75, linestyle="-")`. +- **`Grid`** (`HashableBase`, `extra="forbid"`): `major: GridAxis = GridAxis(show=False)`, `minor: GridAxis = GridAxis(show=False)`, `enable_minor_ticks: bool = False`, `zorder: float = -1`. `GridTheme` enum (`MATLAB`, `LIGHT`, `DARK`) with `Grid.from_theme(name)` classmethod producing hand-tuned pen presets. `union_from_iterable` requires all inputs to have *identical* major/minor/enable_minor_ticks/zorder (raises via tuple-unpack of a length-checked set if they differ) — same "must all agree" merge pattern as `Format2D`. +- **`Format2D`** (`HashableBase`, `extra="forbid"`): `title_fig`, `title_ax`, `label_x`, `label_y: str|None = None`; `legend: Legend|None = Legend()`; `lim_x_min/max`, `lim_y_min/max: float|None = None`; `grid: Grid|None = None`; `scale_x`, `scale_y: AxisScale = LINEAR`; `figure_width: float = 6.4`, `figure_height: float = 4.8`. `union_from_iterable(format2ds)`: title/legend/labels must be identical across the set (single-element `set()` unpack — raises `ValueError` on mismatch); limits take `min`/`max` across the group; grid is unioned via `Grid.union_from_iterable`. This is the mechanism by which multiple products sharing a tag "agree" on one figure's formatting — it's a hard failure mode if two products on the same tag specify conflicting titles/labels, which the rewrite should probably surface as a clearer error rather than an unpacking `ValueError`. +- **`HistogramStyle`** (`HashableBase`): `color: str = "k"`, `label: str|None`, `histtype: str = "stepfilled"`, `alpha_edge: float = 0`, `alpha_face: float = 0.3`, `linewidth: float = 2`, `zorder: int = 1`, `bins: int|list[int]|tuple[int]|NDArray|None = None`. `as_plot_kwargs()` → matplotlib `hist()` kwargs. `rgba_face`/`rgba_edge`/`rgb_face`/`rgb_edge`/`get_face_contrast_color()` mirror `Pen`. + +All the `*_contrast_color` / `rgba` implementations (`Pen`, `Marker`, `HistogramStyle`) are +**copy-pasted three times** with identical logic — a natural dedup target for the rewrite (e.g. a +shared `ColorMixin` or free functions taking `color, alpha`). + +### 3.4 Collections and bookkeeping (`api/generator/data_product_collection.py`) + +- **`DataProductCollection`** (plain `BaseModel`, not `DataProduct`): `derived_from: Path|None`, + `elements: ProductList = []`. Custom `__init__` calls + `DataProduct.deserialize_child_classes(key="elements", **kwargs)` before `super().__init__` — this + is the polymorphic-load hook. Rich query API: `get_tags(type|None)`, `add_products(*products)` + (flattens nested lists/generators via `flatten()`), `drop_products(tag=, object_type=)`, + `get_products(tag=, object_type=)` (returns a new collection), `get_products_of_type(object_type, + tag=)` (returns a typed `list[R]`, more convenient than `get_products(...).elements`), `union(*collections)` + classmethod, `collect_from_all_jsons(*dirs, recursive=, data_products_filename=)` classmethod + (glob + union), `sort_by_tags` / `sort_by_tags_single_directory` (the sort step described in §1), + `process_collection` (the static-asset-rendering step described in §1), + `process_tables_for_tag`, `process_tag_for_streamlit` (the Streamlit-only rendering path), + `generate_plotly_dashboard`/`serve_plotly_dashboard`/`collect_and_serve_plotly_dashboard`. +- **`ProductEntryMetadata`**: `{source: Path}`, hashed via its own JSON dump (used as a dict key). +- **`ProductIndexMap`**: `{entries: dict[int, ProductEntryMetadata]}` persisted as a JSON file + named literally `index_map` (no extension) inside each sorted tag directory. `get_index(save_dir, + metadata)` classmethod does read-modify-write under a `FileLock` to hand out a stable integer + index per source file per tag directory — this is what keeps re-running the pipeline from + duplicating or renumbering already-sorted product files, and is also what the Streamlit UI's + `get_tags()` uses to discover which folders are "real" tags (it globs for files literally named + `index_map`). +- Free functions `flatten(obj)` (recursive flatten that stops at `str`/`bytes`/`DataProduct`), + `atleast_1d(obj)`, `_squeeze(obj)` — small utilities used throughout for accepting either a + scalar tag or tuple tag interchangeably. +- Three multi-line UQL query string constants (`UQL_TableEntry`, `UQL_Point2D`, `UQL_Trace2D`) and + a fully commented-out `make_grafana_panels` classmethod — dead Grafana integration, see §1. + +## 4. Rendering pipelines (kept deliberately separate today — a rewrite could unify them) + +| | Static (matplotlib) | Interactive (Plotly/Dash) | Interactive (Streamlit) | +|---|---|---|---| +| Entry point | `DataProductCollection.process_collection` | `plotly_dashboard.generate_plotly_dashboard` | `streamlit.make_dashboard` | +| Driven by | sorted-by-tag directory tree on disk | one `DataProductCollection` in memory | sorted-by-tag directory tree on disk (`index_map` discovery) | +| Per-tag output | one shared matplotlib `Axes` (`SingleAxisFigure`), XY + histogram overlaid, saved to `.jpg` | one Dash "tab" per tag with XY graph + table + histogram sections, dropdown-driven | one `PlotlyFigure` per tag built by `process_tag_for_streamlit`, calling each product's `add_to_plotly` | +| `add_to_plotly` used? | No (matplotlib-only `plot_to_ax`) | No (dashboard rebuilds traces from raw fields, duplicating logic in `_create_xy_figure`/`_create_histogram_figure`) | Yes — the only caller of `Point2D.add_to_plotly`, `Trace2D.add_to_plotly`, `AxLine.add_to_plotly`, `HistogramEntry.add_to_plotly` | +| Format handling | `Format2D.union_from_iterable` across all products for the tag, applied once | ad hoc: takes the *first* product's `format2d` and applies a hand-rolled subset of fields directly to Dash's `go.Figure.update_layout` | `Format2D.union_from_iterable`, applied via `PlotlyFigure.apply_format`/`apply_grid` | + +Consequence for the rewrite: **`add_to_plotly` is a real, load-bearing interface** (each +`PlottableData2D` subclass implements it) but it's currently only exercised by the Streamlit path +— the Dash dashboard (`plotly_dashboard.py`) reimplements equivalent logic from scratch with its +own color-cycling and legend-dedup bookkeeping. `PlotlyFigure.add_data_product` in `plotting.py` +is a stub that literally raises `NotImplementedError()` before an unreachable line calling +`product.add_to_plotly` — dead/aspirational code for a unification that never happened. If the +rewrite unifies these three renderers, `add_to_plotly` + `Format2D`/`Grid`/`Legend` "union and +apply" is the design to standardize on; the Dash-specific bespoke logic in `plotly_dashboard.py` +is the one to retire. + +## 5. CLI (`cli.py`) + +`trendify` (argparse, subcommands via `add_subparsers`): + +- `trendify make static -i -g -o [-n procs] [-f data-products-filename]` + — full pipeline: generate → sort → static assets. +- `trendify make dashboard -o ` — writes a `streamlit_run.py` launcher script into + `/assets/dashboard/` (does **not** itself generate/sort products — assumes that already happened). +- `trendify make gallery [-o ]` — runs the bundled example generator (`gallery.py`), then + shells out to `trendify products-sort` and `trendify assets-make-static` as subprocesses. +- `trendify serve plotly -i -g [--title] [--host] [--port]` — + generate then serve Dash dashboard directly (no sort/asset step). +- 1:1 API wrappers: `products-make`, `products-sort`, `products-serve`, `assets-make-static` — thin + argparse shims over `api.make_products` / `api.sort_products` / + `api.serve_products_to_plotly_dashboard` / `api.make_tables_and_figures`. +- Global `-v`/`-vv` verbosity flag → `logging.basicConfig` writing to both stdout and + `./trendify.log` (relative to CWD, always append mode — this is likely the "multiprocessing + logging broken on Windows" TODO item, since each subprocess calling `basicConfig` again / writing + to the same file without coordination is a known cross-platform hazard). +- `UserMethod.process_argument` resolves `-g/--product-generator` from a string like + `package.module:Class.method` or `/path/to/file.py:function`, supporting dotted attribute access + for `Class.method` — this is the mechanism for pointing the CLI at user code without a plugin + system. +- **Known bug**: `pyproject.toml`'s `[project.scripts]` maps `trendify = "trendify.CLI:trendify"` + but the module is `trendify/cli.py` (lowercase). This only works on case-insensitive filesystems + (macOS default, Windows) and would fail to import on Linux/case-sensitive installs. Worth fixing + outright rather than "preserving" in the rewrite. + +## 6. Other entry points / helper modules + +- **`examples.py`**: `make_example_data(workdir, n_folders=10)` synthesizes noisy multi-frequency + sine-wave CSVs (`results.csv` + `stdin.csv` per numbered subfolder under `workdir/models/`). + `example_data_product_generator(workdir)` is the reference implementation of a `ProductGenerator` + — demonstrates nearly every product type and format option (traces with multiple tags on the + same data, log/linear scale combinations, `AxLine`s, `Point2D` scatter of point-count vs run, + `TableEntry` + `HistogramEntry` + companion mean `AxLine`). Good source of "what must still work" + examples for rewrite acceptance tests. Also exposes a `trendify_make_sample_data` console script + (`make_sample_data`) and a `_main()` used as `python -m trendify.examples`-style smoke test + (generates 100 runs, makes products, sorts, renders tables/figures — no dashboard). +- **`gallery.py`**: independent of `examples.py`; hand-builds a small fixed set of products (sine + wave with peak detection, two Gaussian clusters + centroids, three-distribution histogram + comparison, a distributions×metrics stats table), asserts on `product.py`... actually copies + itself (`gallery.py`) into the output dir for user reference, writes `data_products.json` + directly (skipping the generate step), then **shells out** to the `trendify` console script + (`subprocess.run(["trendify", "products-sort", ...])` then `["trendify", + "assets-make-static", ...])`, with a Windows `shell=True` branch. This is the only place in the + codebase that invokes trendify as a subprocess rather than calling the Python API directly — + worth deciding whether the rewrite keeps that indirection (it does exercise the actual installed + console script, which is a plausible intentional integration-test-like design) or calls the API + functions in-process like everywhere else. +- **`streamlit.py`**: `make_streamlit(trendify_dir)` writes a small launcher script + a + `.streamlit/config.toml` theme file (hardcoded to `trendify` pink `#e92063`). `make_dashboard` + itself does the actual UI: sidebar built by recursively grouping the tag tuples found via + `get_tags` (which walks for files named `index_map`) into nested `st.expander`s with buttons, + `st.session_state.selected_tags` tracks selection, main page uses `@st.cache_data` on + `process_tag` (keyed by tag+dir) to avoid recomputation, then renders one `PlotlyFigure` with a + small form for height/tooltip-mode controls. Only handles the "collection produced a + `PlotlyFigure`" case; anything else shows `st.warning(...)`. Note the docs/issue-tracker URLs and + `st.logo` reference bundled SVG assets (`trendify.assets/logo.svg`, `logo_white_bg.svg`) that + must ship with the package (`importlib.resources`). +- **`production_server.py`**: thin `waitress.serve(app.server, ...)` wrapper; `run_production_server` + accepts either a `dash.Dash` or a `DataProductCollection` (builds the dashboard for you in the + latter case) and requires `waitress`+`dash` be importable or exits via `sys.exit(1)` with a + printed message (not a raised exception — inconsistent with the rest of the codebase's use of + `logger`). +- **`server.py`** / **`local_server.py`**: see §1, candidates for deletion. + +## 7. Cross-cutting behaviors worth preserving deliberately + +- **Parallelism model**: `map_callable` in `api.py` is the single place that decides + sequential-`for`-loop vs `ProcessPoolExecutor`, based on `n_procs`. Every stage (generate, sort, + render) goes through it, so `n_procs=1` is explicitly documented as the "get a real traceback" + debug mode. Any rewrite of the execution model should preserve an easy "run everything in-process + with full tracebacks" switch. +- **Tag-driven nested directories**: a tuple tag `("a", "b")` becomes a two-level directory, a + scalar tag `"a"` becomes one level. This convention is depended on by: the sort step (path + construction), the Streamlit tag discovery (splitting `Path.relative_to(products_dir).parts`), + and `make_include_files`. If tag typing gets stricter in the rewrite, this folder convention is + the main external contract to keep, since users' existing sorted-output directories (and anyone + scripting around them, e.g. MkDocs includes) depend on it. +- **JSON compatibility / discriminator field**: every serialized `DataProduct` JSON object has a + `product_type` string key holding the exact class name. If the rewrite wants old + `data_products.json` files (already generated and sitting on disk from prior runs) to keep + loading, either keep class names identical or write an explicit migration/alias step — don't + rename `Trace2D`/`Point2D`/etc. without a plan for existing data. + [`pydantic_schemas.json`](pydantic_schemas.json) is the field-level source of truth to diff + against for any planned schema change. + Similarly, `HashableBase.__hash__` (`hash((type(self),) + tuple(self.__dict__.values()))`) is + used to de-duplicate `Pen`/`Marker`/`Grid`/`HistogramStyle`/`Format2D` instances via `set()` in + several places (`Trace2D` grouping by pen in `plotly_dashboard`, `Histogrammer` grouping by + style, `Format2D.union_from_iterable`, `Grid.union_from_iterable`). This requires every field on + those classes to itself be hashable — e.g. `bbox_to_anchor` is a `tuple` not a `list`, + `linestyle` accepts a `tuple[int, tuple[int,...]]` not `list[int]`, precisely so instances stay + hashable. Any new field added to these classes must preserve hashability or these `set()`-based + dedup/merge operations will start raising `TypeError: unhashable type`. +- **`extra="forbid"` vs `extra="allow"`**: the `DataProduct` base class allows extra fields (so old + JSON with now-unknown extra keys still loads), but essentially every concrete subclass and every + style class overrides to `extra="forbid"` (stricter, catches typos). Worth keeping this pattern + intentionally rather than picking one globally. +- **Metadata dict** (`dict[str,str]`) on every product is surfaced as a hover tooltip in both the + Streamlit-fed Plotly figures (`add_to_plotly` implementations build an HTML `
`-joined + `hovertemplate`) and was intended for Grafana tooltips (per docstrings) — a real, used feature to + keep, not a documentation artifact. + +## 8. Known bugs / rough edges observed while reading (not exhaustive, worth triaging before porting "as-is") + +1. `Marker.from_pen` (`marker.py`) — `pen.model_dump().pop("linestyle")` discards the whole dict + and returns one value, then splats it as `**kwargs` into `Marker(...)`. Will raise at runtime if + ever actually called with a realistic `Pen`. Only caller: `Trace2D.propagate_format2d_and_pen` + (itself grep-unreferenced elsewhere in `src/`). +2. `Marker.as_scatter_plot_kwargs` has the dict key `"marker"` twice (last wins; harmless but + dead code). +3. `PlotlyFigure.apply_format`'s x/y-range-under-log-scale branches both check + `if format2d.scale_x == AxisScale.LOG` / `elif format2d.scale_x == AxisScale.LOG` (the `elif` + should almost certainly be `AxisScale.LINEAR` given the surrounding log10-transform logic) — the + non-log branch for setting a plain range is currently unreachable. +4. `PlotlyFigure.add_data_product` raises `NotImplementedError()` unconditionally with unreachable + code after it — stub method, never completed, never called (Dash path doesn't use it). +5. `Histogrammer.plotly_histogram` also raises `NotImplementedError()` — histogram Plotly rendering + actually happens via `HistogramEntry.add_to_plotly` instead; this method looks unused/orphaned. +6. `pyproject.toml` console script points at `trendify.CLI:trendify` — wrong case vs. actual + `trendify/cli.py`. +7. `server.py` has a hardcoded absolute path (`/Users/talbotknighton/...`) as `DATABASE_ROOT` — + can't work on any other machine as-is. +8. Grid/Format2D "union" merges silently assume homogeneity (single-element `set()` unpacking + raises a bare `ValueError: too many values to unpack` with no context if two products sharing a + tag disagree on title/label/grid) — a confusing failure mode for end users that a rewrite could + turn into a clear, actionable error. +9. Static asset rendering (`process_collection`) draws XY data and histogram data onto the *same* + `SingleAxisFigure`/axes for a shared tag — if a tag is used for both `Point2D`/`Trace2D` and + `HistogramEntry` simultaneously, they'll overlay on one plot, which is very likely unintended + given the interactive dashboards keep these as separate sections per tag. +10. `TableEntry.value: float | str | bool` but the class docstring only documents `float | str` — + minor doc/type drift. + +## 9. Dependencies (from `pyproject.toml`) + +Runtime: `dash`, `filelock`, `flask`, `grafana-api` (dead weight per §1/§6), `jinja2`, `matplotlib`, +`numpy`, `numpydantic`, `pandas`, `plotly`, `pydantic>=2`, `scipy` (only used, optionally, for KDE +in the Dash histogram section), `streamlit`, `strenum` (redundant with the stdlib `enum.StrEnum` +already used directly in `format2d.py`/`legend.py`/`grid.py` on Python ≥3.11 — the project already +requires `>=3.11`, so the `strenum` dependency in `helpers.py`/`examples.py` is likely vestigial), +`supervisor`, `waitress`. Python `>=3.11`. + +## 10. Suggested reading order if resuming this rewrite later + +1. `api/base/data_product.py` + `api/base/helpers.py` — the polymorphism and tagging foundation. +2. `api/generator/data_product_collection.py` — the central data structure and sort/query/process logic. +3. `pydantic_schemas.json` — exact current wire format, field by field. +4. `api/plotting/*.py` + `api/formats/format2d.py` — the concrete product types and their + `plot_to_ax`/`add_to_plotly` dual implementations. +5. `api/generator/{histogrammer,table_builder,xy_data_plotter}.py` + `api/api.py` — how products + become static assets. +6. `plotly_dashboard.py` vs `streamlit.py` — the two divergent interactive renderers (§4 table). +7. `cli.py` — how it's all wired together for end users. diff --git a/rewrite_reference/dump_schemas.py b/rewrite_reference/dump_schemas.py new file mode 100644 index 0000000..a2c2b76 --- /dev/null +++ b/rewrite_reference/dump_schemas.py @@ -0,0 +1,48 @@ +""" +Dumps JSON schemas for every pydantic model in trendify's public API surface. +Run with the project's venv: .venv/bin/python dump_schemas.py +""" + +import json +from pathlib import Path + +import trendify as t +from trendify.api.base.data_product import DataProduct, _data_product_subclass_registry +from trendify.api.generator.data_product_collection import ( + DataProductCollection, + ProductEntryMetadata, + ProductIndexMap, +) + +# All pydantic BaseModel classes that make up the public schema surface. +models = { + # base + "DataProduct": DataProduct, + # data product subclasses (auto-registered via __init_subclass__) + **_data_product_subclass_registry, + # collection / bookkeeping + "DataProductCollection": DataProductCollection, + "ProductEntryMetadata": ProductEntryMetadata, + "ProductIndexMap": ProductIndexMap, + # style / format + "Pen": t.Pen, + "Marker": t.Marker, + "Legend": t.Legend, + "Grid": t.Grid, + "GridAxis": t.GridAxis, + "Format2D": t.Format2D, + "HistogramStyle": t.HistogramStyle, +} + +out = {} +for name, cls in sorted(models.items()): + try: + out[name] = cls.model_json_schema() + except Exception as e: + out[name] = {"__error__": str(e)} + +dest = Path("/home/gable/git/trendify/rewrite_reference/pydantic_schemas.json") +dest.write_text(json.dumps(out, indent=2, default=str)) +print(f"Wrote {len(out)} schemas to {dest}") +for name in sorted(out): + print(" -", name) diff --git a/rewrite_reference/pydantic_schemas.json b/rewrite_reference/pydantic_schemas.json new file mode 100644 index 0000000..f432280 --- /dev/null +++ b/rewrite_reference/pydantic_schemas.json @@ -0,0 +1,4479 @@ +{ + "AxLine": { + "$defs": { + "AxisScale": { + "enum": [ + "linear", + "log" + ], + "title": "AxisScale", + "type": "string" + }, + "Format2D": { + "additionalProperties": false, + "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", + "properties": { + "title_fig": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Fig" + }, + "legend": { + "anyOf": [ + { + "$ref": "#/$defs/Legend" + }, + { + "type": "null" + } + ], + "default": { + "visible": true, + "title": null, + "framealpha": 1.0, + "loc": "best", + "ncol": 1, + "fancybox": true, + "edgecolor": "black", + "zorder": 10, + "bbox_to_anchor": null + } + }, + "title_ax": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Ax" + }, + "label_x": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label X" + }, + "label_y": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label Y" + }, + "lim_x_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Min" + }, + "lim_x_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Max" + }, + "lim_y_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Min" + }, + "lim_y_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Max" + }, + "grid": { + "anyOf": [ + { + "$ref": "#/$defs/Grid" + }, + { + "type": "null" + } + ], + "default": null + }, + "scale_x": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "scale_y": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "figure_width": { + "default": 6.4, + "title": "Figure Width", + "type": "number" + }, + "figure_height": { + "default": 4.8, + "title": "Figure Height", + "type": "number" + } + }, + "title": "Format2D", + "type": "object" + }, + "Grid": { + "additionalProperties": false, + "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", + "properties": { + "major": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "minor": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "enable_minor_ticks": { + "default": false, + "title": "Enable Minor Ticks", + "type": "boolean" + }, + "zorder": { + "default": -1, + "title": "Zorder", + "type": "number" + } + }, + "title": "Grid", + "type": "object" + }, + "GridAxis": { + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "Legend": { + "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", + "properties": { + "visible": { + "default": true, + "title": "Visible", + "type": "boolean" + }, + "title": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title" + }, + "framealpha": { + "default": 1, + "title": "Framealpha", + "type": "number" + }, + "loc": { + "$ref": "#/$defs/LegendLocation", + "default": "best" + }, + "ncol": { + "default": 1, + "title": "Ncol", + "type": "integer" + }, + "fancybox": { + "default": true, + "title": "Fancybox", + "type": "boolean" + }, + "edgecolor": { + "default": "black", + "title": "Edgecolor", + "type": "string" + }, + "zorder": { + "default": 10, + "title": "Zorder", + "type": "integer" + }, + "bbox_to_anchor": { + "anyOf": [ + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bbox To Anchor" + } + }, + "title": "Legend", + "type": "object" + }, + "LegendLocation": { + "enum": [ + "best", + "upper right", + "upper left", + "lower left", + "lower right", + "right", + "center left", + "center right", + "lower center", + "upper center", + "center" + ], + "title": "LegendLocation", + "type": "string" + }, + "LineOrientation": { + "description": "Defines orientation for axis lines\n\nAttributes:\n HORIZONTAL (LineOrientation): Horizontal line\n VERTICAL (LineOrientation): Vertical line", + "enum": [ + "horizontal", + "vertical" + ], + "title": "LineOrientation", + "type": "string" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + } + }, + "additionalProperties": false, + "description": "Defines a horizontal or vertical line to be drawn on a plot.\n\nAttributes:\n value (float): Value at which to draw the line (x-value for vertical, y-value for horizontal)\n orientation (LineOrientation): Whether line should be horizontal or vertical\n pen (Pen): Style and label information for drawing to matplotlib axes\n tags (Tags): Tags to be used for sorting data\n metadata (dict[str, str]): A dictionary of metadata", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + }, + "format2d": { + "anyOf": [ + { + "$ref": "#/$defs/Format2D" + }, + { + "type": "null" + } + ], + "default": null + }, + "value": { + "title": "Value", + "type": "number" + }, + "orientation": { + "$ref": "#/$defs/LineOrientation" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "k", + "size": 1.0, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "required": [ + "tags", + "value", + "orientation" + ], + "title": "AxLine", + "type": "object" + }, + "DataProduct": { + "additionalProperties": true, + "description": "Base class for data products to be generated and handled.\n\nAttributes:\n product_type (str): Product type should be the same as the class name.\n The product type is used to search for products from a [DataProductCollection][trendify.api.DataProductCollection].\n tags (Tags): Tags to be used for sorting data.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + } + }, + "required": [ + "tags" + ], + "title": "DataProduct", + "type": "object" + }, + "DataProductCollection": { + "$defs": { + "DataProduct": { + "additionalProperties": true, + "description": "Base class for data products to be generated and handled.\n\nAttributes:\n product_type (str): Product type should be the same as the class name.\n The product type is used to search for products from a [DataProductCollection][trendify.api.DataProductCollection].\n tags (Tags): Tags to be used for sorting data.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + } + }, + "required": [ + "tags" + ], + "title": "DataProduct", + "type": "object" + } + }, + "description": "A collection of data products.\n\nUse this class to serialize data products to JSON, de-serialized them from JSON, filter the products, etc.\n\nAttributes:\n elements (ProductList): A list of data products.", + "properties": { + "derived_from": { + "anyOf": [ + { + "format": "path", + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Derived From" + }, + "elements": { + "items": { + "$ref": "#/$defs/DataProduct" + }, + "title": "Elements", + "type": "array" + } + }, + "title": "DataProductCollection", + "type": "object" + }, + "Format2D": { + "$defs": { + "AxisScale": { + "enum": [ + "linear", + "log" + ], + "title": "AxisScale", + "type": "string" + }, + "Grid": { + "additionalProperties": false, + "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", + "properties": { + "major": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "minor": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "enable_minor_ticks": { + "default": false, + "title": "Enable Minor Ticks", + "type": "boolean" + }, + "zorder": { + "default": -1, + "title": "Zorder", + "type": "number" + } + }, + "title": "Grid", + "type": "object" + }, + "GridAxis": { + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "Legend": { + "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", + "properties": { + "visible": { + "default": true, + "title": "Visible", + "type": "boolean" + }, + "title": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title" + }, + "framealpha": { + "default": 1, + "title": "Framealpha", + "type": "number" + }, + "loc": { + "$ref": "#/$defs/LegendLocation", + "default": "best" + }, + "ncol": { + "default": 1, + "title": "Ncol", + "type": "integer" + }, + "fancybox": { + "default": true, + "title": "Fancybox", + "type": "boolean" + }, + "edgecolor": { + "default": "black", + "title": "Edgecolor", + "type": "string" + }, + "zorder": { + "default": 10, + "title": "Zorder", + "type": "integer" + }, + "bbox_to_anchor": { + "anyOf": [ + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bbox To Anchor" + } + }, + "title": "Legend", + "type": "object" + }, + "LegendLocation": { + "enum": [ + "best", + "upper right", + "upper left", + "lower left", + "lower right", + "right", + "center left", + "center right", + "lower center", + "upper center", + "center" + ], + "title": "LegendLocation", + "type": "string" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + } + }, + "additionalProperties": false, + "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", + "properties": { + "title_fig": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Fig" + }, + "legend": { + "anyOf": [ + { + "$ref": "#/$defs/Legend" + }, + { + "type": "null" + } + ], + "default": { + "visible": true, + "title": null, + "framealpha": 1.0, + "loc": "best", + "ncol": 1, + "fancybox": true, + "edgecolor": "black", + "zorder": 10, + "bbox_to_anchor": null + } + }, + "title_ax": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Ax" + }, + "label_x": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label X" + }, + "label_y": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label Y" + }, + "lim_x_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Min" + }, + "lim_x_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Max" + }, + "lim_y_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Min" + }, + "lim_y_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Max" + }, + "grid": { + "anyOf": [ + { + "$ref": "#/$defs/Grid" + }, + { + "type": "null" + } + ], + "default": null + }, + "scale_x": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "scale_y": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "figure_width": { + "default": 6.4, + "title": "Figure Width", + "type": "number" + }, + "figure_height": { + "default": 4.8, + "title": "Figure Height", + "type": "number" + } + }, + "title": "Format2D", + "type": "object" + }, + "Grid": { + "$defs": { + "GridAxis": { + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + } + }, + "additionalProperties": false, + "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", + "properties": { + "major": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "minor": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "enable_minor_ticks": { + "default": false, + "title": "Enable Minor Ticks", + "type": "boolean" + }, + "zorder": { + "default": -1, + "title": "Zorder", + "type": "number" + } + }, + "title": "Grid", + "type": "object" + }, + "GridAxis": { + "$defs": { + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + } + }, + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "HistogramEntry": { + "$defs": { + "AxisScale": { + "enum": [ + "linear", + "log" + ], + "title": "AxisScale", + "type": "string" + }, + "Format2D": { + "additionalProperties": false, + "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", + "properties": { + "title_fig": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Fig" + }, + "legend": { + "anyOf": [ + { + "$ref": "#/$defs/Legend" + }, + { + "type": "null" + } + ], + "default": { + "visible": true, + "title": null, + "framealpha": 1.0, + "loc": "best", + "ncol": 1, + "fancybox": true, + "edgecolor": "black", + "zorder": 10, + "bbox_to_anchor": null + } + }, + "title_ax": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Ax" + }, + "label_x": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label X" + }, + "label_y": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label Y" + }, + "lim_x_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Min" + }, + "lim_x_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Max" + }, + "lim_y_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Min" + }, + "lim_y_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Max" + }, + "grid": { + "anyOf": [ + { + "$ref": "#/$defs/Grid" + }, + { + "type": "null" + } + ], + "default": null + }, + "scale_x": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "scale_y": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "figure_width": { + "default": 6.4, + "title": "Figure Width", + "type": "number" + }, + "figure_height": { + "default": 4.8, + "title": "Figure Height", + "type": "number" + } + }, + "title": "Format2D", + "type": "object" + }, + "Grid": { + "additionalProperties": false, + "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", + "properties": { + "major": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "minor": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "enable_minor_ticks": { + "default": false, + "title": "Enable Minor Ticks", + "type": "boolean" + }, + "zorder": { + "default": -1, + "title": "Zorder", + "type": "number" + } + }, + "title": "Grid", + "type": "object" + }, + "GridAxis": { + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "HistogramStyle": { + "description": "Label and style data for generating histogram bars\n\nAttributes:\n color (str): Color of bars\n label (str|None): Legend entry\n histtype (str): Histogram type corresponding to matplotlib argument of same name\n alpha_edge (float): Opacity of bar edge\n alpha_face (float): Opacity of bar face\n linewidth (float): Line width of bar outline\n bins (int | list[int] | Tuple[int] | NDArray[Shape[\"*\"], int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist])", + "properties": { + "color": { + "default": "k", + "title": "Color", + "type": "string" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + }, + "histtype": { + "default": "stepfilled", + "title": "Histtype", + "type": "string" + }, + "alpha_edge": { + "default": 0, + "title": "Alpha Edge", + "type": "number" + }, + "alpha_face": { + "default": 0.3, + "title": "Alpha Face", + "type": "number" + }, + "linewidth": { + "default": 2, + "title": "Linewidth", + "type": "number" + }, + "zorder": { + "default": 1, + "title": "Zorder", + "type": "integer" + }, + "bins": { + "anyOf": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + }, + { + "maxItems": 1, + "minItems": 1, + "prefixItems": [ + { + "type": "integer" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bins" + } + }, + "title": "HistogramStyle", + "type": "object" + }, + "Legend": { + "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", + "properties": { + "visible": { + "default": true, + "title": "Visible", + "type": "boolean" + }, + "title": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title" + }, + "framealpha": { + "default": 1, + "title": "Framealpha", + "type": "number" + }, + "loc": { + "$ref": "#/$defs/LegendLocation", + "default": "best" + }, + "ncol": { + "default": 1, + "title": "Ncol", + "type": "integer" + }, + "fancybox": { + "default": true, + "title": "Fancybox", + "type": "boolean" + }, + "edgecolor": { + "default": "black", + "title": "Edgecolor", + "type": "string" + }, + "zorder": { + "default": 10, + "title": "Zorder", + "type": "integer" + }, + "bbox_to_anchor": { + "anyOf": [ + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bbox To Anchor" + } + }, + "title": "Legend", + "type": "object" + }, + "LegendLocation": { + "enum": [ + "best", + "upper right", + "upper left", + "lower left", + "lower right", + "right", + "center left", + "center right", + "lower center", + "upper center", + "center" + ], + "title": "LegendLocation", + "type": "string" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + } + }, + "additionalProperties": false, + "description": "Use this class to specify a value to be collected into a matplotlib histogram.\n\nAttributes:\n tags (Tags): Tags used to sort data products\n value (float | str): Value to be binned\n style (HistogramStyle): Style of histogram display", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + }, + "format2d": { + "anyOf": [ + { + "$ref": "#/$defs/Format2D" + }, + { + "type": "null" + } + ], + "default": null + }, + "value": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Value" + }, + "style": { + "anyOf": [ + { + "$ref": "#/$defs/HistogramStyle" + }, + { + "type": "null" + } + ] + } + }, + "required": [ + "tags", + "value" + ], + "title": "HistogramEntry", + "type": "object" + }, + "HistogramStyle": { + "description": "Label and style data for generating histogram bars\n\nAttributes:\n color (str): Color of bars\n label (str|None): Legend entry\n histtype (str): Histogram type corresponding to matplotlib argument of same name\n alpha_edge (float): Opacity of bar edge\n alpha_face (float): Opacity of bar face\n linewidth (float): Line width of bar outline\n bins (int | list[int] | Tuple[int] | NDArray[Shape[\"*\"], int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist])", + "properties": { + "color": { + "default": "k", + "title": "Color", + "type": "string" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + }, + "histtype": { + "default": "stepfilled", + "title": "Histtype", + "type": "string" + }, + "alpha_edge": { + "default": 0, + "title": "Alpha Edge", + "type": "number" + }, + "alpha_face": { + "default": 0.3, + "title": "Alpha Face", + "type": "number" + }, + "linewidth": { + "default": 2, + "title": "Linewidth", + "type": "number" + }, + "zorder": { + "default": 1, + "title": "Zorder", + "type": "integer" + }, + "bins": { + "anyOf": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + }, + { + "maxItems": 1, + "minItems": 1, + "prefixItems": [ + { + "type": "integer" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bins" + } + }, + "title": "HistogramStyle", + "type": "object" + }, + "Legend": { + "$defs": { + "LegendLocation": { + "enum": [ + "best", + "upper right", + "upper left", + "lower left", + "lower right", + "right", + "center left", + "center right", + "lower center", + "upper center", + "center" + ], + "title": "LegendLocation", + "type": "string" + } + }, + "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", + "properties": { + "visible": { + "default": true, + "title": "Visible", + "type": "boolean" + }, + "title": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title" + }, + "framealpha": { + "default": 1, + "title": "Framealpha", + "type": "number" + }, + "loc": { + "$ref": "#/$defs/LegendLocation", + "default": "best" + }, + "ncol": { + "default": 1, + "title": "Ncol", + "type": "integer" + }, + "fancybox": { + "default": true, + "title": "Fancybox", + "type": "boolean" + }, + "edgecolor": { + "default": "black", + "title": "Edgecolor", + "type": "string" + }, + "zorder": { + "default": 10, + "title": "Zorder", + "type": "integer" + }, + "bbox_to_anchor": { + "anyOf": [ + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bbox To Anchor" + } + }, + "title": "Legend", + "type": "object" + }, + "Marker": { + "additionalProperties": false, + "description": "Defines marker for scattering to matplotlib\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n zorder (float): Prioritization\n label (Union[str, None]): Legend label\n symbol (str): Matplotlib symbol string", + "properties": { + "color": { + "default": "k", + "title": "Color", + "type": "string" + }, + "size": { + "default": 5, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + }, + "symbol": { + "default": ".", + "title": "Symbol", + "type": "string" + } + }, + "title": "Marker", + "type": "object" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + }, + "PlottableData2D": { + "$defs": { + "AxisScale": { + "enum": [ + "linear", + "log" + ], + "title": "AxisScale", + "type": "string" + }, + "Format2D": { + "additionalProperties": false, + "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", + "properties": { + "title_fig": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Fig" + }, + "legend": { + "anyOf": [ + { + "$ref": "#/$defs/Legend" + }, + { + "type": "null" + } + ], + "default": { + "visible": true, + "title": null, + "framealpha": 1.0, + "loc": "best", + "ncol": 1, + "fancybox": true, + "edgecolor": "black", + "zorder": 10, + "bbox_to_anchor": null + } + }, + "title_ax": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Ax" + }, + "label_x": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label X" + }, + "label_y": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label Y" + }, + "lim_x_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Min" + }, + "lim_x_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Max" + }, + "lim_y_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Min" + }, + "lim_y_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Max" + }, + "grid": { + "anyOf": [ + { + "$ref": "#/$defs/Grid" + }, + { + "type": "null" + } + ], + "default": null + }, + "scale_x": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "scale_y": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "figure_width": { + "default": 6.4, + "title": "Figure Width", + "type": "number" + }, + "figure_height": { + "default": 4.8, + "title": "Figure Height", + "type": "number" + } + }, + "title": "Format2D", + "type": "object" + }, + "Grid": { + "additionalProperties": false, + "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", + "properties": { + "major": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "minor": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "enable_minor_ticks": { + "default": false, + "title": "Enable Minor Ticks", + "type": "boolean" + }, + "zorder": { + "default": -1, + "title": "Zorder", + "type": "number" + } + }, + "title": "Grid", + "type": "object" + }, + "GridAxis": { + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "Legend": { + "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", + "properties": { + "visible": { + "default": true, + "title": "Visible", + "type": "boolean" + }, + "title": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title" + }, + "framealpha": { + "default": 1, + "title": "Framealpha", + "type": "number" + }, + "loc": { + "$ref": "#/$defs/LegendLocation", + "default": "best" + }, + "ncol": { + "default": 1, + "title": "Ncol", + "type": "integer" + }, + "fancybox": { + "default": true, + "title": "Fancybox", + "type": "boolean" + }, + "edgecolor": { + "default": "black", + "title": "Edgecolor", + "type": "string" + }, + "zorder": { + "default": 10, + "title": "Zorder", + "type": "integer" + }, + "bbox_to_anchor": { + "anyOf": [ + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bbox To Anchor" + } + }, + "title": "Legend", + "type": "object" + }, + "LegendLocation": { + "enum": [ + "best", + "upper right", + "upper left", + "lower left", + "lower right", + "right", + "center left", + "center right", + "lower center", + "upper center", + "center" + ], + "title": "LegendLocation", + "type": "string" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + } + }, + "additionalProperties": true, + "description": "Base class for children of DataProduct to be plotted ax xy data on a 2D plot\n\nAttributes:\n format2d (Format2D|None): Format to apply to plot\n tags (Tags): Tags to be used for sorting data.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + }, + "format2d": { + "anyOf": [ + { + "$ref": "#/$defs/Format2D" + }, + { + "type": "null" + } + ], + "default": null + } + }, + "required": [ + "tags" + ], + "title": "PlottableData2D", + "type": "object" + }, + "Point2D": { + "$defs": { + "AxisScale": { + "enum": [ + "linear", + "log" + ], + "title": "AxisScale", + "type": "string" + }, + "Format2D": { + "additionalProperties": false, + "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", + "properties": { + "title_fig": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Fig" + }, + "legend": { + "anyOf": [ + { + "$ref": "#/$defs/Legend" + }, + { + "type": "null" + } + ], + "default": { + "visible": true, + "title": null, + "framealpha": 1.0, + "loc": "best", + "ncol": 1, + "fancybox": true, + "edgecolor": "black", + "zorder": 10, + "bbox_to_anchor": null + } + }, + "title_ax": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Ax" + }, + "label_x": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label X" + }, + "label_y": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label Y" + }, + "lim_x_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Min" + }, + "lim_x_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Max" + }, + "lim_y_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Min" + }, + "lim_y_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Max" + }, + "grid": { + "anyOf": [ + { + "$ref": "#/$defs/Grid" + }, + { + "type": "null" + } + ], + "default": null + }, + "scale_x": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "scale_y": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "figure_width": { + "default": 6.4, + "title": "Figure Width", + "type": "number" + }, + "figure_height": { + "default": 4.8, + "title": "Figure Height", + "type": "number" + } + }, + "title": "Format2D", + "type": "object" + }, + "Grid": { + "additionalProperties": false, + "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", + "properties": { + "major": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "minor": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "enable_minor_ticks": { + "default": false, + "title": "Enable Minor Ticks", + "type": "boolean" + }, + "zorder": { + "default": -1, + "title": "Zorder", + "type": "number" + } + }, + "title": "Grid", + "type": "object" + }, + "GridAxis": { + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "Legend": { + "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", + "properties": { + "visible": { + "default": true, + "title": "Visible", + "type": "boolean" + }, + "title": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title" + }, + "framealpha": { + "default": 1, + "title": "Framealpha", + "type": "number" + }, + "loc": { + "$ref": "#/$defs/LegendLocation", + "default": "best" + }, + "ncol": { + "default": 1, + "title": "Ncol", + "type": "integer" + }, + "fancybox": { + "default": true, + "title": "Fancybox", + "type": "boolean" + }, + "edgecolor": { + "default": "black", + "title": "Edgecolor", + "type": "string" + }, + "zorder": { + "default": 10, + "title": "Zorder", + "type": "integer" + }, + "bbox_to_anchor": { + "anyOf": [ + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bbox To Anchor" + } + }, + "title": "Legend", + "type": "object" + }, + "LegendLocation": { + "enum": [ + "best", + "upper right", + "upper left", + "lower left", + "lower right", + "right", + "center left", + "center right", + "lower center", + "upper center", + "center" + ], + "title": "LegendLocation", + "type": "string" + }, + "Marker": { + "additionalProperties": false, + "description": "Defines marker for scattering to matplotlib\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n zorder (float): Prioritization\n label (Union[str, None]): Legend label\n symbol (str): Matplotlib symbol string", + "properties": { + "color": { + "default": "k", + "title": "Color", + "type": "string" + }, + "size": { + "default": 5, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + }, + "symbol": { + "default": ".", + "title": "Symbol", + "type": "string" + } + }, + "title": "Marker", + "type": "object" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + } + }, + "additionalProperties": false, + "description": "Defines a point to be scattered onto xy plot.\n\nAttributes:\n tags (Tags): Tags to be used for sorting data.\n x (float | str): X value for the point.\n y (float | str): Y value for the point.\n marker (Marker | None): Style and label information for scattering points to matplotlib axes.\n Only the label information is used in Grafana.\n Eventually style information will be used in grafana.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + }, + "format2d": { + "anyOf": [ + { + "$ref": "#/$defs/Format2D" + }, + { + "type": "null" + } + ], + "default": null + }, + "x": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "X" + }, + "y": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Y" + }, + "marker": { + "anyOf": [ + { + "$ref": "#/$defs/Marker" + }, + { + "type": "null" + } + ], + "default": { + "color": "k", + "size": 5.0, + "alpha": 1.0, + "zorder": 0.0, + "label": null, + "symbol": "." + } + } + }, + "required": [ + "tags", + "x", + "y" + ], + "title": "Point2D", + "type": "object" + }, + "ProductEntryMetadata": { + "properties": { + "source": { + "format": "path", + "title": "Source", + "type": "string" + } + }, + "required": [ + "source" + ], + "title": "ProductEntryMetadata", + "type": "object" + }, + "ProductIndexMap": { + "$defs": { + "ProductEntryMetadata": { + "properties": { + "source": { + "format": "path", + "title": "Source", + "type": "string" + } + }, + "required": [ + "source" + ], + "title": "ProductEntryMetadata", + "type": "object" + } + }, + "properties": { + "entries": { + "additionalProperties": { + "$ref": "#/$defs/ProductEntryMetadata" + }, + "title": "Entries", + "type": "object" + } + }, + "title": "ProductIndexMap", + "type": "object" + }, + "TableEntry": { + "additionalProperties": false, + "description": "Defines an entry to be collected into a table.\n\nCollected table entries will be printed in three forms when possible: melted, pivot (when possible), and stats (on pivot columns, when possible).\n\nAttributes:\n tags (Tags): Tags used to sort data products\n row (float | str): Row Label\n col (float | str): Column Label\n value (float | str): Value\n unit (str | None): Units for value\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + }, + "row": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Row" + }, + "col": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Col" + }, + "value": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + }, + { + "type": "boolean" + } + ], + "title": "Value" + }, + "unit": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Unit" + } + }, + "required": [ + "tags", + "row", + "col", + "value" + ], + "title": "TableEntry", + "type": "object" + }, + "Trace2D": { + "$defs": { + "AxisScale": { + "enum": [ + "linear", + "log" + ], + "title": "AxisScale", + "type": "string" + }, + "Format2D": { + "additionalProperties": false, + "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", + "properties": { + "title_fig": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Fig" + }, + "legend": { + "anyOf": [ + { + "$ref": "#/$defs/Legend" + }, + { + "type": "null" + } + ], + "default": { + "visible": true, + "title": null, + "framealpha": 1.0, + "loc": "best", + "ncol": 1, + "fancybox": true, + "edgecolor": "black", + "zorder": 10, + "bbox_to_anchor": null + } + }, + "title_ax": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Ax" + }, + "label_x": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label X" + }, + "label_y": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label Y" + }, + "lim_x_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Min" + }, + "lim_x_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Max" + }, + "lim_y_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Min" + }, + "lim_y_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Max" + }, + "grid": { + "anyOf": [ + { + "$ref": "#/$defs/Grid" + }, + { + "type": "null" + } + ], + "default": null + }, + "scale_x": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "scale_y": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "figure_width": { + "default": 6.4, + "title": "Figure Width", + "type": "number" + }, + "figure_height": { + "default": 4.8, + "title": "Figure Height", + "type": "number" + } + }, + "title": "Format2D", + "type": "object" + }, + "Grid": { + "additionalProperties": false, + "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", + "properties": { + "major": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "minor": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "enable_minor_ticks": { + "default": false, + "title": "Enable Minor Ticks", + "type": "boolean" + }, + "zorder": { + "default": -1, + "title": "Zorder", + "type": "number" + } + }, + "title": "Grid", + "type": "object" + }, + "GridAxis": { + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "Legend": { + "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", + "properties": { + "visible": { + "default": true, + "title": "Visible", + "type": "boolean" + }, + "title": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title" + }, + "framealpha": { + "default": 1, + "title": "Framealpha", + "type": "number" + }, + "loc": { + "$ref": "#/$defs/LegendLocation", + "default": "best" + }, + "ncol": { + "default": 1, + "title": "Ncol", + "type": "integer" + }, + "fancybox": { + "default": true, + "title": "Fancybox", + "type": "boolean" + }, + "edgecolor": { + "default": "black", + "title": "Edgecolor", + "type": "string" + }, + "zorder": { + "default": 10, + "title": "Zorder", + "type": "integer" + }, + "bbox_to_anchor": { + "anyOf": [ + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bbox To Anchor" + } + }, + "title": "Legend", + "type": "object" + }, + "LegendLocation": { + "enum": [ + "best", + "upper right", + "upper left", + "lower left", + "lower right", + "right", + "center left", + "center right", + "lower center", + "upper center", + "center" + ], + "title": "LegendLocation", + "type": "string" + }, + "Marker": { + "additionalProperties": false, + "description": "Defines marker for scattering to matplotlib\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n zorder (float): Prioritization\n label (Union[str, None]): Legend label\n symbol (str): Matplotlib symbol string", + "properties": { + "color": { + "default": "k", + "title": "Color", + "type": "string" + }, + "size": { + "default": 5, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + }, + "symbol": { + "default": ".", + "title": "Symbol", + "type": "string" + } + }, + "title": "Marker", + "type": "object" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + }, + "Point2D": { + "additionalProperties": false, + "description": "Defines a point to be scattered onto xy plot.\n\nAttributes:\n tags (Tags): Tags to be used for sorting data.\n x (float | str): X value for the point.\n y (float | str): Y value for the point.\n marker (Marker | None): Style and label information for scattering points to matplotlib axes.\n Only the label information is used in Grafana.\n Eventually style information will be used in grafana.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + }, + "format2d": { + "anyOf": [ + { + "$ref": "#/$defs/Format2D" + }, + { + "type": "null" + } + ], + "default": null + }, + "x": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "X" + }, + "y": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "string" + } + ], + "title": "Y" + }, + "marker": { + "anyOf": [ + { + "$ref": "#/$defs/Marker" + }, + { + "type": "null" + } + ], + "default": { + "color": "k", + "size": 5.0, + "alpha": 1.0, + "zorder": 0.0, + "label": null, + "symbol": "." + } + } + }, + "required": [ + "tags", + "x", + "y" + ], + "title": "Point2D", + "type": "object" + } + }, + "additionalProperties": false, + "description": "A collection of points comprising a trace.\nUse the [Trace2D.from_xy][trendify.api.Trace2D.from_xy] constructor.\n\nAttributes:\n points (List[Point2D]): List of points. Usually the points would have null values\n for `marker` and `format2d` fields to save space.\n pen (Pen): Style and label information for drawing to matplotlib axes.\n Only the label information is used in Grafana.\n Eventually style information will be used in grafana.\n tags (Tags): Tags to be used for sorting data.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + }, + "format2d": { + "anyOf": [ + { + "$ref": "#/$defs/Format2D" + }, + { + "type": "null" + } + ], + "default": null + }, + "points": { + "items": { + "$ref": "#/$defs/Point2D" + }, + "title": "Points", + "type": "array" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "k", + "size": 1.0, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "required": [ + "tags", + "points" + ], + "title": "Trace2D", + "type": "object" + }, + "XYData": { + "$defs": { + "AxisScale": { + "enum": [ + "linear", + "log" + ], + "title": "AxisScale", + "type": "string" + }, + "Format2D": { + "additionalProperties": false, + "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", + "properties": { + "title_fig": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Fig" + }, + "legend": { + "anyOf": [ + { + "$ref": "#/$defs/Legend" + }, + { + "type": "null" + } + ], + "default": { + "visible": true, + "title": null, + "framealpha": 1.0, + "loc": "best", + "ncol": 1, + "fancybox": true, + "edgecolor": "black", + "zorder": 10, + "bbox_to_anchor": null + } + }, + "title_ax": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title Ax" + }, + "label_x": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label X" + }, + "label_y": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label Y" + }, + "lim_x_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Min" + }, + "lim_x_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim X Max" + }, + "lim_y_min": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Min" + }, + "lim_y_max": { + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Lim Y Max" + }, + "grid": { + "anyOf": [ + { + "$ref": "#/$defs/Grid" + }, + { + "type": "null" + } + ], + "default": null + }, + "scale_x": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "scale_y": { + "$ref": "#/$defs/AxisScale", + "default": "linear" + }, + "figure_width": { + "default": 6.4, + "title": "Figure Width", + "type": "number" + }, + "figure_height": { + "default": 4.8, + "title": "Figure Height", + "type": "number" + } + }, + "title": "Format2D", + "type": "object" + }, + "Grid": { + "additionalProperties": false, + "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", + "properties": { + "major": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "minor": { + "$ref": "#/$defs/GridAxis", + "default": { + "show": false, + "pen": { + "alpha": 1.0, + "color": "gray", + "label": null, + "linestyle": "-", + "size": 0.75, + "zorder": 0.0 + } + } + }, + "enable_minor_ticks": { + "default": false, + "title": "Enable Minor Ticks", + "type": "boolean" + }, + "zorder": { + "default": -1, + "title": "Zorder", + "type": "number" + } + }, + "title": "Grid", + "type": "object" + }, + "GridAxis": { + "additionalProperties": false, + "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", + "properties": { + "show": { + "default": false, + "title": "Show", + "type": "boolean" + }, + "pen": { + "$ref": "#/$defs/Pen", + "default": { + "color": "gray", + "size": 0.75, + "alpha": 1.0, + "zorder": 0.0, + "linestyle": "-", + "label": null + } + } + }, + "title": "GridAxis", + "type": "object" + }, + "Legend": { + "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", + "properties": { + "visible": { + "default": true, + "title": "Visible", + "type": "boolean" + }, + "title": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Title" + }, + "framealpha": { + "default": 1, + "title": "Framealpha", + "type": "number" + }, + "loc": { + "$ref": "#/$defs/LegendLocation", + "default": "best" + }, + "ncol": { + "default": 1, + "title": "Ncol", + "type": "integer" + }, + "fancybox": { + "default": true, + "title": "Fancybox", + "type": "boolean" + }, + "edgecolor": { + "default": "black", + "title": "Edgecolor", + "type": "string" + }, + "zorder": { + "default": 10, + "title": "Zorder", + "type": "integer" + }, + "bbox_to_anchor": { + "anyOf": [ + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Bbox To Anchor" + } + }, + "title": "Legend", + "type": "object" + }, + "LegendLocation": { + "enum": [ + "best", + "upper right", + "upper left", + "lower left", + "lower right", + "right", + "center left", + "center right", + "lower center", + "upper center", + "center" + ], + "title": "LegendLocation", + "type": "string" + }, + "Pen": { + "additionalProperties": false, + "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", + "properties": { + "color": { + "anyOf": [ + { + "maxItems": 3, + "minItems": 3, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "maxItems": 4, + "minItems": 4, + "prefixItems": [ + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + }, + { + "type": "number" + } + ], + "type": "array" + }, + { + "type": "string" + } + ], + "default": "k", + "title": "Color" + }, + "size": { + "default": 1, + "title": "Size", + "type": "number" + }, + "alpha": { + "default": 1, + "title": "Alpha", + "type": "number" + }, + "zorder": { + "default": 0, + "title": "Zorder", + "type": "number" + }, + "linestyle": { + "anyOf": [ + { + "type": "string" + }, + { + "maxItems": 2, + "minItems": 2, + "prefixItems": [ + { + "type": "integer" + }, + { + "items": { + "type": "integer" + }, + "type": "array" + } + ], + "type": "array" + } + ], + "default": "-", + "title": "Linestyle" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Label" + } + }, + "title": "Pen", + "type": "object" + } + }, + "additionalProperties": true, + "description": "Base class for children of DataProduct to be plotted ax xy data on a 2D plot", + "properties": { + "tags": { + "items": { + "anyOf": [ + { + "items": {}, + "type": "array" + }, + {} + ] + }, + "title": "Tags", + "type": "array" + }, + "metadata": { + "additionalProperties": { + "type": "string" + }, + "default": {}, + "title": "Metadata", + "type": "object" + }, + "format2d": { + "anyOf": [ + { + "$ref": "#/$defs/Format2D" + }, + { + "type": "null" + } + ], + "default": null + } + }, + "required": [ + "tags" + ], + "title": "XYData", + "type": "object" + } +} \ No newline at end of file diff --git a/src/trendify/__init__.py b/src/trendify/__init__.py index 3ab8434..c7e908e 100644 --- a/src/trendify/__init__.py +++ b/src/trendify/__init__.py @@ -2,5 +2,125 @@ Provides top-level imports """ -from trendify.api import * -from trendify.server import * +from trendify import base +from trendify import formats +from trendify import plotting +from trendify import store +from trendify import styling + +from trendify.base import ( + DataProduct, + HashableBase, + Pen, + ProductGenerator, + ProductList, + ProductType, + R, + Tag, + Tags, + data_product, + helpers, + pen, +) +from trendify.formats import ( + AxisScale, + Format2D, + PlottableData2D, + TableEntry, + XYData, + format2d, + table, +) +from trendify.plotting import ( + AxLine, + HistogramEntry, + HistogramStyle, + LineOrientation, + PlotlyFigure, + Point2D, + SingleAxisFigure, + Trace2D, + axline, + figure, + histogram, + point, + trace, +) +from trendify.store import ( + ProductStore, + SCHEMA_VERSION, + connect, + db, + decode_tag, + encode_tag, + product_store, + tags, +) +from trendify.styling import ( + Grid, + GridAxis, + GridTheme, + Legend, + LegendLocation, + Marker, + grid, + legend, + marker, +) + +__all__ = [ + "SCHEMA_VERSION", + "AxLine", + "AxisScale", + "DataProduct", + "Format2D", + "Grid", + "GridAxis", + "GridTheme", + "HashableBase", + "HistogramEntry", + "HistogramStyle", + "Legend", + "LegendLocation", + "LineOrientation", + "Marker", + "Pen", + "PlotlyFigure", + "PlottableData2D", + "Point2D", + "ProductGenerator", + "ProductList", + "ProductStore", + "ProductType", + "R", + "SingleAxisFigure", + "TableEntry", + "Tag", + "Tags", + "Trace2D", + "XYData", + "axline", + "base", + "connect", + "data_product", + "db", + "decode_tag", + "encode_tag", + "figure", + "format2d", + "formats", + "grid", + "helpers", + "histogram", + "legend", + "marker", + "pen", + "plotting", + "point", + "product_store", + "store", + "styling", + "table", + "tags", + "trace", +] diff --git a/src/trendify/base/__init__.py b/src/trendify/base/__init__.py new file mode 100644 index 0000000..21bf916 --- /dev/null +++ b/src/trendify/base/__init__.py @@ -0,0 +1,34 @@ +from trendify.base import data_product +from trendify.base import helpers +from trendify.base import pen + +from trendify.base.data_product import ( + DataProduct, + ProductGenerator, + ProductList, +) +from trendify.base.helpers import ( + HashableBase, + ProductType, + R, + Tag, + Tags, +) +from trendify.base.pen import ( + Pen, +) + +__all__ = [ + "DataProduct", + "HashableBase", + "Pen", + "ProductGenerator", + "ProductList", + "ProductType", + "R", + "Tag", + "Tags", + "data_product", + "helpers", + "pen", +] diff --git a/src/trendify/base/data_product.py b/src/trendify/base/data_product.py new file mode 100644 index 0000000..a637daf --- /dev/null +++ b/src/trendify/base/data_product.py @@ -0,0 +1,138 @@ +from __future__ import annotations + +from pathlib import Path +from typing import Any +from collections.abc import Callable +import logging + +from pydantic import ( + BaseModel, + ConfigDict, + InstanceOf, + SerializeAsAny, + computed_field, + model_validator, +) + +from trendify.base.helpers import Tags + + +logger = logging.getLogger(__name__) + +__all__ = ["DataProduct", "ProductGenerator", "ProductList"] + +_data_product_subclass_registry: dict[str, type[DataProduct]] = {} + + +class DataProduct(BaseModel): + """ + Base class for data products to be generated and handled. + + Attributes: + product_type (str): Product type should be the same as the class name. + The product type is used to search for products from the store. + tags (Tags): Tags to be used for sorting data. + metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + + """ + + tags: Tags + metadata: dict[str, str] = {} + + @model_validator(mode="before") + @classmethod + def _remove_computed_fields(cls, data: dict[str, Any]) -> dict[str, Any]: + """ + Removes computed fields before passing data to constructor. + + Args: + data (dict[str, Any]): Raw data to be validated before passing to pydantic class constructor. + + Returns: + (dict[str, Any]): Sanitized data to be passed to class constructor. + + """ + for f in cls.model_computed_fields: + data.pop(f, None) + return data + + @computed_field + @property + def product_type(self) -> str: + """ + Returns: + (str): Product type should be the same as the class name. + The product type is used to search for products from the store. + + """ + return type(self).__name__ + + def __init_subclass__(cls, **kwargs: Any) -> None: + """ + Registers child subclasses to be able to parse them from JSON payloads using the + [deserialize][trendify.base.data_product.DataProduct.deserialize] method + """ + super().__init_subclass__(**kwargs) + _data_product_subclass_registry[cls.__name__] = cls + + model_config = ConfigDict(extra="allow") + + def append_to_list(self, l: list): + """ + Appends self to list. + + Args: + l (List): list to which `self` will be appended + + Returns: + (Self): returns instance of `self` + + """ + l.append(self) + return self + + @classmethod + def registry(cls) -> dict[str, type[DataProduct]]: + """ + Returns: + (dict[str, type[DataProduct]]): a copy of the product_type -> class registry, + used by the store to resolve which leaf `product_type` names correspond to a + given (possibly non-leaf) type when filtering by `object_type`. + + """ + return dict(_data_product_subclass_registry) + + @classmethod + def deserialize(cls, product_type: str, payload: str) -> DataProduct: + """ + Loads a stored JSON payload into the pydantic dataclass registered under `product_type`. + + Args: + product_type (str): the `product_type` discriminator string (same as the class name) + payload (str): the raw JSON text (e.g. from the store's `products.payload` column) + + Returns: + (DataProduct): the reconstructed, correctly-typed product instance + + """ + duck_type = _data_product_subclass_registry[product_type] + return duck_type.model_validate_json(payload) + + def set_metadata(self, new: dict[str, str]): + self.metadata = new + return self + + +ProductList = list[SerializeAsAny[InstanceOf[DataProduct]]] +"""List of serializable [DataProduct][trendify.base.data_product.DataProduct] or child classes thereof""" + +ProductGenerator = Callable[[Path], ProductList] +""" +Callable method type. Users must provide a `ProductGenerator` to map over raw data. + +Args: + path (Path): Workdir holding raw data (Should be one per run from a batch) + +Returns: + (ProductList): List of data products to be sorted and used to produce assets +""" diff --git a/src/trendify/base/helpers.py b/src/trendify/base/helpers.py new file mode 100644 index 0000000..7ed5e30 --- /dev/null +++ b/src/trendify/base/helpers.py @@ -0,0 +1,68 @@ +from __future__ import annotations + +import logging +from enum import StrEnum, auto +from typing import TypeVar + +from pydantic import BaseModel + +logger = logging.getLogger(__name__) + +__all__ = [ + "HashableBase", + "ProductType", + "R", + "Tag", + "Tags", +] + +R = TypeVar("R") + +Tag = str | int | tuple[str | int, ...] +""" +Determines what types can be used to define a tag. + +Narrower than v1's ``Union[tuple[Hashable, ...], Hashable]``: tags must be reliably +JSON-encodable (str/int, or tuples thereof) because the store canonicalizes a tag into a +`tag_key` via `json.dumps` for indexed lookup (see `trendify.store.tags`). A bare `Hashable` +can't guarantee a stable, 1:1 JSON encoding. +""" + +Tags = list[Tag] +""" +List of tags +""" + + +class HashableBase(BaseModel): + """ + Defines a base for hashable pydantic data classes so that they can be reduced to a minimal set through type-casting. + """ + + def __hash__(self): + """ + Defines hash function + """ + return hash((type(self), *tuple(self.__dict__.values()))) + + +class ProductType(StrEnum): + """ + Defines all product types. Used to type-cast URL info in server to validate. + + Attributes: + DataProduct (str): class name + XYData (str): class name + Trace2D (str): class name + Point2D (str): class name + TableEntry (str): class name + HistogramEntry (str): class name + + """ + + DataProduct = auto() + XYData = auto() + Trace2D = auto() + Point2D = auto() + TableEntry = auto() + HistogramEntry = auto() diff --git a/src/trendify/base/pen.py b/src/trendify/base/pen.py new file mode 100644 index 0000000..7d5a046 --- /dev/null +++ b/src/trendify/base/pen.py @@ -0,0 +1,136 @@ +from __future__ import annotations + + +from pydantic import ConfigDict +from matplotlib.colors import to_rgba + +from trendify.base.helpers import HashableBase + +__all__ = ["Pen"] + + +class Pen(HashableBase): + """ + Defines the pen drawing to matplotlib. + + Attributes: + color (str): Color of line + size (float): Line width + alpha (float): Opacity from 0 to 1 (inclusive) + linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)). + zorder (float): Prioritization + label (Union[str, None]): Legend label + + """ + + color: tuple[float, float, float] | tuple[float, float, float, float] | str = "k" + size: float = 1 + alpha: float = 1 + zorder: float = 0 + linestyle: str | tuple[int, tuple[int, ...]] = "-" + label: str | None = None + + model_config = ConfigDict(extra="forbid") + + def as_scatter_plot_kwargs(self): + """ + Returns kwargs dictionary for passing to [matplotlib plot][matplotlib.axes.Axes.plot] method + """ + return { + "color": self.color, + "linewidth": self.size, + "linestyle": self.linestyle, + "alpha": self.alpha, + "zorder": self.zorder, + "label": self.label, + } + + def _convert_linestyle_to_plotly(self) -> str: + """Convert matplotlib linestyle to plotly dash style""" + # Handle string styles + style_map = { + "-": "solid", + "--": "dash", + ":": "dot", + "-.": "dashdot", + } + if isinstance(self.linestyle, str): + return style_map.get(self.linestyle, "solid") + + # Handle tuple styles - convert to 'dash' as approximation + return "dash" + + @property + def rgba(self) -> str: + """ + Convert the pen's color to rgba string format. + + Returns: + str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 + + """ + # Handle different color input formats + if isinstance(self.color, tuple): + if len(self.color) == 3: # RGB tuple + r, g, b = self.color + a = self.alpha + else: # RGBA tuple + r, g, b, a = self.color + # Convert 0-1 range to 0-255 for RGB + r, g, b = int(r * 255), int(g * 255), int(b * 255) + else: # String color (name or hex) + # Use matplotlib's color converter + rgba_vals = to_rgba(self.color, self.alpha) + # Convert 0-1 range to 0-255 for RGB + r, g, b = [int(x * 255) for x in rgba_vals[:3]] + a = rgba_vals[3] + + return f"rgba({r}, {g}, {b}, {a})" + + @property + def rgb(self) -> str: + return ", ".join(self.rgba.split(",")[0:-1]) + ")" + + def get_contrast_color(self, background_luminance: float = 1.0) -> str: + """ + Returns 'white' or 'black' to provide the best contrast against the pen's color, + taking into account the alpha (transparency) value of the line. + + Args: + background_luminance (float): The luminance of the background (default is 1.0 for white). + + Returns: + str: 'white' or 'black' + + """ + # Convert the pen's color to RGB (0-255 range) and get alpha + if isinstance(self.color, tuple): + if len(self.color) == 3: # RGB tuple + r, g, b = self.color + a = self.alpha + else: # RGBA tuple + r, g, b, a = self.color + r, g, b = int(r * 255), int(g * 255), int(b * 255) + else: # String color (name or hex) + rgba_vals = to_rgba(self.color, self.alpha) + r, g, b = [int(x * 255) for x in rgba_vals[:3]] + a = rgba_vals[3] + + # Calculate relative luminance of the pen's color + def luminance(channel): + channel /= 255.0 + return ( + channel / 12.92 + if channel <= 0.03928 + else ((channel + 0.055) / 1.055) ** 2.4 + ) + + color_luminance = ( + 0.2126 * luminance(r) + 0.7152 * luminance(g) + 0.0722 * luminance(b) + ) + + # Blend the color luminance with the background luminance based on alpha + blended_luminance = (1 - a) * background_luminance + a * color_luminance + + # Return white for dark blended colors, black for light blended colors + return "white" if blended_luminance < 0.5 else "black" diff --git a/src/trendify/formats/__init__.py b/src/trendify/formats/__init__.py new file mode 100644 index 0000000..5773899 --- /dev/null +++ b/src/trendify/formats/__init__.py @@ -0,0 +1,22 @@ +from trendify.formats import format2d +from trendify.formats import table + +from trendify.formats.format2d import ( + AxisScale, + Format2D, + PlottableData2D, + XYData, +) +from trendify.formats.table import ( + TableEntry, +) + +__all__ = [ + "AxisScale", + "Format2D", + "PlottableData2D", + "TableEntry", + "XYData", + "format2d", + "table", +] diff --git a/src/trendify/formats/format2d.py b/src/trendify/formats/format2d.py new file mode 100644 index 0000000..e7a6091 --- /dev/null +++ b/src/trendify/formats/format2d.py @@ -0,0 +1,152 @@ +from __future__ import annotations + +import logging +from collections.abc import Iterable +from enum import StrEnum +from typing import TYPE_CHECKING + +import numpy as np +from pydantic import ConfigDict + +from trendify.base.data_product import DataProduct +from trendify.base.helpers import HashableBase +from trendify.styling.grid import Grid +from trendify.styling.legend import Legend + +if TYPE_CHECKING: + from trendify.plotting.figure import PlotlyFigure +logger = logging.getLogger(__name__) + +__all__ = ["AxisScale", "Format2D", "PlottableData2D", "XYData"] + + +class AxisScale(StrEnum): + LINEAR = "linear" + """Format axis as linear""" + LOG = "log" + """Format axis with log base 10""" + + +class Format2D(HashableBase): + """ + Formatting data for matplotlib figure and axes + + Attributes: + title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None. + legend (Optional[Legend], optional): Sets [legend style][trendify.styling.legend.Legend]. Defaults to Legend(). + title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None. + label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None. + label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None. + lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None. + lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None. + lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None. + lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None. + grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None. + scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR + scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR + figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4. + figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8. + + """ + + title_fig: str | None = None + legend: Legend | None = Legend() + title_ax: str | None = None + label_x: str | None = None + label_y: str | None = None + lim_x_min: float | None = None + lim_x_max: float | None = None + lim_y_min: float | None = None + lim_y_max: float | None = None + grid: Grid | None = None + scale_x: AxisScale = AxisScale.LINEAR + scale_y: AxisScale = AxisScale.LINEAR + figure_width: float = 6.4 + figure_height: float = 4.8 + + model_config = ConfigDict(extra="forbid") + + @classmethod + def union_from_iterable(cls, format2ds: Iterable[Format2D]): + """ + Gets the most inclusive format object (in terms of limits) from a list of `Format2D` objects. + Requires that the label and title fields are identical for all format objects in the list. + + Args: + format2ds (Iterable[Format2D]): Iterable of `Format2D` objects. + + Returns: + (Format2D): Single format object from list of objects. + + """ + formats = list(set(format2ds) - {None}) + + [title_fig] = set(i.title_fig for i in formats if i is not None) + [legend] = set(i.legend for i in formats if i is not None) + [title_ax] = set(i.title_ax for i in formats if i is not None) + [label_x] = set(i.label_x for i in formats if i is not None) + [label_y] = set(i.label_y for i in formats if i is not None) + [figure_width] = set(i.figure_width for i in formats) + [figure_height] = set(i.figure_height for i in formats) + + x_min = [i.lim_x_min for i in formats if i.lim_x_min is not None] + x_max = [i.lim_x_max for i in formats if i.lim_x_max is not None] + y_min = [i.lim_y_min for i in formats if i.lim_y_min is not None] + y_max = [i.lim_y_max for i in formats if i.lim_y_max is not None] + + lim_x_min = np.min(x_min) if len(x_min) > 0 else None + lim_x_max = np.max(x_max) if len(x_max) > 0 else None + lim_y_min = np.min(y_min) if len(y_min) > 0 else None + lim_y_max = np.max(y_max) if len(y_max) > 0 else None + + grid = Grid.union_from_iterable(f.grid for f in formats if f.grid is not None) + + [scale_x] = set(i.scale_x for i in formats) + [scale_y] = set(i.scale_y for i in formats) + + return cls( + title_fig=title_fig, + legend=legend, + title_ax=title_ax, + label_x=label_x, + label_y=label_y, + lim_x_min=lim_x_min, + lim_x_max=lim_x_max, + lim_y_min=lim_y_min, + lim_y_max=lim_y_max, + grid=grid, + scale_x=scale_x, + scale_y=scale_y, + figure_width=figure_width, + figure_height=figure_height, + ) + + +class PlottableData2D(DataProduct): + """ + Base class for children of DataProduct to be plotted ax xy data on a 2D plot + + Attributes: + format2d (Format2D|None): Format to apply to plot + tags (Tags): Tags to be used for sorting data. + metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + + """ + + format2d: Format2D | None = None + + def add_to_plotly(self, plotly_figure: PlotlyFigure): + """ + Add this data product to a plotly figure + + Args: + plotly_figure (PlotlyFigure): Plotly figure to add data to + + """ + raise NotImplementedError("Subclasses must implement add_to_plotly") + + +class XYData(PlottableData2D): + """ + Base class for children of DataProduct to be plotted ax xy data on a 2D plot + """ diff --git a/src/trendify/formats/table.py b/src/trendify/formats/table.py new file mode 100644 index 0000000..22c5c21 --- /dev/null +++ b/src/trendify/formats/table.py @@ -0,0 +1,50 @@ +from __future__ import annotations + +import logging + +from pydantic import ConfigDict + +from trendify.base.data_product import DataProduct + +logger = logging.getLogger(__name__) + +__all__ = ["TableEntry"] + + +class TableEntry(DataProduct): + """ + Defines an entry to be collected into a table. + + Collected table entries will be printed in three forms when possible: melted, pivot (when possible), and stats (on pivot columns, when possible). + + Attributes: + tags (Tags): Tags used to sort data products + row (float | str): Row Label + col (float | str): Column Label + value (float | str | bool): Value + unit (str | None): Units for value + metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + + """ + + row: float | str + col: float | str + value: float | str | bool + unit: str | None = None + + model_config = ConfigDict(extra="forbid") + + def get_entry_dict(self): + """ + Returns a dictionary of entries to be used in creating a table. + + Returns: + (dict[str, str | float]): Dictionary of entries to be used in creating a melted table + + """ + return { + "row": self.row, + "col": self.col, + "value": self.value, + "unit": self.unit, + } diff --git a/src/trendify/plotting/__init__.py b/src/trendify/plotting/__init__.py new file mode 100644 index 0000000..8da7c3b --- /dev/null +++ b/src/trendify/plotting/__init__.py @@ -0,0 +1,40 @@ +from trendify.plotting import axline +from trendify.plotting import figure +from trendify.plotting import histogram +from trendify.plotting import point +from trendify.plotting import trace + +from trendify.plotting.axline import ( + AxLine, + LineOrientation, +) +from trendify.plotting.figure import ( + PlotlyFigure, + SingleAxisFigure, +) +from trendify.plotting.histogram import ( + HistogramEntry, + HistogramStyle, +) +from trendify.plotting.point import ( + Point2D, +) +from trendify.plotting.trace import ( + Trace2D, +) + +__all__ = [ + "AxLine", + "HistogramEntry", + "HistogramStyle", + "LineOrientation", + "PlotlyFigure", + "Point2D", + "SingleAxisFigure", + "Trace2D", + "axline", + "figure", + "histogram", + "point", + "trace", +] diff --git a/src/trendify/plotting/axline.py b/src/trendify/plotting/axline.py new file mode 100644 index 0000000..b8c2ea4 --- /dev/null +++ b/src/trendify/plotting/axline.py @@ -0,0 +1,123 @@ +from __future__ import annotations + +import logging +from enum import Enum + +from matplotlib.axes import Axes +from pydantic import ConfigDict + +from trendify.base.pen import Pen +from trendify.formats.format2d import PlottableData2D +from trendify.plotting.figure import PlotlyFigure + +__all__ = ["AxLine", "LineOrientation"] + +logger = logging.getLogger(__name__) + + +class LineOrientation(Enum): + """ + Defines orientation for axis lines + + Attributes: + HORIZONTAL (LineOrientation): Horizontal line + VERTICAL (LineOrientation): Vertical line + + """ + + HORIZONTAL = "horizontal" + VERTICAL = "vertical" + + +class AxLine(PlottableData2D): + """ + Defines a horizontal or vertical line to be drawn on a plot. + + Attributes: + value (float): Value at which to draw the line (x-value for vertical, y-value for horizontal) + orientation (LineOrientation): Whether line should be horizontal or vertical + pen (Pen): Style and label information for drawing to matplotlib axes + tags (Tags): Tags to be used for sorting data + metadata (dict[str, str]): A dictionary of metadata + + """ + + value: float + orientation: LineOrientation + pen: Pen = Pen() + + model_config = ConfigDict(extra="forbid") + + def plot_to_ax(self, ax: Axes): + """ + Plots line to matplotlib axes object. + + Args: + ax (Axes): axes to which line should be plotted + + """ + match self.orientation: + case LineOrientation.HORIZONTAL: + ax.axhline(y=self.value, **self.pen.as_scatter_plot_kwargs()) + case LineOrientation.VERTICAL: + ax.axvline(x=self.value, **self.pen.as_scatter_plot_kwargs()) + case _: + logger.error(f"Unrecognized line orientation {self.orientation}") + + def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: + """Add axis line to plotly figure without showing it in the legend""" + match self.orientation: + case LineOrientation.HORIZONTAL: + plotly_figure.fig.add_hline( + y=self.value, + line=dict( + color=self.pen.rgba if self.pen else None, + width=self.pen.size if self.pen else None, + dash=( + self.pen._convert_linestyle_to_plotly() + if self.pen + else None + ), + ), + showlegend=False, # Do not show in the legend + opacity=self.pen.alpha if self.pen else None, + ) + plotly_figure.fig.add_annotation( + x=1.0, + y=self.value, + xref="paper", # Reference to the entire plotting area + yref="y", + text=self.pen.label, + showarrow=False, # Hide the arrow if not needed + xanchor="left", + yanchor="middle", # Center the text horizontally with the vline + ) + case LineOrientation.VERTICAL: + plotly_figure.fig.add_vline( + x=self.value, + line=dict( + color=self.pen.rgba if self.pen else None, + width=self.pen.size if self.pen else None, + dash=( + self.pen._convert_linestyle_to_plotly() + if self.pen + else None + ), + ), + showlegend=False, # Do not show in the legend + opacity=self.pen.alpha if self.pen else None, + ) + plotly_figure.fig.add_annotation( + x=self.value, + y=1.0, # Position slightly above the plot area + yref="paper", # Reference to the entire plotting area + text=self.pen.label, + showarrow=False, # Hide the arrow if not needed + xanchor="center", # Center the text horizontally with the vline + yanchor="bottom", + ) + case _: + logger.error(f"Unrecognized line orientation {self.orientation}") + return plotly_figure + + return plotly_figure diff --git a/src/trendify/plotting/figure.py b/src/trendify/plotting/figure.py new file mode 100644 index 0000000..8bf76d4 --- /dev/null +++ b/src/trendify/plotting/figure.py @@ -0,0 +1,339 @@ +from __future__ import annotations + +from dataclasses import dataclass, field +from pathlib import Path +import matplotlib.pyplot as plt +import warnings +import logging + +import numpy as np +import plotly.graph_objects as go + +from trendify.formats.format2d import AxisScale, PlottableData2D + +from typing import Self, TYPE_CHECKING + +from pydantic import ConfigDict + +from trendify.base.helpers import Tag + +if TYPE_CHECKING: + from trendify.formats.format2d import Format2D + from trendify.styling.grid import Grid + from matplotlib.axes import Axes + from matplotlib.figure import Figure + + +__all__ = ["PlotlyFigure", "SingleAxisFigure"] + +logger = logging.getLogger(__name__) + + +@dataclass +class SingleAxisFigure: + """ + Data class storing a matlab figure and axis. The stored tag data in this class is so-far unused. + + Attributes: + ax (Axes): Matplotlib axis to which data will be plotted + fig (Figure): Matplotlib figure. + tag (Tag): Figure tag. Not yet used. + + """ + + model_config = ConfigDict(arbitrary_types_allowed=True) + tag: Tag + fig: Figure + ax: Axes + + @classmethod + def new(cls, tag: Tag): + """ + Creates new figure and axis. Returns new instance of this class. + + Args: + tag (Tag): tag (not yet used) + + Returns: + (Type[Self]): New single axis figure + + """ + fig = plt.figure() + ax = fig.add_subplot(1, 1, 1) + return cls( + tag=tag, + fig=fig, + ax=ax, + ) + + def apply_format(self, format2d: Format2D): + """ + Applies format to figure and axes labels and limits + + Args: + format2d (Format2D): format information to apply to the single axis figure + + """ + if format2d.title_ax is not None: + self.ax.set_title(format2d.title_ax) + if format2d.title_fig is not None: + self.fig.suptitle(format2d.title_fig) + + leg = None + if format2d.legend is not None: + with warnings.catch_warnings(action="ignore", category=UserWarning): + handles, labels = self.ax.get_legend_handles_labels() + by_label = dict(zip(labels, handles)) + if by_label: + sorted_items = sorted(by_label.items(), key=lambda item: item[0]) + labels_sorted, handles_sorted = zip(*sorted_items) + + kwargs = format2d.legend.to_kwargs() + + leg = self.ax.legend( + handles=handles_sorted, + labels=labels_sorted, + bbox_to_anchor=format2d.legend.bbox_to_anchor, + **kwargs, + ) + leg.set_zorder(level=format2d.legend.zorder) + + if leg is not None and format2d.legend.edgecolor: + leg.get_frame().set_edgecolor(format2d.legend.edgecolor) + + if format2d.label_x is not None: + self.ax.set_xlabel(xlabel=format2d.label_x) + if format2d.label_y is not None: + self.ax.set_ylabel(ylabel=format2d.label_y) + + self.ax.set_xlim(left=format2d.lim_x_min, right=format2d.lim_x_max) + self.ax.set_ylim(bottom=format2d.lim_y_min, top=format2d.lim_y_max) + + self.ax.set_xscale(format2d.scale_x.value) + self.ax.set_yscale(format2d.scale_y.value) + + if format2d.grid is not None: + self.apply_grid(format2d.grid) + + self.fig.set_size_inches(format2d.figure_width, format2d.figure_height) + self.fig.tight_layout(rect=(0, 0.03, 1, 0.95)) + return self + + def apply_grid(self, grid: Grid): + self.ax.set_axisbelow(True) + + # Major grid + if grid.major.show: + self.ax.grid( + visible=True, + which="major", + color=grid.major.pen.color, + linestyle=grid.major.pen.linestyle, + linewidth=grid.major.pen.size, + alpha=grid.major.pen.alpha, + zorder=grid.zorder, + ) + else: + self.ax.grid(visible=False, which="major") + + # Minor ticks and grid + if grid.enable_minor_ticks: + self.ax.minorticks_on() + else: + self.ax.minorticks_off() + + if grid.minor.show: + self.ax.grid( + visible=True, + which="minor", + color=grid.minor.pen.color, + linestyle=grid.minor.pen.linestyle, + linewidth=grid.minor.pen.size, + alpha=grid.minor.pen.alpha, + zorder=grid.zorder, + ) + else: + self.ax.grid(visible=False, which="minor") + + def savefig(self, path: Path, dpi: int = 500): + """ + Wrapper on matplotlib savefig method. Saves figure to given path with given dpi resolution. + + Returns: + (Self): Returns self + + """ + self.fig.savefig(path, dpi=dpi) + return self + + def __del__(self): + """ + Closes stored matplotlib figure before deleting reference to object. + """ + plt.close(self.fig) + + +@dataclass +class PlotlyFigure: + model_config = ConfigDict(arbitrary_types_allowed=True) + tag: Tag + fig: go.Figure + legend_groups: set[str] = field(default_factory=set) + + @classmethod + def new(cls, tag: Tag): + """ + Creates new figure and axis. Returns new instance of this class. + + Args: + tag (Tag): tag (not yet used) + + Returns: + (Type[Self]): New single axis figure + + """ + fig = go.Figure() + return cls(tag=tag, fig=fig) + + def apply_format(self, format2d: Format2D): + """ + Applies format to Plotly figure layout including axes labels and limits + + Args: + format2d (Format2D): format information to apply to the figure + + """ + layout_updates = {} + + # Set titles + if format2d.title_fig is not None and format2d.title_ax is not None: + layout_updates["title"] = f"{format2d.title_fig} | {format2d.title_ax}" + elif format2d.title_fig is None and format2d.title_ax is not None: + layout_updates["title"] = f"{format2d.title_ax}" + elif format2d.title_fig is not None and format2d.title_ax is None: + layout_updates["title"] = f"{format2d.title_fig}" + + # Set axis labels + if format2d.label_x is not None: + layout_updates["xaxis"] = {"title": format2d.label_x} + if format2d.label_y is not None: + layout_updates["yaxis"] = {"title": format2d.label_y} + + # Set axis ranges + def _log10(v: float | None): + return None if v is None else np.log10(v) + + if format2d.lim_x_min is not None or format2d.lim_x_max is not None: + if "xaxis" not in layout_updates: + layout_updates["xaxis"] = {} + + if format2d.scale_x == AxisScale.LOG: + layout_updates["xaxis"]["range"] = [ + _log10(format2d.lim_x_min), + _log10(format2d.lim_x_max), + ] + elif format2d.scale_x == AxisScale.LINEAR: + # v1 bugfix: this branch previously re-checked `== AxisScale.LOG`, + # making the plain (non-log) range-setting path unreachable. + layout_updates["xaxis"]["range"] = [ + format2d.lim_x_min, + format2d.lim_x_max, + ] + + if format2d.lim_y_min is not None or format2d.lim_y_max is not None: + if "yaxis" not in layout_updates: + layout_updates["yaxis"] = {} + if format2d.scale_y == AxisScale.LOG: + layout_updates["yaxis"]["range"] = [ + _log10(format2d.lim_y_min), + _log10(format2d.lim_y_max), + ] + elif format2d.scale_y == AxisScale.LINEAR: + # same fix as above, for the y axis + layout_updates["yaxis"]["range"] = [ + format2d.lim_y_min, + format2d.lim_y_max, + ] + + # Set axis scales + if format2d.scale_x is not None: + if "xaxis" not in layout_updates: + layout_updates["xaxis"] = {} + layout_updates["xaxis"]["type"] = format2d.scale_x.value + + if format2d.scale_y is not None: + if "yaxis" not in layout_updates: + layout_updates["yaxis"] = {} + layout_updates["yaxis"]["type"] = format2d.scale_y.value + + # Set legend + if format2d.legend is not None: + layout_updates["showlegend"] = format2d.legend.visible + layout_updates["legend"] = dict( + title=format2d.legend.title, + bordercolor=format2d.legend.edgecolor, + **format2d.legend.plotly_location, + ) + + # Apply grid if specified + if format2d.grid is not None: + self.apply_grid(format2d.grid) + + # Update layout + self.fig.update_layout(**layout_updates) + return self + + def apply_grid(self, grid: Grid): + """ + Applies grid settings to the Plotly figure + + Args: + grid (Grid): Grid configuration to apply + + """ + # Major grid + + xaxis_updates = { + "showgrid": grid.major.show, + "gridcolor": grid.major.pen.rgba if grid.major.show else None, + "gridwidth": grid.major.pen.size if grid.major.show else None, + "griddash": "solid" if grid.major.pen.linestyle == "-" else "dash", + } + + yaxis_updates = { + "showgrid": grid.major.show, + "gridcolor": grid.major.pen.rgba if grid.major.show else None, + "gridwidth": grid.major.pen.size if grid.major.show else None, + "griddash": "solid" if grid.major.pen.linestyle == "-" else "dash", + } + + # Minor ticks and grid + if grid.enable_minor_ticks: + xaxis_updates["minor"] = { + "showgrid": grid.minor.show, + "gridcolor": grid.minor.pen.rgba if grid.minor.show else None, + "gridwidth": grid.minor.pen.size if grid.minor.show else None, + "griddash": "solid" if grid.minor.pen.linestyle == "-" else "dash", + } + yaxis_updates["minor"] = { + "showgrid": grid.minor.show, + "gridcolor": grid.minor.pen.rgba if grid.minor.show else None, + "gridwidth": grid.minor.pen.size if grid.minor.show else None, + "griddash": "solid" if grid.minor.pen.linestyle == "-" else "dash", + } + + self.fig.update_xaxes(**xaxis_updates) + self.fig.update_yaxes(**yaxis_updates) + + def add_data_product(self, product: PlottableData2D) -> Self: + """ + Add a data product to the figure + + Args: + product (PlottableData2D): Data product to add to figure + + Returns: + Self: Returns self for method chaining + + """ + return product.add_to_plotly(self) diff --git a/src/trendify/plotting/histogram.py b/src/trendify/plotting/histogram.py new file mode 100644 index 0000000..cbe8b22 --- /dev/null +++ b/src/trendify/plotting/histogram.py @@ -0,0 +1,249 @@ +from __future__ import annotations + +import logging +from typing import cast + +import plotly.graph_objects as go +from matplotlib.colors import to_rgba +from numpydantic import NDArray, Shape +from pydantic import ConfigDict, Field + +from trendify.base.helpers import HashableBase, Tags +from trendify.formats.format2d import PlottableData2D +from trendify.plotting.figure import PlotlyFigure + +__all__ = ["HistogramEntry", "HistogramStyle"] + +logger = logging.getLogger(__name__) + + +class HistogramStyle(HashableBase): + """ + Label and style data for generating histogram bars + + Attributes: + color (str): Color of bars + label (str|None): Legend entry + histtype (str): Histogram type corresponding to matplotlib argument of same name + alpha_edge (float): Opacity of bar edge + alpha_face (float): Opacity of bar face + linewidth (float): Line width of bar outline + bins (int | list[int] | Tuple[int] | NDArray[Shape["*"], int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist]) + + """ + + color: str = "k" + label: str | None = None + histtype: str = "stepfilled" + alpha_edge: float = 0 + alpha_face: float = 0.3 + linewidth: float = 2 + zorder: int = 1 + bins: int | list[int] | tuple[int] | NDArray[Shape["*"], int] | None = None + + def as_plot_kwargs(self): + """ + Returns: + (dict): kwargs for matplotlib `hist` method + + """ + return { + "facecolor": (self.color, self.alpha_face), + "edgecolor": (self.color, self.alpha_edge), + "linewidth": self.linewidth, + "label": self.label, + "histtype": self.histtype, + "bins": self.bins, + "zorder": self.zorder, + } + + @property + def rgba_face(self) -> str: + """ + Convert the pen's color to rgba string format. + + Returns: + str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 + + """ + # Handle different color input formats + if isinstance(self.color, tuple): + if len(self.color) == 3: # RGB tuple + r, g, b = self.color + a = self.alpha_face + else: # RGBA tuple + r, g, b, a = self.color + # Convert 0-1 range to 0-255 for RGB + r, g, b = int(r * 255), int(g * 255), int(b * 255) + else: # String color (name or hex) + # Use matplotlib's color converter + rgba_vals = to_rgba(self.color, self.alpha_face) + # Convert 0-1 range to 0-255 for RGB + r, g, b = [int(x * 255) for x in rgba_vals[:3]] + a = rgba_vals[3] + + return f"rgba({r}, {g}, {b}, {a})" + + @property + def rgba_edge(self) -> str: + """ + Convert the pen's color to rgba string format. + + Returns: + str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 + + """ + # Handle different color input formats + if isinstance(self.color, tuple): + if len(self.color) == 3: # RGB tuple + r, g, b = self.color + a = self.alpha_edge + else: # RGBA tuple + r, g, b, a = self.color + # Convert 0-1 range to 0-255 for RGB + r, g, b = int(r * 255), int(g * 255), int(b * 255) + else: # String color (name or hex) + # Use matplotlib's color converter + rgba_vals = to_rgba(self.color, self.alpha_edge) + # Convert 0-1 range to 0-255 for RGB + r, g, b = [int(x * 255) for x in rgba_vals[:3]] + a = rgba_vals[3] + + return f"rgba({r}, {g}, {b}, {a})" + + @property + def rgb_face(self) -> str: + return ", ".join(self.rgba_face.split(",")[0:-1]) + ")" + + @property + def rgb_edge(self) -> str: + return ", ".join(self.rgba_edge.split(",")[0:-1]) + ")" + + def get_face_contrast_color(self, background_luminance: float = 1.0) -> str: + """ + Returns 'white' or 'black' to provide the best contrast against the pen's color, + taking into account the alpha (transparency) value of the line. + + Args: + background_luminance (float): The luminance of the background (default is 1.0 for white). + + Returns: + str: 'white' or 'black' + + """ + # Convert the pen's color to RGB (0-255 range) and get alpha + if isinstance(self.color, tuple): + if len(self.color) == 3: # RGB tuple + r, g, b = self.color + a = self.alpha_face + else: # RGBA tuple + r, g, b, a = self.color + r, g, b = int(r * 255), int(g * 255), int(b * 255) + else: # String color (name or hex) + rgba_vals = to_rgba(self.color, self.alpha_face) + r, g, b = [int(x * 255) for x in rgba_vals[:3]] + a = rgba_vals[3] + + # Calculate relative luminance of the pen's color + def luminance(channel): + channel /= 255.0 + return ( + channel / 12.92 + if channel <= 0.03928 + else ((channel + 0.055) / 1.055) ** 2.4 + ) + + color_luminance = ( + 0.2126 * luminance(r) + 0.7152 * luminance(g) + 0.0722 * luminance(b) + ) + + # Blend the color luminance with the background luminance based on alpha + blended_luminance = (1 - a) * background_luminance + a * color_luminance + + # Return white for dark blended colors, black for light blended colors + return "white" if blended_luminance < 0.5 else "black" + + +class HistogramEntry(PlottableData2D): + """ + Use this class to specify a value to be collected into a matplotlib histogram. + + Attributes: + tags (Tags): Tags used to sort data products + value (float | str): Value to be binned + style (HistogramStyle): Style of histogram display + + """ + + value: float | str + tags: Tags + style: HistogramStyle | None = Field(default_factory=HistogramStyle) + + model_config = ConfigDict(extra="forbid") + + def add_to_plotly(self, plotly_figure: PlotlyFigure): + """Add histogram entry to plotly figure, merging with existing traces if possible""" + if not self.style: + logger.error("HistogramEntry style is not defined.") + return plotly_figure + + # Create legend group key based on the label and color + legend_key = ( + f"{self.style.label}_{self.style.rgba_face}" if self.style.label else None + ) + + # Check if a trace with the same legend group already exists + traces = cast("tuple[go.Histogram, ...]", plotly_figure.fig.data) + for trace in traces: + if trace.legendgroup == legend_key: + # Append the value to the existing trace's x data + trace.x = list(trace.x) + [self.value] + return plotly_figure + + metadata_html = ( + "
".join([f"{key}: {value}" for key, value in self.metadata.items()]) + if self.metadata + else "" + ) + + hovertemplate = ( + f"{self.style.label if self.style.label else ''}
" + "x: %{x}
" + "y: %{y}
" + f"{metadata_html}" + ) + + # If no existing trace, add a new one + plotly_figure.fig.add_trace( + go.Histogram( + x=[self.value], + name=self.style.label, # Legend label + marker=dict( + color=self.style.rgba_face, + line=dict( + color=self.style.rgba_edge, + width=self.style.linewidth, + ), + ), + zorder=self.style.zorder, + nbinsx=self.style.bins if isinstance(self.style.bins, int) else None, + legendgroup=legend_key, # Group histograms with the same label and color + hovertemplate=hovertemplate, + hoverlabel=dict( + bgcolor=self.style.rgba_face, + bordercolor=self.style.rgba_edge, + font=dict( + color=self.style.get_face_contrast_color() # Optionally, set the font color as well + ), + ), + showlegend=( + True if self.style.label is not None else False + ), # Always show legend for the first trace + ) + ) + + # Track the legend group to avoid duplicate legend entries + if legend_key and legend_key not in plotly_figure.legend_groups: + plotly_figure.legend_groups.add(legend_key) + + return plotly_figure diff --git a/src/trendify/plotting/point.py b/src/trendify/plotting/point.py new file mode 100644 index 0000000..ee7a01f --- /dev/null +++ b/src/trendify/plotting/point.py @@ -0,0 +1,89 @@ +from __future__ import annotations + +import logging + +import plotly.graph_objects as go +from pydantic import ConfigDict + +from trendify.formats.format2d import XYData +from trendify.plotting.figure import PlotlyFigure +from trendify.styling.marker import Marker + +__all__ = ["Point2D"] + +logger = logging.getLogger(__name__) + + +class Point2D(XYData): + """ + Defines a point to be scattered onto xy plot. + + Attributes: + tags (Tags): Tags to be used for sorting data. + x (float | str): X value for the point. + y (float | str): Y value for the point. + marker (Marker | None): Style and label information for scattering points to matplotlib axes. + Only the label information is used in Grafana. + Eventually style information will be used in grafana. + metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + + """ + + x: float | str + y: float | str + marker: Marker | None = Marker() + + model_config = ConfigDict(extra="forbid") + + def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: + """Add point to plotly figure with legendgroup support""" + legend_key = ( + f"{self.marker.label}_{self.marker.color}_{self.marker.symbol}" + if self.marker + else None + ) + # Prepare metadata for the tooltip + metadata_html = ( + "
".join([f"{key}: {value}" for key, value in self.metadata.items()]) + if self.metadata + else "" + ) + + # Define hovertemplate for the tooltip + hovertemplate = ( + f"{self.marker.label if self.marker else ''}
" + "x: %{x}
" + "y: %{y}
" + f"{metadata_html}" + ) + + plotly_figure.fig.add_trace( + go.Scatter( + x=[self.x], + y=[self.y], + name=self.marker.label if self.marker else None, + mode="markers", + marker=dict( + color=self.marker.rgba if self.marker else None, + size=self.marker.size if self.marker else None, + symbol=self.marker.plotly_symbol if self.marker else None, + ), + zorder=int(self.marker.zorder) if self.marker else None, + legendgroup=legend_key, + hovertemplate=hovertemplate, + hoverlabel=dict( + bgcolor=(self.marker.rgba if self.marker else None), + font=dict( + color=self.marker.get_contrast_color() if self.marker else None + ), + ), + showlegend=( + True if legend_key not in plotly_figure.legend_groups else False + ), + ) + ) + + if legend_key and legend_key not in plotly_figure.legend_groups: + plotly_figure.legend_groups.add(legend_key) + + return plotly_figure diff --git a/src/trendify/plotting/trace.py b/src/trendify/plotting/trace.py new file mode 100644 index 0000000..5970c32 --- /dev/null +++ b/src/trendify/plotting/trace.py @@ -0,0 +1,186 @@ +from __future__ import annotations + +import logging +from typing import TYPE_CHECKING + +import numpy as np +import plotly.graph_objects as go +from numpydantic import NDArray, Shape +from pydantic import ConfigDict + +from trendify.base.helpers import Tags +from trendify.base.pen import Pen +from trendify.formats.format2d import XYData +from trendify.plotting.figure import PlotlyFigure +from trendify.plotting.point import Point2D +from trendify.styling.marker import Marker + +if TYPE_CHECKING: + from matplotlib.axes import Axes + + from trendify.formats.format2d import Format2D + +__all__ = ["Trace2D"] + +logger = logging.getLogger(__name__) + + +class Trace2D(XYData): + """ + A collection of points comprising a trace. + Use the [Trace2D.from_xy][trendify.plotting.trace.Trace2D.from_xy] constructor. + + Attributes: + points (List[Point2D]): List of points. Usually the points would have null values + for `marker` and `format2d` fields to save space. + pen (Pen): Style and label information for drawing to matplotlib axes. + Only the label information is used in Grafana. + Eventually style information will be used in grafana. + tags (Tags): Tags to be used for sorting data. + metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + + """ + + model_config = ConfigDict(extra="forbid") + + points: list[Point2D] + pen: Pen = Pen() + + @property + def x(self) -> NDArray[Shape["*"], float]: + """ + Returns an array of x values from `self.points` + + Returns: + (NDArray[Shape["*"], float]): array of x values from `self.points` + + """ + return np.array([p.x for p in self.points]) + + @property + def y(self) -> NDArray[Shape["*"], float]: + """ + Returns an array of y values from `self.points` + + Returns: + (NDArray[Shape["*"], float]): array of y values from `self.points` + + """ + return np.array([p.y for p in self.points]) + + def propagate_format2d_and_pen(self, marker_symbol: str = ".") -> None: + """ + Propagates format and style info to all `self.points` (in-place). + + Args: + marker_symbol (str): Valid matplotlib marker symbol + + """ + self.points = [ + p.model_copy( + update={ + "tags": self.tags, + "format2d": self.format2d, + "marker": Marker.from_pen(self.pen, symbol=marker_symbol), + } + ) + for p in self.points + ] + + @classmethod + def from_xy( + cls, + tags: Tags, + x: NDArray[Shape["*"], float], + y: NDArray[Shape["*"], float], + pen: Pen = Pen(), + format2d: Format2D | None = None, + ): + """ + Creates a list of [Point2D][trendify.plotting.point.Point2D]s from xy data and returns a new [Trace2D][trendify.plotting.trace.Trace2D] product. + + Args: + tags (Tags): Tags used to sort data products + x (NDArray[Shape["*"], float]): x values + y (NDArray[Shape["*"], float]): y values + pen (Pen): Style and label for trace + format2d (Format2D | None): Format to apply to plot + + """ + return cls( + tags=tags, + points=[ + Point2D( + tags=[], + x=x_, + y=y_, + marker=None, + format2d=None, + ) + for x_, y_ in zip(x, y) + ], + pen=pen, + format2d=format2d, + ) + + def plot_to_ax(self, ax: Axes): + """ + Plots xy data from trace to a matplotlib axes object. + + Args: + ax (Axes): axes to which xy data should be plotted + + """ + ax.plot(self.x, self.y, **self.pen.as_scatter_plot_kwargs()) + + def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: + legend_key = ( + f"{self.pen.label}_{self.pen.color}_{self.pen._convert_linestyle_to_plotly()}" + if self.pen + else None + ) + # Prepare metadata for the tooltip + metadata_html = ( + "
".join([f"{key}: {value}" for key, value in self.metadata.items()]) + if self.metadata + else "" + ) + + # Define hovertemplate for the tooltip + hovertemplate = ( + f"{self.pen.label if self.pen else ''}
" + "x: %{x}
" + "y: %{y}
" + f"{metadata_html}" + ) + + plotly_figure.fig.add_trace( + go.Scatter( + x=[p.x for p in self.points], + y=[p.y for p in self.points], + name=self.pen.label if self.pen else None, + mode="lines", + line=dict( + color=self.pen.rgba if self.pen else None, + width=self.pen.size if self.pen else None, + dash=self.pen._convert_linestyle_to_plotly() if self.pen else None, + ), + marker=dict( + color=self.pen.rgba if self.pen else None, # Marker color + ), + zorder=int(self.pen.zorder), + hovertemplate=hovertemplate, + hoverlabel=dict( + bgcolor=(self.pen.rgba if self.pen else None), + font=dict(color=self.pen.get_contrast_color()), + ), + legendgroup=legend_key, + showlegend=( + True if legend_key not in plotly_figure.legend_groups else False + ), + ) + ) + + if legend_key and legend_key not in plotly_figure.legend_groups: + plotly_figure.legend_groups.add(legend_key) + return plotly_figure diff --git a/src/trendify/store/__init__.py b/src/trendify/store/__init__.py new file mode 100644 index 0000000..61d9609 --- /dev/null +++ b/src/trendify/store/__init__.py @@ -0,0 +1,26 @@ +from trendify.store import db +from trendify.store import product_store +from trendify.store import tags + +from trendify.store.db import ( + SCHEMA_VERSION, + connect, +) +from trendify.store.product_store import ( + ProductStore, +) +from trendify.store.tags import ( + decode_tag, + encode_tag, +) + +__all__ = [ + "SCHEMA_VERSION", + "ProductStore", + "connect", + "db", + "decode_tag", + "encode_tag", + "product_store", + "tags", +] diff --git a/src/trendify/store/db.py b/src/trendify/store/db.py new file mode 100644 index 0000000..d0ce3f0 --- /dev/null +++ b/src/trendify/store/db.py @@ -0,0 +1,109 @@ +""" +SQLite connection factory, pragmas, and schema management for the trendify v2 store. + +Design (see rewrite_reference/OVERVIEW.md and the v2 architecture plan for full context): + +- One `.db` file per trendify output directory, opened by every worker process independently. +- WAL mode gives concurrent readers + one writer without the readers blocking on the writer; + `busy_timeout` replaces v1's hand-rolled `FileLock` for the writer-vs-writer case. +- Schema versioning via `PRAGMA user_version`, checked/applied on every `connect()` call so + opening a fresh `.db` file bootstraps it and opening an existing one verifies compatibility. +""" + +from __future__ import annotations + +import sqlite3 +from pathlib import Path + +__all__ = ["SCHEMA_VERSION", "connect"] + +SCHEMA_VERSION = 1 + +_SCHEMA_DDL = """ +CREATE TABLE IF NOT EXISTS runs ( + id INTEGER PRIMARY KEY, + path TEXT NOT NULL UNIQUE, + generated_at TEXT NOT NULL +); + +CREATE TABLE IF NOT EXISTS products ( + id INTEGER PRIMARY KEY, + run_id INTEGER NOT NULL REFERENCES runs(id) ON DELETE CASCADE, + product_type TEXT NOT NULL, + payload TEXT NOT NULL, + created_at TEXT NOT NULL +); +CREATE INDEX IF NOT EXISTS idx_products_run ON products(run_id); + +CREATE TABLE IF NOT EXISTS product_tags ( + product_id INTEGER NOT NULL REFERENCES products(id) ON DELETE CASCADE, + tag_key TEXT NOT NULL, + product_type TEXT NOT NULL, + PRIMARY KEY (product_id, tag_key) +); +CREATE INDEX IF NOT EXISTS idx_product_tags_lookup ON product_tags(tag_key, product_type); + +CREATE TABLE IF NOT EXISTS table_entries ( + id INTEGER PRIMARY KEY, + product_id INTEGER NOT NULL REFERENCES products(id) ON DELETE CASCADE, + tag_key TEXT NOT NULL, + row_key TEXT NOT NULL, + col_key TEXT NOT NULL, + value_num REAL, + value_text TEXT, + value_bool INTEGER, + unit TEXT +); +CREATE INDEX IF NOT EXISTS idx_table_entries_tag ON table_entries(tag_key); +""" + + +def connect(db_path: Path, *, readonly: bool = False) -> sqlite3.Connection: + """ + Opens a WAL-mode SQLite connection to `db_path`, bootstrapping the schema on first use. + + Args: + db_path (Path): path to the trendify output directory's `.db` file + readonly (bool): open in read-only mode (`mode=ro` URI) — used by render workers that + only ever query, never write, so they can safely run concurrently with an + in-progress writer under WAL. + + Returns: + (sqlite3.Connection): a configured connection, with row access by column name. + + """ + if readonly: + uri = f"file:{db_path}?mode=ro" + conn = sqlite3.connect(uri, uri=True) + else: + db_path.parent.mkdir(parents=True, exist_ok=True) + conn = sqlite3.connect(db_path) + + conn.row_factory = sqlite3.Row + conn.execute("PRAGMA journal_mode=WAL") + conn.execute("PRAGMA synchronous=NORMAL") + conn.execute("PRAGMA busy_timeout=30000") + conn.execute("PRAGMA foreign_keys=ON") + + if not readonly: + _ensure_schema(conn) + + return conn + + +def _ensure_schema(conn: sqlite3.Connection) -> None: + """ + Bootstraps the schema on a fresh database, or verifies the on-disk schema version matches + `SCHEMA_VERSION` on an existing one. There is deliberately no migration logic yet (v2 has + only ever had one schema version) — this is the hook future migrations attach to. + """ + (version,) = conn.execute("PRAGMA user_version").fetchone() + if version == 0: + conn.executescript(_SCHEMA_DDL) + conn.execute(f"PRAGMA user_version={SCHEMA_VERSION}") + conn.commit() + elif version != SCHEMA_VERSION: + raise RuntimeError( + f"Database schema version {version} does not match expected " + f"{SCHEMA_VERSION}, and no migration path exists yet." + ) diff --git a/src/trendify/store/product_store.py b/src/trendify/store/product_store.py new file mode 100644 index 0000000..282a04a --- /dev/null +++ b/src/trendify/store/product_store.py @@ -0,0 +1,300 @@ +""" +ProductStore: the SQLite-backed replacement for v1's DataProductCollection file-glob methods. + +Pydantic objects remain what flows in and out everywhere -- only the storage/query mechanics +change. See rewrite_reference/OVERVIEW.md and the v2 architecture plan for the full design +rationale (why SQLite/WAL, why this schema shape, why no merge phase). +""" + +from __future__ import annotations + +import datetime +import sqlite3 +from collections.abc import Iterable, Iterator +from pathlib import Path + +import polars as pl + +from trendify.base.data_product import DataProduct +from trendify.base.helpers import Tag +from trendify.formats.table import TableEntry +from trendify.store import db +from trendify.store.tags import decode_tag, encode_tag + +__all__ = ["ProductStore"] + + +def _leaf_type_names(object_type: type[DataProduct]) -> list[str]: + """ + Expands a (possibly non-leaf) `DataProduct` type into the list of registered leaf + `product_type` names that are instances of it -- e.g. `PlottableData2D` expands to + `["Point2D", "Trace2D", "AxLine", "HistogramEntry"]`. This lets tag/type filtering happen + as a plain SQL `product_type IN (...)` clause instead of deserializing every tag-matched + row just to run an `isinstance` check in Python. + """ + return [ + name + for name, cls in DataProduct.registry().items() + if issubclass(cls, object_type) + ] + + +def _tag_sort_key(tag: Tag): + as_tuple = tag if isinstance(tag, tuple) else (tag,) + return (len(as_tuple), as_tuple) + + +class ProductStore: + """ + SQLite-backed store for `DataProduct`s, grouped by run and queryable by tag/type. + + Usage: + with ProductStore.open(db_path) as store: + store.write_run(run_path, products) + traces = store.get_products_of_type(Trace2D, tag="my_tag") + """ + + def __init__(self, conn: sqlite3.Connection): + self._conn = conn + + @classmethod + def open(cls, db_path: Path, *, readonly: bool = False) -> ProductStore: + return cls(db.connect(Path(db_path), readonly=readonly)) + + def __enter__(self) -> ProductStore: + return self + + def __exit__(self, *exc_info) -> None: + self.close() + + def close(self) -> None: + self._conn.close() + + def write_run(self, run_path: Path, products: Iterable[DataProduct]) -> int: + """ + Replaces all products for `run_path` in a single transaction. Idempotent: calling this + again for the same `run_path` (e.g. re-running a generator on the same input directory) + deletes and replaces that run's rows rather than accumulating duplicates -- this is what + replaces v1's `ProductIndexMap`/`FileLock` stable-indexing dance, since there's no + per-tag file to keep numbered anymore. + + Args: + run_path (Path): the raw-data run directory these products were generated from + products (Iterable[DataProduct]): products returned by the user's `ProductGenerator` + + Returns: + (int): number of products written + + """ + products = list(products) + run_path_str = str(Path(run_path).resolve()) + now = datetime.datetime.now(datetime.UTC).isoformat() + + conn = self._conn + with conn: # transaction: commits on success, rolls back on exception + row = conn.execute( + "SELECT id FROM runs WHERE path = ?", (run_path_str,) + ).fetchone() + if row is None: + run_id = conn.execute( + "INSERT INTO runs(path, generated_at) VALUES (?, ?)", + (run_path_str, now), + ).lastrowid + else: + run_id = row["id"] + conn.execute( + "UPDATE runs SET generated_at = ? WHERE id = ?", (now, run_id) + ) + + # ON DELETE CASCADE (product_tags, table_entries) requires PRAGMA foreign_keys=ON, + # set in db.connect(). + conn.execute("DELETE FROM products WHERE run_id = ?", (run_id,)) + + for product in products: + product_id = conn.execute( + "INSERT INTO products(run_id, product_type, payload, created_at) " + "VALUES (?, ?, ?, ?)", + (run_id, product.product_type, product.model_dump_json(), now), + ).lastrowid + + tag_keys = [encode_tag(t) for t in product.tags] + conn.executemany( + "INSERT INTO product_tags(product_id, tag_key, product_type) " + "VALUES (?, ?, ?)", + [(product_id, tk, product.product_type) for tk in tag_keys], + ) + + if isinstance(product, TableEntry): + value_num = value_text = value_bool = None + if isinstance(product.value, bool): + value_bool = int(product.value) + elif isinstance(product.value, (int, float)): + value_num = float(product.value) + else: + value_text = product.value + + conn.executemany( + "INSERT INTO table_entries(" + "product_id, tag_key, row_key, col_key, " + "value_num, value_text, value_bool, unit) " + "VALUES (?, ?, ?, ?, ?, ?, ?, ?)", + [ + ( + product_id, + tk, + str(product.row), + str(product.col), + value_num, + value_text, + value_bool, + product.unit, + ) + for tk in tag_keys + ], + ) + + return len(products) + + def get_tags(self, object_type: type[DataProduct] | None = None) -> set[Tag]: + """ + Args: + object_type (type[DataProduct] | None): restrict to tags used by products of this + type (or any registered subclass of it); `None` matches every product type. + + Returns: + (set[Tag]): the set of tags in use + + """ + if object_type is None: + rows = self._conn.execute("SELECT DISTINCT tag_key FROM product_tags") + else: + names = _leaf_type_names(object_type) + if not names: + return set() + placeholders = ",".join("?" * len(names)) + rows = self._conn.execute( + f"SELECT DISTINCT tag_key FROM product_tags " + f"WHERE product_type IN ({placeholders})", + names, + ) + return {decode_tag(r["tag_key"]) for r in rows} + + def tag_tree(self, object_type: type[DataProduct] | None = None) -> list[Tag]: + """ + Returns: + (list[Tag]): tags sorted the way v1's Streamlit sidebar expects (shallow tags + first, then lexicographically) -- direct replacement for v1's + `streamlit.get_tags()`, which discovered this list by globbing for files + literally named `index_map` in the sorted-products directory tree. + + """ + return sorted(self.get_tags(object_type=object_type), key=_tag_sort_key) + + def get_products( + self, + tag: Tag | None = None, + object_type: type[DataProduct] | None = None, + ) -> Iterator[DataProduct]: + """ + Streams matching products, deserialized to their concrete pydantic type. Filtering by + `tag` and/or `object_type` happens in SQL (indexed tag lookup, `product_type IN (...)` + for the type hierarchy) before anything is deserialized, so this only ever parses JSON + for rows that actually match -- unlike v1, which reparsed every JSON in a tag directory + before filtering in Python. + + Args: + tag (Tag | None): tag to filter by; `None` matches every tag + object_type (type[DataProduct] | None): type (or base type) to filter by; + `None` matches every type + + Yields: + (DataProduct): matching products, in insertion order + + """ + select = "SELECT p.product_type, p.payload FROM products p" + joins = [] + where = [] + params: list[object] = [] + + if tag is not None: + joins.append("JOIN product_tags pt ON pt.product_id = p.id") + where.append("pt.tag_key = ?") + params.append(encode_tag(tag)) + + if object_type is not None: + names = _leaf_type_names(object_type) + if not names: + return + where.append(f"p.product_type IN ({','.join('?' * len(names))})") + params.extend(names) + + query = " ".join([select, *joins]) + if where: + query += " WHERE " + " AND ".join(where) + + cursor = self._conn.execute(query, params) + for row in cursor: + yield DataProduct.deserialize(row["product_type"], row["payload"]) + + def get_products_of_type( + self, object_type: type[DataProduct], tag: Tag | None = None + ) -> list[DataProduct]: + """ + Same as `get_products`, but eager (a `list`) -- convenience for callers that don't need + streaming, mirroring v1's `DataProductCollection.get_products_of_type`. + """ + return list(self.get_products(tag=tag, object_type=object_type)) + + def get_table_entries(self, tag: Tag) -> pl.DataFrame: + """ + Fetches `TableEntry` rows for `tag` directly from the `table_entries` table -- skips + deserializing full `DataProduct` payloads entirely, since row/col/value/unit are already + real columns. This is the direct replacement for `TableBuilder.load_table`'s "reparse + every JSON in every input dir" step. + + Note: `value` is resolved to a single Python value per row (whichever of + `value_num`/`value_text`/`value_bool` is populated) before handing rows to Polars, + rather than asking Polars/SQLite to reconcile a mixed-type SQL column -- Polars expects + one dtype per column, so resolving the union type in Python first is the well-defined + choice. + + Args: + tag (Tag): tag to filter by + + Returns: + (pl.DataFrame): columns `row`, `col`, `value`, `unit` -- same shape as v1's + `TableEntry.get_entry_dict()`. + + """ + rows = self._conn.execute( + "SELECT row_key, col_key, value_num, value_text, value_bool, unit " + "FROM table_entries WHERE tag_key = ?", + (encode_tag(tag),), + ).fetchall() + + records = [] + for r in rows: + if r["value_bool"] is not None: + value = bool(r["value_bool"]) + elif r["value_num"] is not None: + value = r["value_num"] + else: + value = r["value_text"] + records.append( + { + "row": r["row_key"], + "col": r["col_key"], + "value": value, + "unit": r["unit"], + } + ) + + return pl.DataFrame( + records, + schema={ + "row": pl.Utf8, + "col": pl.Utf8, + "value": pl.Object, + "unit": pl.Utf8, + }, + ) diff --git a/src/trendify/store/tags.py b/src/trendify/store/tags.py new file mode 100644 index 0000000..911fb34 --- /dev/null +++ b/src/trendify/store/tags.py @@ -0,0 +1,51 @@ +""" +Canonical encoding between the pydantic-facing `Tag` type and the `tag_key` string +stored/indexed in the `product_tags` and `table_entries` SQL tables. + +This is the direct successor to v1's tuple-tag -> nested-folder-path convention: instead of +turning a tag into a filesystem path, we turn it into a single indexed string key. The same +`encode_tag` function must be used at write time and query time so lookups are exact-match +index seeks. +""" + +from __future__ import annotations + +import json + +from trendify.base.helpers import Tag + +__all__ = ["decode_tag", "encode_tag"] + + +def encode_tag(tag: Tag) -> str: + """ + Canonicalizes a `Tag` (`str`, `int`, or `tuple[str | int, ...]`) into the `tag_key` string + used for indexed storage/lookup. Scalars and tuples produce distinguishable encodings + (`json.dumps` renders a tuple as a JSON array), so `"foo"` and `("foo",)` never collide. + + Args: + tag (Tag): tag to encode + + Returns: + (str): canonical, indexable string key + + """ + return json.dumps(tag, separators=(",", ":")) + + +def decode_tag(tag_key: str) -> Tag: + """ + Inverse of `encode_tag`. JSON arrays decode back to `tuple`s (the `Tag` type never uses + plain `list`s) so round-tripping a tag through the store reproduces the original shape. + + Args: + tag_key (str): canonical string key, as produced by `encode_tag` + + Returns: + (Tag): decoded tag + + """ + decoded = json.loads(tag_key) + if isinstance(decoded, list): + return tuple(decoded) + return decoded diff --git a/src/trendify/styling/__init__.py b/src/trendify/styling/__init__.py new file mode 100644 index 0000000..bdf844b --- /dev/null +++ b/src/trendify/styling/__init__.py @@ -0,0 +1,28 @@ +from trendify.styling import grid +from trendify.styling import legend +from trendify.styling import marker + +from trendify.styling.grid import ( + Grid, + GridAxis, + GridTheme, +) +from trendify.styling.legend import ( + Legend, + LegendLocation, +) +from trendify.styling.marker import ( + Marker, +) + +__all__ = [ + "Grid", + "GridAxis", + "GridTheme", + "Legend", + "LegendLocation", + "Marker", + "grid", + "legend", + "marker", +] diff --git a/src/trendify/styling/grid.py b/src/trendify/styling/grid.py new file mode 100644 index 0000000..7926a54 --- /dev/null +++ b/src/trendify/styling/grid.py @@ -0,0 +1,149 @@ +from __future__ import annotations + +from enum import Enum, auto +from collections.abc import Iterable +import logging + +from pydantic import ConfigDict + +from trendify.base.helpers import HashableBase +from trendify.base.pen import Pen + + +logger = logging.getLogger(__name__) + +__all__ = ["Grid", "GridAxis", "GridTheme"] + + +class GridTheme(Enum): + MATLAB = auto() + LIGHT = auto() + DARK = auto() + + +class GridAxis(HashableBase): + """ + Controls styling and visibility for one type of grid (major or minor). + + Attributes: + show (bool): Whether to display this grid axis. + pen (Pen): Style and label information for drawing to matplotlib axes. + + """ + + show: bool = False + pen: Pen = Pen( + color="gray", + alpha=1.0, + size=0.75, + linestyle="-", + label=None, + ) + + model_config = ConfigDict(extra="forbid") + + +class Grid(HashableBase): + """ + Container for major and minor grid line configuration. + + Attributes: + major (GridAxis): Configuration for major grid lines. + minor (GridAxis): Configuration for minor grid lines. + enable_minor_ticks (bool): Whether to enable minor ticks on the axes. + + """ + + major: GridAxis = GridAxis(show=False) + minor: GridAxis = GridAxis(show=False) + enable_minor_ticks: bool = False + zorder: float = -1 + + model_config = ConfigDict(extra="forbid") + + @classmethod + def from_theme(cls, name: GridTheme) -> Grid: + """ + Predefined themes for common grid styles. + """ + themes = { + GridTheme.MATLAB: cls( + major=GridAxis( + show=True, + pen=Pen( + color="#b0b0b0", + linestyle="-", + size=0.8, + alpha=0.35, + label=None, + ), + ), + minor=GridAxis( + show=True, + pen=Pen( + color="#b0b0b0", + linestyle=(0, (3, 1, 1, 1)), + size=0.6, + alpha=0.25, + label=None, + ), + ), + enable_minor_ticks=True, + ), + GridTheme.LIGHT: cls( + major=GridAxis( + show=True, + pen=Pen( + color="#E0E0E0", + linestyle="--", + size=0.7, + alpha=0.9, + label=None, + ), + ), + minor=GridAxis(show=False), + enable_minor_ticks=False, + ), + GridTheme.DARK: cls( + major=GridAxis( + show=True, + pen=Pen( + color="#444444", + linestyle="--", + size=0.7, + alpha=0.5, + label=None, + ), + ), + minor=GridAxis(show=False), + enable_minor_ticks=False, + ), + } + + try: + return themes[name] + except KeyError: + raise ValueError(f"Unknown grid theme: {name!r}") + + @classmethod + def union_from_iterable(cls, grids: Iterable[Grid]) -> Grid: + """ + Gets the most inclusive grid format from a list of Grid objects. + Requires that all GridAxis fields (major/minor) are consistent across the objects. + """ + grids = list(set(grids) - {None}) + if not grids: + return cls() + + # Enforce consistent GridAxis settings + [major] = set(g.major for g in grids) + [minor] = set(g.minor for g in grids) + [enable_minor_ticks] = set(g.enable_minor_ticks for g in grids) + [zorder] = set(g.zorder for g in grids) + + return cls( + major=major, + minor=minor, + enable_minor_ticks=enable_minor_ticks, + zorder=zorder, + ) diff --git a/src/trendify/styling/legend.py b/src/trendify/styling/legend.py new file mode 100644 index 0000000..dfd325f --- /dev/null +++ b/src/trendify/styling/legend.py @@ -0,0 +1,179 @@ +from __future__ import annotations + +from enum import StrEnum + +from trendify.base.helpers import HashableBase + +__all__ = ["Legend", "LegendLocation"] + + +class LegendLocation(StrEnum): + BEST = "best" + UPPER_RIGHT = "upper right" + UPPER_LEFT = "upper left" + LOWER_LEFT = "lower left" + LOWER_RIGHT = "lower right" + RIGHT = "right" + CENTER_LEFT = "center left" + CENTER_RIGHT = "center right" + LOWER_CENTER = "lower center" + UPPER_CENTER = "upper center" + CENTER = "center" + + +class Legend(HashableBase): + """ + Configuration container for Matplotlib legend styling and placement. + + The `Legend` class controls the appearance and position of the plot legend. + Placement is governed by a combination of the `loc` and `bbox_to_anchor` + parameters, mirroring Matplotlib's `Axes.legend()`. + + Attributes: + visible (bool): Whether the legend should be displayed. Defaults to True. + title (str | None): Title displayed above the legend entries. + framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent. + loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options. + ncol (int): Number of columns to arrange legend entries into. + fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame. + edgecolor (str): Color of the legend frame border. Default is "black". + bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`. + + """ + + visible: bool = True + title: str | None = None + framealpha: float = 1 + loc: LegendLocation = LegendLocation.BEST + ncol: int = 1 + fancybox: bool = True + edgecolor: str = "black" + zorder: int = 10 + bbox_to_anchor: tuple[float, float] | None = None + + def to_kwargs(self): + return { + "title": self.title, + "framealpha": self.framealpha, + "loc": self.loc, + "ncol": self.ncol, + "fancybox": self.fancybox, + } + + @property + def plotly_location(self) -> dict: + """ + Convert matplotlib legend location to Plotly legend position parameters. + + Returns: + dict: Dictionary containing Plotly legend position parameters (x, y, xanchor, yanchor) + + """ + # Default position mappings for standard locations + location_map = { + LegendLocation.BEST: { + "x": 1.02, + "y": 1, + "xanchor": "left", + "yanchor": "top", + }, + LegendLocation.UPPER_RIGHT: { + "x": 0.98, + "y": 0.98, + "xanchor": "right", + "yanchor": "top", + }, + LegendLocation.UPPER_LEFT: { + "x": 0.02, + "y": 0.98, + "xanchor": "left", + "yanchor": "top", + }, + LegendLocation.LOWER_LEFT: { + "x": 0.02, + "y": 0.02, + "xanchor": "left", + "yanchor": "bottom", + }, + LegendLocation.LOWER_RIGHT: { + "x": 0.98, + "y": 0.02, + "xanchor": "right", + "yanchor": "bottom", + }, + LegendLocation.RIGHT: { + "x": 1.02, + "y": 0.5, + "xanchor": "left", + "yanchor": "middle", + }, + LegendLocation.CENTER_LEFT: { + "x": -0.02, + "y": 0.5, + "xanchor": "right", + "yanchor": "middle", + }, + LegendLocation.CENTER_RIGHT: { + "x": 1.02, + "y": 0.5, + "xanchor": "left", + "yanchor": "middle", + }, + LegendLocation.LOWER_CENTER: { + "x": 0.5, + "y": 0.02, + "xanchor": "center", + "yanchor": "bottom", + }, + LegendLocation.UPPER_CENTER: { + "x": 0.5, + "y": 0.98, + "xanchor": "center", + "yanchor": "top", + }, + LegendLocation.CENTER: { + "x": 0.5, + "y": 0.5, + "xanchor": "center", + "yanchor": "middle", + }, + } + + # If bbox_to_anchor is provided, use it to override the position + if self.bbox_to_anchor is not None: + x, y = self.bbox_to_anchor + # Determine anchors based on location + if self.loc in [ + LegendLocation.CENTER_LEFT, + LegendLocation.UPPER_LEFT, + LegendLocation.LOWER_LEFT, + ]: + xanchor = "right" + elif self.loc in [ + LegendLocation.CENTER_RIGHT, + LegendLocation.UPPER_RIGHT, + LegendLocation.LOWER_RIGHT, + ]: + xanchor = "left" + else: + xanchor = "center" + + if self.loc in [ + LegendLocation.UPPER_RIGHT, + LegendLocation.UPPER_LEFT, + LegendLocation.UPPER_CENTER, + ]: + yanchor = "top" + elif self.loc in [ + LegendLocation.LOWER_RIGHT, + LegendLocation.LOWER_LEFT, + LegendLocation.LOWER_CENTER, + ]: + yanchor = "bottom" + else: + yanchor = "middle" + + return {"x": x, "y": y, "xanchor": xanchor, "yanchor": yanchor} + + # Use predefined mapping if no bbox_to_anchor + return location_map[self.loc] diff --git a/src/trendify/styling/marker.py b/src/trendify/styling/marker.py new file mode 100644 index 0000000..cadbc18 --- /dev/null +++ b/src/trendify/styling/marker.py @@ -0,0 +1,163 @@ +from __future__ import annotations + +import logging + +from matplotlib.colors import to_rgba +from pydantic import ConfigDict + +from trendify.base.helpers import HashableBase +from trendify.base.pen import Pen + +__all__ = ["Marker"] + +logger = logging.getLogger(__name__) + + +class Marker(HashableBase): + """ + Defines marker for scattering to matplotlib + + Attributes: + color (str): Color of line + size (float): Line width + alpha (float): Opacity from 0 to 1 (inclusive) + zorder (float): Prioritization + label (Union[str, None]): Legend label + symbol (str): Matplotlib symbol string + + """ + + color: str = "k" + size: float = 5 + alpha: float = 1 + zorder: float = 0 + label: str | None = None + symbol: str = "." + + @classmethod + def from_pen( + cls, + pen: Pen, + symbol: str = ".", + ): + """ + Converts Pen to marker with the option to specify a symbol. + + Note (v1 bugfix): v1 did `pen.model_dump().pop("linestyle")`, which pops and + returns a single value (discarding the rest of the dict) and then tries to + splat that scalar as `**kwargs` -- guaranteed `TypeError` on any real call. + The fix is to dump the dict, drop the one field (`linestyle`) that `Pen` has + and `Marker` doesn't, and splat what's left (color/size/alpha/zorder/label, + which line up 1:1 with `Marker`'s fields). + """ + data = pen.model_dump() + data.pop("linestyle", None) + return cls(symbol=symbol, **data) + + model_config = ConfigDict(extra="forbid") + + def as_scatter_plot_kwargs(self): + """ + Returns: + (dict): dictionary of `kwargs` for [matplotlib scatter][matplotlib.axes.Axes.scatter] + + """ + return { + "marker": self.symbol, + "c": self.color, + "s": self.size, + "alpha": self.alpha, + "zorder": self.zorder, + "label": self.label, + } + + @property + def plotly_symbol(self) -> str: + """Convert matplotlib marker symbol to plotly symbol""" + symbol_map = { + ".": "circle", + "o": "circle", + "v": "triangle-down", + "^": "triangle-up", + "<": "triangle-left", + ">": "triangle-right", + "s": "square", + "p": "pentagon", + "*": "star", + "h": "hexagon", + "+": "cross", + "x": "x", + "D": "diamond", + } + return symbol_map.get(self.symbol, "circle") + + @property + def rgba(self) -> str: + """ + Convert the pen's color to rgba string format. + + Returns: + str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 + + """ + # Handle different color input formats + if isinstance(self.color, tuple): + if len(self.color) == 3: # RGB tuple + r, g, b = self.color + a = self.alpha + else: # RGBA tuple + r, g, b, a = self.color + # Convert 0-1 range to 0-255 for RGB + r, g, b = int(r * 255), int(g * 255), int(b * 255) + else: # String color (name or hex) + # Use matplotlib's color converter + rgba_vals = to_rgba(self.color, self.alpha) + # Convert 0-1 range to 0-255 for RGB + r, g, b = [int(x * 255) for x in rgba_vals[:3]] + a = rgba_vals[3] + + return f"rgba({r}, {g}, {b}, {a})" + + def get_contrast_color(self, background_luminance: float = 1.0) -> str: + """ + Returns 'white' or 'black' to provide the best contrast against the pen's color, + taking into account the alpha (transparency) value of the line. + + Args: + background_luminance (float): The luminance of the background (default is 1.0 for white). + + Returns: + str: 'white' or 'black' + + """ + # Convert the pen's color to RGB (0-255 range) and get alpha + if isinstance(self.color, tuple): + if len(self.color) == 3: # RGB tuple + r, g, b = self.color + a = self.alpha + else: # RGBA tuple + r, g, b, a = self.color + r, g, b = int(r * 255), int(g * 255), int(b * 255) + else: # String color (name or hex) + rgba_vals = to_rgba(self.color, self.alpha) + r, g, b = [int(x * 255) for x in rgba_vals[:3]] + a = rgba_vals[3] + + # Calculate relative luminance of the pen's color + def luminance(channel): + channel /= 255.0 + return ( + channel / 12.92 + if channel <= 0.03928 + else ((channel + 0.055) / 1.055) ** 2.4 + ) + + color_luminance = ( + 0.2126 * luminance(r) + 0.7152 * luminance(g) + 0.0722 * luminance(b) + ) + + # Blend the color luminance with the background luminance based on alpha + blended_luminance = (1 - a) * background_luminance + a * color_luminance + + # Return white for dark blended colors, black for light blended colors + return "white" if blended_luminance < 0.5 else "black" diff --git a/src/trendify_old/__init__.py b/src/trendify_old/__init__.py new file mode 100644 index 0000000..3ab8434 --- /dev/null +++ b/src/trendify_old/__init__.py @@ -0,0 +1,6 @@ +""" +Provides top-level imports +""" + +from trendify.api import * +from trendify.server import * diff --git a/src/trendify/api/__init__.py b/src/trendify_old/api/__init__.py similarity index 100% rename from src/trendify/api/__init__.py rename to src/trendify_old/api/__init__.py diff --git a/src/trendify/api/api.py b/src/trendify_old/api/api.py similarity index 100% rename from src/trendify/api/api.py rename to src/trendify_old/api/api.py diff --git a/src/trendify/api/base/__init__.py b/src/trendify_old/api/base/__init__.py similarity index 100% rename from src/trendify/api/base/__init__.py rename to src/trendify_old/api/base/__init__.py diff --git a/src/trendify/api/base/data_product.py b/src/trendify_old/api/base/data_product.py similarity index 98% rename from src/trendify/api/base/data_product.py rename to src/trendify_old/api/base/data_product.py index 080aa8b..4381082 100644 --- a/src/trendify/api/base/data_product.py +++ b/src/trendify_old/api/base/data_product.py @@ -21,7 +21,7 @@ __all__ = ["DataProduct", "ProductGenerator", "ProductList"] -_data_product_subclass_registry: dict[str, DataProduct] = {} +_data_product_subclass_registry: dict[str, type[DataProduct]] = {} class DataProduct(BaseModel): diff --git a/src/trendify/api/base/helpers.py b/src/trendify_old/api/base/helpers.py similarity index 100% rename from src/trendify/api/base/helpers.py rename to src/trendify_old/api/base/helpers.py diff --git a/src/trendify/api/base/pen.py b/src/trendify_old/api/base/pen.py similarity index 100% rename from src/trendify/api/base/pen.py rename to src/trendify_old/api/base/pen.py diff --git a/src/trendify/api/formats/__init__.py b/src/trendify_old/api/formats/__init__.py similarity index 100% rename from src/trendify/api/formats/__init__.py rename to src/trendify_old/api/formats/__init__.py diff --git a/src/trendify/api/formats/format2d.py b/src/trendify_old/api/formats/format2d.py similarity index 100% rename from src/trendify/api/formats/format2d.py rename to src/trendify_old/api/formats/format2d.py diff --git a/src/trendify/api/formats/table.py b/src/trendify_old/api/formats/table.py similarity index 100% rename from src/trendify/api/formats/table.py rename to src/trendify_old/api/formats/table.py diff --git a/src/trendify/api/generator/__init__.py b/src/trendify_old/api/generator/__init__.py similarity index 100% rename from src/trendify/api/generator/__init__.py rename to src/trendify_old/api/generator/__init__.py diff --git a/src/trendify/api/generator/data_product_collection.py b/src/trendify_old/api/generator/data_product_collection.py similarity index 93% rename from src/trendify/api/generator/data_product_collection.py rename to src/trendify_old/api/generator/data_product_collection.py index dce647f..eb2145f 100644 --- a/src/trendify/api/generator/data_product_collection.py +++ b/src/trendify_old/api/generator/data_product_collection.py @@ -4,7 +4,7 @@ from itertools import chain from pathlib import Path from typing import TYPE_CHECKING, Any -from collections.abc import Iterable +from collections.abc import Iterable, Iterator import logging @@ -74,7 +74,7 @@ class ProductIndexMap(BaseModel): entries: dict[int, ProductEntryMetadata] = Field(default_factory=dict) @property - def inverse(self) -> dict[Path, int]: + def inverse(self) -> dict[ProductEntryMetadata, int]: return {v: k for k, v in self.entries.items()} @classmethod @@ -83,7 +83,7 @@ def get_index( cls, save_dir: Path, metadata: ProductEntryMetadata, - ) -> Self: + ) -> int: if not save_dir.is_dir(): raise ValueError(f"{save_dir} is not a directory") lock_file = save_dir.joinpath("reserving_index.lock") @@ -120,7 +120,7 @@ def _should_be_flattened(obj: Any): return isinstance(obj, Iterable) and not isinstance(obj, (str, bytes, DataProduct)) -def flatten(obj: Iterable): +def flatten(obj: Iterable[Any]) -> Iterator[Any]: """ Recursively flattens iterable up to a point (leaves `str`, `bytes`, and `DataProduct` unflattened) @@ -155,7 +155,7 @@ def atleast_1d(obj: Any) -> Iterable: return obj -def _squeeze(obj: Iterable | Any): +def _squeeze(obj: Any) -> Any: """ Returns a scalar if object is iterable of length 1 else returns object. @@ -184,14 +184,14 @@ class DataProductCollection(BaseModel): """ derived_from: Path | None = None - elements: ProductList | None = None + elements: ProductList = Field(default_factory=list) def __init__(self, **kwargs: Any): DataProduct.deserialize_child_classes(key="elements", **kwargs) super().__init__(**kwargs) @classmethod - def from_iterable(cls, *products: tuple[ProductList, ...]): + def from_iterable(cls, *products: ProductList): """ Returns a new instance containing all of the products provided in the `*products` argument. @@ -302,7 +302,7 @@ def drop_products( self, tag: Tag | None = None, object_type: type[R] | None = None, - ) -> Self[R]: + ) -> Self: """ Removes products matching `tag` and/or `object_type` from collection elements. @@ -319,19 +319,18 @@ def drop_products( case (True, True): return type(self)(elements=self.elements) case (True, False): - # assert self.elements is not None + assert object_type is not None return type(self)( elements=[ e for e in self.elements if not isinstance(e, object_type) ] ) case (False, True): - # assert self.elements is not None return type(self)( elements=[e for e in self.elements if tag not in e.tags] ) case (False, False): - # assert self.elements is not None + assert object_type is not None return type(self)( elements=[ e @@ -344,7 +343,7 @@ def drop_products( def get_products( self, tag: Tag | None = None, object_type: type[R] | None = None - ) -> Self[R]: + ) -> Self: """ Returns a new collection containing products matching `tag` and/or `object_type`. Both `tag` and `object_type` default to `None` which matches all products. @@ -362,15 +361,14 @@ def get_products( case (True, True): return type(self)(elements=self.elements) case (True, False): - # assert self.elements is not None + assert object_type is not None return type(self)( elements=[e for e in self.elements if isinstance(e, object_type)] ) case (False, True): - # assert self.elements is not None return type(self)(elements=[e for e in self.elements if tag in e.tags]) case (False, False): - # assert self.elements is not None + assert object_type is not None return type(self)( elements=[ e @@ -381,6 +379,26 @@ def get_products( case _: raise ValueError("Something is wrong with match statement") + def get_products_of_type( + self, object_type: type[R], tag: Tag | None = None + ) -> list[R]: + """ + Returns the elements matching `object_type` (and `tag`, if given) as a list typed to `object_type`. + + Args: + object_type (Type[R]): Type of data product to keep. + tag (Tag | None): Tag of data products to be kept. `None` matches all products. + + Returns: + (list[R]): List of matching elements. + + """ + if tag is None: + return [e for e in self.elements if isinstance(e, object_type)] + return [ + e for e in self.elements if tag in e.tags and isinstance(e, object_type) + ] + @classmethod def union(cls, *collections: DataProductCollection): """ @@ -402,7 +420,7 @@ def collect_from_all_jsons( cls, *dirs: Path, recursive: bool = False, - data_products_filename: str | None = "*.json", + data_products_filename: str = "*.json", ): """ Loads all products from JSONs in the given list of directories. @@ -546,10 +564,10 @@ def process_collection( format_2ds: list[Format2D] = [] if not no_tables: - table_entries: list[TableEntry] = collection.get_products( + table_entries = collection.get_products_of_type( tag=tag, object_type=TableEntry, - ).elements + ) if table_entries: from trendify.api.generator.table_builder import TableBuilder @@ -563,18 +581,18 @@ def process_collection( logger.info(f"Finished tables for {tag = }") if not no_xy_plots: - traces: list[Trace2D] = collection.get_products( + traces = collection.get_products_of_type( tag=tag, object_type=Trace2D, - ).elements - points: list[Point2D] = collection.get_products( + ) + points = collection.get_products_of_type( tag=tag, object_type=Point2D, - ).elements - axlines: list[AxLine] = collection.get_products( + ) + axlines = collection.get_products_of_type( tag=tag, object_type=AxLine, - ).elements + ) if points or traces or axlines: # Update condition from trendify.api.generator.xy_data_plotter import XYDataPlotter @@ -608,10 +626,10 @@ def process_collection( logger.info(f"Finished xy plot for {tag = }") if not no_histograms: - histogram_entries: list[HistogramEntry] = collection.get_products( + histogram_entries = collection.get_products_of_type( tag=tag, object_type=HistogramEntry, - ).elements + ) if histogram_entries: logger.info(f"Making histogram for {tag = }") @@ -667,7 +685,7 @@ def process_tables_for_tag( logger.info(f"Processing tables for {tag = }") table_builder = TableBuilder(in_dirs=in_dirs, out_dir=out_dir) - table_builder.build_tables(tag=tag, data_products_fname=data_products_fname) + table_builder.load_table(tag=tag, data_products_fname=data_products_fname) return table_builder @classmethod @@ -682,24 +700,12 @@ def process_tag_for_streamlit( plotly_figure: PlotlyFigure | None = None format_2ds: list[Format2D] = [] - traces = collection.get_products(tag=tag, object_type=Trace2D).elements - points = collection.get_products(tag=tag, object_type=Point2D).elements - axlines = collection.get_products(tag=tag, object_type=AxLine).elements - hist_entries = collection.get_products( + traces = collection.get_products_of_type(tag=tag, object_type=Trace2D) + points = collection.get_products_of_type(tag=tag, object_type=Point2D) + axlines = collection.get_products_of_type(tag=tag, object_type=AxLine) + hist_entries = collection.get_products_of_type( tag=tag, object_type=HistogramEntry - ).elements - - traces: list[Trace2D] - points: list[Point2D] - axlines: list[AxLine] - hist_entries: list[HistogramEntry] - - traces = [e for e in collection.elements if isinstance(e, Trace2D)] - points = [e for e in collection.elements if isinstance(e, Point2D)] - axlines = [e for e in collection.elements if isinstance(e, AxLine)] - hist_entries = [ - e for e in collection.elements if isinstance(e, HistogramEntry) - ] + ) if points or traces or axlines or hist_entries: from trendify.api.generator.xy_data_plotter import XYDataPlotter diff --git a/src/trendify/api/generator/data_product_generator.py b/src/trendify_old/api/generator/data_product_generator.py similarity index 100% rename from src/trendify/api/generator/data_product_generator.py rename to src/trendify_old/api/generator/data_product_generator.py diff --git a/src/trendify/api/generator/histogrammer.py b/src/trendify_old/api/generator/histogrammer.py similarity index 100% rename from src/trendify/api/generator/histogrammer.py rename to src/trendify_old/api/generator/histogrammer.py diff --git a/src/trendify/api/generator/table_builder.py b/src/trendify_old/api/generator/table_builder.py similarity index 98% rename from src/trendify/api/generator/table_builder.py rename to src/trendify_old/api/generator/table_builder.py index 8dcd79d..eb78ae8 100644 --- a/src/trendify/api/generator/table_builder.py +++ b/src/trendify_old/api/generator/table_builder.py @@ -60,7 +60,7 @@ def load_table( subdir.joinpath(data_products_fname).read_text() ) table_entries.extend( - collection.get_products(tag=tag, object_type=TableEntry).elements + collection.get_products_of_type(tag=tag, object_type=TableEntry) ) self.process_table_entries( diff --git a/src/trendify/api/generator/xy_data_plotter.py b/src/trendify_old/api/generator/xy_data_plotter.py similarity index 93% rename from src/trendify/api/generator/xy_data_plotter.py rename to src/trendify_old/api/generator/xy_data_plotter.py index 78a993f..77600a9 100644 --- a/src/trendify/api/generator/xy_data_plotter.py +++ b/src/trendify_old/api/generator/xy_data_plotter.py @@ -65,12 +65,8 @@ def plot( collection = DataProductCollection.model_validate_json( subdir.joinpath(data_products_fname).read_text() ) - traces: list[Trace2D] = collection.get_products( - tag=tag, object_type=Trace2D - ).elements - points: list[Point2D] = collection.get_products( - tag=tag, object_type=Point2D - ).elements + traces = collection.get_products_of_type(tag=tag, object_type=Trace2D) + points = collection.get_products_of_type(tag=tag, object_type=Point2D) if points or traces: if points: @@ -91,9 +87,8 @@ def plot( formats = list( set( [p.format2d for p in points if p.format2d] - + [t.format2d for t in traces] + + [t.format2d for t in traces if t.format2d] ) - - {None} ) format2d = Format2D.union_from_iterable(formats) saf.apply_format(format2d) @@ -138,7 +133,10 @@ def handle_points_and_traces( x = [p.x for p in matching_points] y = [p.y for p in matching_points] if x and y: - saf.ax.scatter(x, y, **marker.as_scatter_plot_kwargs()) + if marker is not None: + saf.ax.scatter(x, y, **marker.as_scatter_plot_kwargs()) + else: + saf.ax.scatter(x, y) for trace in traces: trace.plot_to_ax(saf.ax) diff --git a/src/trendify/api/plotting/__init__.py b/src/trendify_old/api/plotting/__init__.py similarity index 100% rename from src/trendify/api/plotting/__init__.py rename to src/trendify_old/api/plotting/__init__.py diff --git a/src/trendify/api/plotting/axline.py b/src/trendify_old/api/plotting/axline.py similarity index 100% rename from src/trendify/api/plotting/axline.py rename to src/trendify_old/api/plotting/axline.py diff --git a/src/trendify/api/plotting/histogram.py b/src/trendify_old/api/plotting/histogram.py similarity index 98% rename from src/trendify/api/plotting/histogram.py rename to src/trendify_old/api/plotting/histogram.py index 45ecd3f..46a779c 100644 --- a/src/trendify/api/plotting/histogram.py +++ b/src/trendify_old/api/plotting/histogram.py @@ -1,6 +1,7 @@ from __future__ import annotations import logging +from typing import cast from matplotlib.colors import to_rgba import plotly.graph_objects as go @@ -192,7 +193,8 @@ def add_to_plotly(self, plotly_figure: PlotlyFigure): ) # Check if a trace with the same legend group already exists - for trace in plotly_figure.fig.data: + traces = cast("tuple[go.Histogram, ...]", plotly_figure.fig.data) + for trace in traces: if trace.legendgroup == legend_key: # Append the value to the existing trace's x data trace.x = list(trace.x) + [self.value] diff --git a/src/trendify/api/plotting/plotting.py b/src/trendify_old/api/plotting/plotting.py similarity index 100% rename from src/trendify/api/plotting/plotting.py rename to src/trendify_old/api/plotting/plotting.py diff --git a/src/trendify/api/plotting/point.py b/src/trendify_old/api/plotting/point.py similarity index 100% rename from src/trendify/api/plotting/point.py rename to src/trendify_old/api/plotting/point.py diff --git a/src/trendify/api/plotting/trace.py b/src/trendify_old/api/plotting/trace.py similarity index 100% rename from src/trendify/api/plotting/trace.py rename to src/trendify_old/api/plotting/trace.py diff --git a/src/trendify/api/styling/__init__.py b/src/trendify_old/api/styling/__init__.py similarity index 100% rename from src/trendify/api/styling/__init__.py rename to src/trendify_old/api/styling/__init__.py diff --git a/src/trendify/api/styling/grid.py b/src/trendify_old/api/styling/grid.py similarity index 100% rename from src/trendify/api/styling/grid.py rename to src/trendify_old/api/styling/grid.py diff --git a/src/trendify/api/styling/legend.py b/src/trendify_old/api/styling/legend.py similarity index 100% rename from src/trendify/api/styling/legend.py rename to src/trendify_old/api/styling/legend.py diff --git a/src/trendify/api/styling/marker.py b/src/trendify_old/api/styling/marker.py similarity index 100% rename from src/trendify/api/styling/marker.py rename to src/trendify_old/api/styling/marker.py diff --git a/src/trendify/assets/logo.svg b/src/trendify_old/assets/logo.svg similarity index 100% rename from src/trendify/assets/logo.svg rename to src/trendify_old/assets/logo.svg diff --git a/src/trendify/assets/logo_white_bg.svg b/src/trendify_old/assets/logo_white_bg.svg similarity index 100% rename from src/trendify/assets/logo_white_bg.svg rename to src/trendify_old/assets/logo_white_bg.svg diff --git a/src/trendify/cli.py b/src/trendify_old/cli.py similarity index 100% rename from src/trendify/cli.py rename to src/trendify_old/cli.py diff --git a/src/trendify/examples.py b/src/trendify_old/examples.py similarity index 100% rename from src/trendify/examples.py rename to src/trendify_old/examples.py diff --git a/src/trendify/gallery.py b/src/trendify_old/gallery.py similarity index 100% rename from src/trendify/gallery.py rename to src/trendify_old/gallery.py diff --git a/src/trendify/local_server.py b/src/trendify_old/local_server.py similarity index 100% rename from src/trendify/local_server.py rename to src/trendify_old/local_server.py diff --git a/src/trendify/plotly_dashboard.py b/src/trendify_old/plotly_dashboard.py similarity index 96% rename from src/trendify/plotly_dashboard.py rename to src/trendify_old/plotly_dashboard.py index 9908eff..c30f89a 100644 --- a/src/trendify/plotly_dashboard.py +++ b/src/trendify_old/plotly_dashboard.py @@ -2,6 +2,8 @@ Module for generating interactive Plotly dashboards from data products. """ +from typing import Any, cast + import dash from dash import dcc, html, dash_table from dash.dependencies import Input, Output, State @@ -11,20 +13,16 @@ from collections import defaultdict # Import from trendify -# from trendify.api.API import ( -# DataProductCollection, -# Tag, -# Tags, -# Point2D, -# Trace2D, -# TableEntry, -# HistogramEntry, -# AxLine, -# LineOrientation, -# Format2D, -# flatten, -# atleast_1d, -# ) +from trendify import ( + DataProductCollection, + Point2D, + Trace2D, + TableEntry, + HistogramEntry, + AxLine, + LineOrientation, + Format2D, +) # Constants COLORS = [ @@ -292,15 +290,21 @@ def _create_table_section(self, tag_str: str) -> html.Div: ( dash_table.DataTable( id=f"pivot-table-{tag_str}", - columns=[{"name": "row", "id": "row"}] - + [ - {"name": str(col), "id": str(col)} - for col in ( - pivot_df.columns - if pivot_df is not None - else [] - ) - ], + columns=cast( + "list[dash_table.DataTable.Columns]", + [{"name": "row", "id": "row"}] + + [ + { + "name": str(col), + "id": str(col), + } + for col in ( + pivot_df.columns + if pivot_df is not None + else [] + ) + ], + ), data=( pivot_df.reset_index().to_dict( "records" @@ -554,7 +558,7 @@ def _create_xy_figure( ) # Update layout with format information - layout_args = dict( + layout_args: dict[str, Any] = dict( title=( format2d.title_ax if format2d and format2d.title_ax @@ -700,7 +704,7 @@ def _create_histogram_figure( break # Update layout - layout_args = dict( + layout_args: dict[str, Any] = dict( title=( format2d.title_ax if format2d and format2d.title_ax diff --git a/src/trendify/production_server.py b/src/trendify_old/production_server.py similarity index 100% rename from src/trendify/production_server.py rename to src/trendify_old/production_server.py diff --git a/src/trendify/server.py b/src/trendify_old/server.py similarity index 100% rename from src/trendify/server.py rename to src/trendify_old/server.py diff --git a/src/trendify/streamlit.py b/src/trendify_old/streamlit.py similarity index 100% rename from src/trendify/streamlit.py rename to src/trendify_old/streamlit.py diff --git a/tests/test.sh b/tests/test.sh deleted file mode 100644 index 83cc62f..0000000 --- a/tests/test.sh +++ /dev/null @@ -1,25 +0,0 @@ -#! /bin/bash - -export workdir=./sample_data -export input=$workdir/models -export output=$workdir/trendify -export generator=trendify.examples:example_data_product_generator -export server_host=localhost -export server_port=8001 -export n_procs=1 - -rm -rf $output/products - -trendify_make_sample_data -wd $workdir -n 10 - -find $input -name "data_product.json" -type f -delete - -# trendify products-make -n $n_procs -g $generator -i $input -# trendify products-sort -n $n_procs -i $input -o $output -# # trendify assets-make-static $output - -# trendify assets-make-interactive grafana $output --host $server_host --port $server_port -# trendify products-serve $output --host $server_host --port $server_port - -trendify make static -i $input/**/results.csv -g $generator -n $n_procs -o $output -f data_product.json -trendify make dashboard -o $output \ No newline at end of file diff --git a/tests/test2.sh b/tests/test2.sh deleted file mode 100755 index f54a50f..0000000 --- a/tests/test2.sh +++ /dev/null @@ -1,16 +0,0 @@ -#! /bin/bash - -workdir=./testdir -inputs=$workdir/models/*/ -output=$workdir/output/ -generator=trendify.examples:example_data_product_generator -n_procs=5 -server_port=8001 -data_products_file_name='test_products.json' - -test -d $workdir && rm -r $workdir -trendify_make_sample_data -wd $workdir -n 100 - -trendify make static -g $generator -i $inputs -o $output -n $n_procs -f $data_products_file_name -# trendify make grafana -g $generator -i $inputs -o $output -n $n_procs --port $server_port -# trendify make all -g $generator -i $inputs -o $output -n $n_procs --port $server_port diff --git a/tests/test_basic.py b/tests/test_basic.py deleted file mode 100644 index 56f5096..0000000 --- a/tests/test_basic.py +++ /dev/null @@ -1,8 +0,0 @@ -"""Basic tests for trendify package.""" - - -def test_import(): - """Test that trendify can be imported.""" - import trendify - - assert trendify is not None diff --git a/tests/test_product_store.py b/tests/test_product_store.py new file mode 100644 index 0000000..0aee658 --- /dev/null +++ b/tests/test_product_store.py @@ -0,0 +1,171 @@ +from pathlib import Path + +import polars as pl +import pytest + +from trendify.base.data_product import DataProduct +from trendify.base.pen import Pen +from trendify.formats.table import TableEntry +from trendify.plotting.axline import AxLine, LineOrientation +from trendify.plotting.histogram import HistogramEntry +from trendify.plotting.point import Point2D +from trendify.plotting.trace import Trace2D +from trendify.formats.format2d import XYData +from trendify.store.product_store import ProductStore +from trendify.store.tags import decode_tag, encode_tag + + +@pytest.fixture +def store(tmp_path: Path): + with ProductStore.open(tmp_path / "trendify.db") as s: + yield s + + +def _sample_products(): + return [ + Point2D(tags=["a", ("a", "b")], x=1, y=2), + Trace2D.from_xy( + tags=[("a", "b")], x=[0, 1, 2], y=[0, 1, 4], pen=Pen(label="hi") + ), + AxLine(tags=["a"], value=0.5, orientation=LineOrientation.VERTICAL), + TableEntry(tags=["tbl"], row="r1", col="c1", value=1.5, unit="m"), + TableEntry(tags=["tbl"], row="r1", col="c2", value="hello"), + TableEntry(tags=["tbl"], row="r2", col="c1", value=True), + HistogramEntry(tags=["h"], value=3.0), + ] + + +class TestTagEncoding: + def test_scalar_round_trip(self): + assert decode_tag(encode_tag("foo")) == "foo" + assert decode_tag(encode_tag(3)) == 3 + + def test_tuple_round_trip(self): + assert decode_tag(encode_tag(("a", "b"))) == ("a", "b") + + def test_scalar_and_tuple_dont_collide(self): + assert encode_tag("a") != encode_tag(("a",)) + + +class TestWriteRun: + def test_write_run_returns_count(self, store: ProductStore, tmp_path: Path): + n = store.write_run(tmp_path / "run1", _sample_products()) + assert n == len(_sample_products()) + + def test_write_run_is_idempotent(self, store: ProductStore, tmp_path: Path): + run_dir = tmp_path / "run1" + store.write_run(run_dir, _sample_products()) + store.write_run(run_dir, _sample_products()) + + (count,) = store._conn.execute("SELECT COUNT(*) FROM products").fetchone() + assert count == len(_sample_products()) + + (run_count,) = store._conn.execute("SELECT COUNT(*) FROM runs").fetchone() + assert run_count == 1 + + def test_rerun_with_fewer_products_drops_stale_rows( + self, store: ProductStore, tmp_path: Path + ): + run_dir = tmp_path / "run1" + store.write_run(run_dir, _sample_products()) + store.write_run(run_dir, _sample_products()[:2]) + + (count,) = store._conn.execute("SELECT COUNT(*) FROM products").fetchone() + assert count == 2 + + def test_two_runs_coexist(self, store: ProductStore, tmp_path: Path): + store.write_run(tmp_path / "run1", _sample_products()) + store.write_run(tmp_path / "run2", _sample_products()) + + (count,) = store._conn.execute("SELECT COUNT(*) FROM products").fetchone() + assert count == 2 * len(_sample_products()) + + +class TestGetTags: + def test_get_tags_includes_scalar_and_tuple( + self, store: ProductStore, tmp_path: Path + ): + store.write_run(tmp_path / "run1", _sample_products()) + tags = store.get_tags() + assert tags == {"a", ("a", "b"), "tbl", "h"} + + def test_get_tags_filtered_by_type(self, store: ProductStore, tmp_path: Path): + store.write_run(tmp_path / "run1", _sample_products()) + assert store.get_tags(object_type=TableEntry) == {"tbl"} + assert store.get_tags(object_type=XYData) == {"a", ("a", "b")} + + def test_tag_tree_sorted_shallow_first(self, store: ProductStore, tmp_path: Path): + store.write_run(tmp_path / "run1", _sample_products()) + tree = store.tag_tree() + depths = [len(t) if isinstance(t, tuple) else 1 for t in tree] + assert depths == sorted(depths) + + +class TestGetProducts: + def test_filters_by_tag(self, store: ProductStore, tmp_path: Path): + store.write_run(tmp_path / "run1", _sample_products()) + products = store.get_products_of_type(DataProduct, tag="h") + assert [p.product_type for p in products] == ["HistogramEntry"] + + def test_filters_by_type_hierarchy(self, store: ProductStore, tmp_path: Path): + store.write_run(tmp_path / "run1", _sample_products()) + # tag "a" has a Point2D and an AxLine; only Point2D is XYData + xy = store.get_products_of_type(XYData, tag="a") + assert [p.product_type for p in xy] == ["Point2D"] + + def test_no_filters_returns_everything(self, store: ProductStore, tmp_path: Path): + store.write_run(tmp_path / "run1", _sample_products()) + products = store.get_products_of_type(DataProduct) + assert len(products) == len(_sample_products()) + + def test_multi_tag_product_is_not_duplicated_in_storage( + self, store: ProductStore, tmp_path: Path + ): + # Point2D above carries two tags ("a" and ("a","b")) -- this is precisely the + # v1 disk-duplication complaint: assert there's exactly one `products` row for + # it, with two matching `product_tags` index rows, not two payload copies. + store.write_run(tmp_path / "run1", _sample_products()) + (point_count,) = store._conn.execute( + "SELECT COUNT(*) FROM products WHERE product_type = 'Point2D'" + ).fetchone() + assert point_count == 1 + + (tag_row_count,) = store._conn.execute( + "SELECT COUNT(*) FROM product_tags pt " + "JOIN products p ON p.id = pt.product_id " + "WHERE p.product_type = 'Point2D'" + ).fetchone() + assert tag_row_count == 2 + + def test_round_trip_preserves_fields(self, store: ProductStore, tmp_path: Path): + store.write_run(tmp_path / "run1", _sample_products()) + [trace] = store.get_products_of_type(Trace2D, tag=("a", "b")) + assert list(trace.x) == [0, 1, 2] + assert list(trace.y) == [0, 1, 4] + assert trace.pen.label == "hi" + + +class TestGetTableEntries: + def test_returns_polars_dataframe_with_expected_shape( + self, store: ProductStore, tmp_path: Path + ): + store.write_run(tmp_path / "run1", _sample_products()) + df = store.get_table_entries("tbl") + assert isinstance(df, pl.DataFrame) + assert set(df.columns) == {"row", "col", "value", "unit"} + assert df.height == 3 + + def test_preserves_heterogeneous_value_types( + self, store: ProductStore, tmp_path: Path + ): + store.write_run(tmp_path / "run1", _sample_products()) + df = store.get_table_entries("tbl") + values = {(row["row"], row["col"]): row["value"] for row in df.to_dicts()} + assert values[("r1", "c1")] == 1.5 + assert values[("r1", "c2")] == "hello" + assert values[("r2", "c1")] is True + + def test_empty_tag_returns_empty_frame(self, store: ProductStore, tmp_path: Path): + store.write_run(tmp_path / "run1", _sample_products()) + df = store.get_table_entries("does-not-exist") + assert df.height == 0 diff --git a/tests/unittests.py b/tests/unittests.py deleted file mode 100644 index d17f2e1..0000000 --- a/tests/unittests.py +++ /dev/null @@ -1,137 +0,0 @@ -import unittest -import numpy as np -from pathlib import Path -import tempfile -import matplotlib.pyplot as plt -from trendify import ( - Trace2D, - Point2D, - TableEntry, - HistogramEntry, - AxLine, - Pen, - Marker, - Format2D, - LineOrientation, - DataProductCollection, -) - - -class TestDataProducts(unittest.TestCase): - def setUp(self): - self.temp_dir = tempfile.mkdtemp() - self.test_dir = Path(self.temp_dir) - - def test_trace2d(self): - # Test creating and manipulating a Trace2D - x = np.linspace(0, 10, 100) - y = np.sin(x) - - trace = Trace2D.from_xy( - tags=["test_trace"], - x=x, - y=y, - pen=Pen(color="blue", label="Test Sine"), - format2d=Format2D(title_fig="Test Figure", label_x="X", label_y="Y"), - ) - - # Test properties - np.testing.assert_array_equal(trace.x, x) - np.testing.assert_array_equal(trace.y, y) - self.assertEqual(trace.pen.color, "blue") - self.assertEqual(trace.pen.label, "Test Sine") - - # Test plotting - fig, ax = plt.subplots() - trace.plot_to_ax(ax) - plt.close(fig) - - def test_point2d(self): - point = Point2D( - tags=["test_point"], - x=1.0, - y=2.0, - marker=Marker(color="red", symbol="o"), - format2d=Format2D(title_fig="Test Point"), - ) - - self.assertEqual(point.x, 1.0) - self.assertEqual(point.y, 2.0) - self.assertEqual(point.marker.color, "red") - - def test_axline(self): - # Test horizontal line - hline = AxLine( - tags=["test_line"], - value=5.0, - orientation=LineOrientation.HORIZONTAL, - pen=Pen(color="red", label="Test HLine"), - ) - - self.assertEqual(hline.value, 5.0) - self.assertEqual(hline.orientation, LineOrientation.HORIZONTAL) - - # Test vertical line - vline = AxLine( - tags=["test_line"], - value=2.0, - orientation=LineOrientation.VERTICAL, - pen=Pen(color="blue", label="Test VLine"), - ) - - self.assertEqual(vline.value, 2.0) - self.assertEqual(vline.orientation, LineOrientation.VERTICAL) - - # Test plotting - fig, ax = plt.subplots() - hline.plot_to_ax(ax) - vline.plot_to_ax(ax) - plt.close(fig) - - def test_table_entry(self): - entry = TableEntry( - tags=["test_table"], - row="Test Row", - col="Test Col", - value=42.0, - unit="units", - ) - - self.assertEqual(entry.row, "Test Row") - self.assertEqual(entry.col, "Test Col") - self.assertEqual(entry.value, 42.0) - self.assertEqual(entry.unit, "units") - - def test_histogram_entry(self): - entry = HistogramEntry(tags=["test_hist"], value=3.14, style=None) - - self.assertEqual(entry.value, 3.14) - - def test_data_product_collection(self): - # Create some test products - point = Point2D(tags=["test"], x=1.0, y=2.0, marker=Marker(color="red")) - - trace = Trace2D.from_xy( - tags=["test"], - x=np.array([1, 2, 3]), - y=np.array([4, 5, 6]), - pen=Pen(color="blue"), - ) - - # Create collection - collection = DataProductCollection(elements=[point, trace]) - - # Test serialization - json_file = self.test_dir / "test.json" - json_file.write_text(collection.model_dump_json()) - - # Test deserialization - loaded = DataProductCollection.model_validate_json(json_file.read_text()) - - self.assertEqual(len(loaded.elements), 2) - self.assertIsInstance(loaded.elements[0], Point2D) - self.assertIsInstance(loaded.elements[1], Trace2D) - - -if __name__ == "__main__": - unittest.main() diff --git a/uv.lock b/uv.lock index f97bd75..98fcc5f 100644 --- a/uv.lock +++ b/uv.lock @@ -14,19 +14,12 @@ resolution-markers = [ ] [[package]] -name = "altair" -version = "6.2.2" +name = "annotated-doc" +version = "0.0.4" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "jinja2" }, - { name = "jsonschema" }, - { name = "narwhals" }, - { name = "packaging" }, - { name = "typing-extensions", marker = "python_full_version < '3.15'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/06/a1/5e6cc638a66da48cfc89a79c2f4810dfec00b63385f9b009ab1f069779bb/altair-6.2.2.tar.gz", hash = "sha256:a1ff9d9cfe81c75414641826312b9471780e19d39293ba0b012933f6b6cba0fe", size = 766606, upload-time = "2026-06-23T12:47:13.384Z" } +sdist = { url = "https://files.pythonhosted.org/packages/57/ba/046ceea27344560984e26a590f90bc7f4a75b06701f653222458922b558c/annotated_doc-0.0.4.tar.gz", hash = "sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4", size = 7288, upload-time = "2025-11-10T22:07:42.062Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e3/99/d6031f4f146298951c46b1bf1cc160c2a63f6e44b3c13a30054add100d5f/altair-6.2.2-py3-none-any.whl", hash = "sha256:94014f8ad8617c3cb163d1137359cd6db5ba134b9b46d93cfd8b609fd245a583", size = 797613, upload-time = "2026-06-23T12:47:11.451Z" }, + { url = "https://files.pythonhosted.org/packages/1e/d3/26bf1008eb3d2daa8ef4cacc7f3bfdc11818d111f7e2d0201bc6e3b49d45/annotated_doc-0.0.4-py3-none-any.whl", hash = "sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320", size = 5303, upload-time = "2025-11-10T22:07:40.673Z" }, ] [[package]] @@ -38,285 +31,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" }, ] -[[package]] -name = "anyio" -version = "4.14.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "idna" }, - { name = "typing-extensions", marker = "python_full_version < '3.13'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/3b/72/5562aabb8dd7181e8e860622a38bea08d17842b99ecd4c91f84ac95251b0/anyio-4.14.1.tar.gz", hash = "sha256:8d648a3544c1a700e3ff78615cd679e4c5c3f149904287e73687b2596963629e", size = 254831, upload-time = "2026-06-24T20:56:06.017Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b0/7b/90df4a0a816d98d6ea26f559d87836d494a2cf1fcf063be67df50a7bcc30/anyio-4.14.1-py3-none-any.whl", hash = "sha256:4e5533c5b8ff0a24f5d7a176cbe6877129cd183893f66b537f8f227d10527d72", size = 124875, upload-time = "2026-06-24T20:56:04.413Z" }, -] - -[[package]] -name = "attrs" -version = "26.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, -] - -[[package]] -name = "babel" -version = "2.18.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7d/b2/51899539b6ceeeb420d40ed3cd4b7a40519404f9baf3d4ac99dc413a834b/babel-2.18.0.tar.gz", hash = "sha256:b80b99a14bd085fcacfa15c9165f651fbb3406e66cc603abf11c5750937c992d", size = 9959554, upload-time = "2026-02-01T12:30:56.078Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/77/f5/21d2de20e8b8b0408f0681956ca2c69f1320a3848ac50e6e7f39c6159675/babel-2.18.0-py3-none-any.whl", hash = "sha256:e2b422b277c2b9a9630c1d7903c2a00d0830c409c59ac8cae9081c92f1aeba35", size = 10196845, upload-time = "2026-02-01T12:30:53.445Z" }, -] - -[[package]] -name = "backrefs" -version = "7.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5e/a7/a7dd63622beef68cc0d3c3c36d472e143dd95443d5ebf14cd1a5b4dfbf11/backrefs-7.0.tar.gz", hash = "sha256:4989bb9e1e99eb23647c7160ed51fb21d0b41b5d200f2d3017da41e023097e82", size = 7012453, upload-time = "2026-04-28T16:28:04.215Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d4/39/39a31d7eae729ea14ed10c3ccef79371197177b9355a86cb3525709e8502/backrefs-7.0-py310-none-any.whl", hash = "sha256:b57cd227ea556b0aed3dc9b8da4628db4eabc0402c6d7fcfc69283a93955f7e9", size = 380824, upload-time = "2026-04-28T16:27:55.647Z" }, - { url = "https://files.pythonhosted.org/packages/c9/b5/9302644225ba7dfa934a2ff2b9c7bb85701313a90dddb3dfaf693fa5bae2/backrefs-7.0-py311-none-any.whl", hash = "sha256:a0fa7360c63509e9e077e174ef4e6d3c21c8db94189b9d957289ae6d794b9475", size = 392626, upload-time = "2026-04-28T16:27:57.42Z" }, - { url = "https://files.pythonhosted.org/packages/36/da/87912ddec6e06feffbaa3d7aa18fc6352bee2e8f1fee185d7d1690f8f4e8/backrefs-7.0-py312-none-any.whl", hash = "sha256:ca42ce6a49ace3d75684dfa9937f3373902a63284ecb385ce36d15e5dcb41c12", size = 398537, upload-time = "2026-04-28T16:27:58.913Z" }, - { url = "https://files.pythonhosted.org/packages/00/bb/90ba423612b6aa0adccc6b1874bcd4a9b44b660c0c16f346611e00f64ac3/backrefs-7.0-py313-none-any.whl", hash = "sha256:f2c52955d631b9e1ac4cd56209f0a3a946d592b98e7790e77699339ae01c102a", size = 400491, upload-time = "2026-04-28T16:28:00.928Z" }, - { url = "https://files.pythonhosted.org/packages/3e/5c/fb93d3092640a24dfb7bd7727a24016d7c01774ca013e60efd3f683c8002/backrefs-7.0-py314-none-any.whl", hash = "sha256:a6448b28180e3ca01134c9cf09dcebafad8531072e09903c5451748a05f24bc9", size = 412349, upload-time = "2026-04-28T16:28:02.412Z" }, -] - -[[package]] -name = "black" -version = "26.5.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "click" }, - { name = "mypy-extensions" }, - { name = "packaging" }, - { name = "pathspec" }, - { name = "platformdirs" }, - { name = "pytokens" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c0/37/5628dd55bf2b34257fc7603f0fe97c40e3aaf24265f416a9c85c95ca1436/black-26.5.1.tar.gz", hash = "sha256:dd321f668053961824bcc1be1cc1df748b2d7e4fa28086b08331e577b0100a73", size = 679439, upload-time = "2026-05-18T16:53:36.107Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/4b/96/3c3e09f09f44a37aac36b178a279cd19aa7001bd796187a7b162a294c81f/black-26.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:96ae2c733b2aabdd9986e2c5df628ff3473676cd1c5faded1ff496cf6d74083c", size = 1970639, upload-time = "2026-05-18T17:05:11.461Z" }, - { url = "https://files.pythonhosted.org/packages/83/ea/5ad117b9ee3ecd933c712bcbae610006e5b7cc9f41c526cd7ed3b6c4124c/black-26.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0e48b87e03bf109288e55cfceadcfa15ff5470aca2851a851950ed2926f450d7", size = 1792130, upload-time = "2026-05-18T17:05:12.983Z" }, - { url = "https://files.pythonhosted.org/packages/06/3a/7c448bc623fcdfa96672531beb5a616ea5e64f6975955254d7731ffb0ad9/black-26.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5119fa92ae61f786e8c3662fd60aece1d0a2dd5cca5d0c79417a95e7a4272a59", size = 1846134, upload-time = "2026-05-18T17:05:14.506Z" }, - { url = "https://files.pythonhosted.org/packages/a1/5b/0b39b3a5917f0657ac014ad2edb58c139553a478adfe7f817abf1622ff6e/black-26.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:30d3c14661f2792e9142cce3eeeb1cbc175b3eb5f733be0c8eeb99651e52b0c3", size = 1478883, upload-time = "2026-05-18T17:05:16.542Z" }, - { url = "https://files.pythonhosted.org/packages/4c/48/dc222692e0f95030db1bbfb6c857e76858bad09058221ea7aae815255327/black-26.5.1-cp311-cp311-win_arm64.whl", hash = "sha256:1ef92b76f7733f282fd096ea406200b5a286c42947412b0eaff3a74e3616cefe", size = 1277776, upload-time = "2026-05-18T17:05:18.029Z" }, - { url = "https://files.pythonhosted.org/packages/24/99/7744b906703228264ef73bdd534df88ec1ef3de45c4e78f6d31b9e32d0c9/black-26.5.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4ad6fa01f941920f54f2bbb35f3df7673428a0ef98a0b0840c2eaef3b110efa8", size = 2012518, upload-time = "2026-05-18T17:05:20.108Z" }, - { url = "https://files.pythonhosted.org/packages/b7/c0/c5a3b1636dfd09c42534f2b3cf33506814f6d3e066fb0879ffa16c1ae860/black-26.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3915f256e75a2d7cf88d8953d37f780455dc586cc72dee059c528fe77f581217", size = 1816016, upload-time = "2026-05-18T17:05:21.84Z" }, - { url = "https://files.pythonhosted.org/packages/1f/0e/36044316b65ca471d3bb6d3703fd06fb50c6b727c3562f6a5a3153634f88/black-26.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d98d4137277c75dfb898ec8d846c4fd68ba1e9cf77f95e2865c203dc18f4c3d", size = 1884150, upload-time = "2026-05-18T17:05:23.546Z" }, - { url = "https://files.pythonhosted.org/packages/b3/33/dafc5808c2af43672912111d7c3354af1615f7e2be3bed7a878461abbe4d/black-26.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:a1dca32d9f1784af512a13410ec204c6f7f0aa9797a111c42e1c03449821c264", size = 1486825, upload-time = "2026-05-18T17:05:25.004Z" }, - { url = "https://files.pythonhosted.org/packages/82/14/b965ee6ad2a311f28bdbf692def3ee9848d2ae289dab28b27657fcee3e78/black-26.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:1037d5ac7b7b310b2632ad867ec8d0e4c4819dcdb0b820f63135da746a24e418", size = 1288646, upload-time = "2026-05-18T17:05:26.477Z" }, - { url = "https://files.pythonhosted.org/packages/3f/5c/c384363980e11e25ca6b93205949bb331fbf35f4e0dbec376dfa6326cec8/black-26.5.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2b36cf2ddf5566e205f6535f782a62194a184d33e175b64ae8c40b1737522be3", size = 2009020, upload-time = "2026-05-18T17:05:28.132Z" }, - { url = "https://files.pythonhosted.org/packages/0b/df/9f31c5e0babbfed77d505fc5d120beb98b21b33feaeded3924ea941fe360/black-26.5.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1f7ea64ebfa01b50f693508fc39f875e264446d3b097088f84f203b9d09618a0", size = 1813335, upload-time = "2026-05-18T17:05:31.266Z" }, - { url = "https://files.pythonhosted.org/packages/fb/24/8e7b9a2fa61b0afd82209efe937557d180a1fa055bd7f6161eb9defc3719/black-26.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ecb3e624844c798144e9bd986954e0adc81d8911a1f30f375e1252fe26e8c294", size = 1881614, upload-time = "2026-05-18T17:05:32.718Z" }, - { url = "https://files.pythonhosted.org/packages/49/ad/b4e0d9365ba8ac34f6bbab62a4b1b2dd5d618fac3fa1b8db968c844201b5/black-26.5.1-cp313-cp313-win_amd64.whl", hash = "sha256:e1a26503279b6b310669fb0b219c39e4820b77e8189fe80f522bb511f247db0a", size = 1488925, upload-time = "2026-05-18T17:05:34.259Z" }, - { url = "https://files.pythonhosted.org/packages/a1/4b/652b859bf5df88a751c30451b09338f7fd26a77d1271c666992f836b7711/black-26.5.1-cp313-cp313-win_arm64.whl", hash = "sha256:5c34b25da232ead53a6f335b76dbea124f4d152ad568b9080d6f944bc2b34b52", size = 1289883, upload-time = "2026-05-18T17:05:36.019Z" }, - { url = "https://files.pythonhosted.org/packages/a6/16/a8da8eb208c51c7f4ce74609a45d0dcc6d8a2141e45e81ee5289d1bb0d59/black-26.5.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:e88976690a64b0af98312ca958415849cb42423423c5f2ee74af4b49a97a2168", size = 2004800, upload-time = "2026-05-18T17:05:38.182Z" }, - { url = "https://files.pythonhosted.org/packages/11/8a/a479296a19e383b70a725882a6cf3d786540601ff03cabbaaf1cce864c5a/black-26.5.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:32d5ea7f6c8bdfa6e648326ebca1f02b0764e2a029edc6f8dce2627e19d468c3", size = 1815576, upload-time = "2026-05-18T17:05:40.309Z" }, - { url = "https://files.pythonhosted.org/packages/81/6b/cfaf3d39f25132c156a068f6b805576c9103a84086019507c70e1911ee7d/black-26.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ea8d16dc41655aa113cd64665e7219446cd7e4ff2248d7178eaa905190c86b18", size = 1877927, upload-time = "2026-05-18T17:05:42.463Z" }, - { url = "https://files.pythonhosted.org/packages/66/76/302e313964bcff7e28df329d39f84f5270095730d85ff0acc260610a0d82/black-26.5.1-cp314-cp314-win_amd64.whl", hash = "sha256:577f21094ea469ef92ec1adaf2c9441a226d2144d01a5be2fa823cecf6543e50", size = 1511860, upload-time = "2026-05-18T17:05:43.943Z" }, - { url = "https://files.pythonhosted.org/packages/27/4e/a3827e35e0e567f9f9ee59e2a0ab979267dca98718f25547ca8c6733afd4/black-26.5.1-cp314-cp314-win_arm64.whl", hash = "sha256:ed1a20af114c301a0269bf01163d51dbef72737fd65f850001e7cbe7f3c7abae", size = 1316632, upload-time = "2026-05-18T17:05:45.521Z" }, - { url = "https://files.pythonhosted.org/packages/94/51/f975cae76d44274cc2868dc9040ac5d58d464784610234455b4e7b19c6ef/black-26.5.1-py3-none-any.whl", hash = "sha256:4ed7f7da04046d2e488437170797d3b4a4ad83906683bcb7dfc68b673bbce5e2", size = 213693, upload-time = "2026-05-18T16:53:33.964Z" }, -] - -[[package]] -name = "blinker" -version = "1.9.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/21/28/9b3f50ce0e048515135495f198351908d99540d69bfdc8c1d15b73dc55ce/blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf", size = 22460, upload-time = "2024-11-08T17:25:47.436Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/10/cb/f2ad4230dc2eb1a74edf38f1a38b9b52277f75bef262d8908e60d957e13c/blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc", size = 8458, upload-time = "2024-11-08T17:25:46.184Z" }, -] - -[[package]] -name = "cachetools" -version = "7.1.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f4/8b/0d3945a13955303b81272f759a0331e54c5c793da455e6f5706b89d2639c/cachetools-7.1.4.tar.gz", hash = "sha256:437f55a4e0c1b01a4f3077cc470e6991d47430970e36fbcb77e2be0df4fc1cd6", size = 40085, upload-time = "2026-05-21T22:40:43.376Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8c/7b/1fc1c09cc0756cf25861a3be10565915953876da48bb228fb9a672b20a42/cachetools-7.1.4-py3-none-any.whl", hash = "sha256:323dc4127934744db5b54eb4924482d7edafbf9554e820d1531c2e08c0e4ef54", size = 16761, upload-time = "2026-05-21T22:40:41.845Z" }, -] - -[[package]] -name = "certifi" -version = "2026.6.17" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c9/c7/424b75da314c1045981bd9777432fad05a9e0c69daa4ed7e308bbaffe405/certifi-2026.6.17.tar.gz", hash = "sha256:024c88eeec92ca068db80f02b8b07c9cef7b9fe261d1d535abfd5abd6f6af432", size = 134594, upload-time = "2026-06-17T10:31:07.894Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ef/2f/c5464532e965badff2f4c4c1a3a83f5697f0d7c407ed0cda44aaa99bb451/certifi-2026.6.17-py3-none-any.whl", hash = "sha256:2227dcbaafe0d2f59279d1762ddddc37783ed4354594f194ffc31d20f41fc3db", size = 133289, upload-time = "2026-06-17T10:31:06.348Z" }, -] - -[[package]] -name = "cffi" -version = "2.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pycparser", marker = "implementation_name != 'PyPy'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:b4c854ef3adc177950a8dfc81a86f5115d2abd545751a304c5bcf2c2c7283cfe", size = 184344, upload-time = "2025-09-08T23:22:26.456Z" }, - { url = "https://files.pythonhosted.org/packages/4f/8b/f0e4c441227ba756aafbe78f117485b25bb26b1c059d01f137fa6d14896b/cffi-2.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2de9a304e27f7596cd03d16f1b7c72219bd944e99cc52b84d0145aefb07cbd3c", size = 180560, upload-time = "2025-09-08T23:22:28.197Z" }, - { url = "https://files.pythonhosted.org/packages/b1/b7/1200d354378ef52ec227395d95c2576330fd22a869f7a70e88e1447eb234/cffi-2.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:baf5215e0ab74c16e2dd324e8ec067ef59e41125d3eade2b863d294fd5035c92", size = 209613, upload-time = "2025-09-08T23:22:29.475Z" }, - { url = "https://files.pythonhosted.org/packages/b8/56/6033f5e86e8cc9bb629f0077ba71679508bdf54a9a5e112a3c0b91870332/cffi-2.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:730cacb21e1bdff3ce90babf007d0a0917cc3e6492f336c2f0134101e0944f93", size = 216476, upload-time = "2025-09-08T23:22:31.063Z" }, - { url = "https://files.pythonhosted.org/packages/dc/7f/55fecd70f7ece178db2f26128ec41430d8720f2d12ca97bf8f0a628207d5/cffi-2.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:6824f87845e3396029f3820c206e459ccc91760e8fa24422f8b0c3d1731cbec5", size = 203374, upload-time = "2025-09-08T23:22:32.507Z" }, - { url = "https://files.pythonhosted.org/packages/84/ef/a7b77c8bdc0f77adc3b46888f1ad54be8f3b7821697a7b89126e829e676a/cffi-2.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:9de40a7b0323d889cf8d23d1ef214f565ab154443c42737dfe52ff82cf857664", size = 202597, upload-time = "2025-09-08T23:22:34.132Z" }, - { url = "https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8941aaadaf67246224cee8c3803777eed332a19d909b47e29c9842ef1e79ac26", size = 215574, upload-time = "2025-09-08T23:22:35.443Z" }, - { url = "https://files.pythonhosted.org/packages/44/64/58f6255b62b101093d5df22dcb752596066c7e89dd725e0afaed242a61be/cffi-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a05d0c237b3349096d3981b727493e22147f934b20f6f125a3eba8f994bec4a9", size = 218971, upload-time = "2025-09-08T23:22:36.805Z" }, - { url = "https://files.pythonhosted.org/packages/ab/49/fa72cebe2fd8a55fbe14956f9970fe8eb1ac59e5df042f603ef7c8ba0adc/cffi-2.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:94698a9c5f91f9d138526b48fe26a199609544591f859c870d477351dc7b2414", size = 211972, upload-time = "2025-09-08T23:22:38.436Z" }, - { url = "https://files.pythonhosted.org/packages/0b/28/dd0967a76aab36731b6ebfe64dec4e981aff7e0608f60c2d46b46982607d/cffi-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5fed36fccc0612a53f1d4d9a816b50a36702c28a2aa880cb8a122b3466638743", size = 217078, upload-time = "2025-09-08T23:22:39.776Z" }, - { url = "https://files.pythonhosted.org/packages/2b/c0/015b25184413d7ab0a410775fdb4a50fca20f5589b5dab1dbbfa3baad8ce/cffi-2.0.0-cp311-cp311-win32.whl", hash = "sha256:c649e3a33450ec82378822b3dad03cc228b8f5963c0c12fc3b1e0ab940f768a5", size = 172076, upload-time = "2025-09-08T23:22:40.95Z" }, - { url = "https://files.pythonhosted.org/packages/ae/8f/dc5531155e7070361eb1b7e4c1a9d896d0cb21c49f807a6c03fd63fc877e/cffi-2.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:66f011380d0e49ed280c789fbd08ff0d40968ee7b665575489afa95c98196ab5", size = 182820, upload-time = "2025-09-08T23:22:42.463Z" }, - { url = "https://files.pythonhosted.org/packages/95/5c/1b493356429f9aecfd56bc171285a4c4ac8697f76e9bbbbb105e537853a1/cffi-2.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:c6638687455baf640e37344fe26d37c404db8b80d037c3d29f58fe8d1c3b194d", size = 177635, upload-time = "2025-09-08T23:22:43.623Z" }, - { url = "https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6d02d6655b0e54f54c4ef0b94eb6be0607b70853c45ce98bd278dc7de718be5d", size = 185271, upload-time = "2025-09-08T23:22:44.795Z" }, - { url = "https://files.pythonhosted.org/packages/df/a2/781b623f57358e360d62cdd7a8c681f074a71d445418a776eef0aadb4ab4/cffi-2.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8eca2a813c1cb7ad4fb74d368c2ffbbb4789d377ee5bb8df98373c2cc0dee76c", size = 181048, upload-time = "2025-09-08T23:22:45.938Z" }, - { url = "https://files.pythonhosted.org/packages/ff/df/a4f0fbd47331ceeba3d37c2e51e9dfc9722498becbeec2bd8bc856c9538a/cffi-2.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:21d1152871b019407d8ac3985f6775c079416c282e431a4da6afe7aefd2bccbe", size = 212529, upload-time = "2025-09-08T23:22:47.349Z" }, - { url = "https://files.pythonhosted.org/packages/d5/72/12b5f8d3865bf0f87cf1404d8c374e7487dcf097a1c91c436e72e6badd83/cffi-2.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b21e08af67b8a103c71a250401c78d5e0893beff75e28c53c98f4de42f774062", size = 220097, upload-time = "2025-09-08T23:22:48.677Z" }, - { url = "https://files.pythonhosted.org/packages/c2/95/7a135d52a50dfa7c882ab0ac17e8dc11cec9d55d2c18dda414c051c5e69e/cffi-2.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1e3a615586f05fc4065a8b22b8152f0c1b00cdbc60596d187c2a74f9e3036e4e", size = 207983, upload-time = "2025-09-08T23:22:50.06Z" }, - { url = "https://files.pythonhosted.org/packages/3a/c8/15cb9ada8895957ea171c62dc78ff3e99159ee7adb13c0123c001a2546c1/cffi-2.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:81afed14892743bbe14dacb9e36d9e0e504cd204e0b165062c488942b9718037", size = 206519, upload-time = "2025-09-08T23:22:51.364Z" }, - { url = "https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3e17ed538242334bf70832644a32a7aae3d83b57567f9fd60a26257e992b79ba", size = 219572, upload-time = "2025-09-08T23:22:52.902Z" }, - { url = "https://files.pythonhosted.org/packages/07/e0/267e57e387b4ca276b90f0434ff88b2c2241ad72b16d31836adddfd6031b/cffi-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3925dd22fa2b7699ed2617149842d2e6adde22b262fcbfada50e3d195e4b3a94", size = 222963, upload-time = "2025-09-08T23:22:54.518Z" }, - { url = "https://files.pythonhosted.org/packages/b6/75/1f2747525e06f53efbd878f4d03bac5b859cbc11c633d0fb81432d98a795/cffi-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2c8f814d84194c9ea681642fd164267891702542f028a15fc97d4674b6206187", size = 221361, upload-time = "2025-09-08T23:22:55.867Z" }, - { url = "https://files.pythonhosted.org/packages/7b/2b/2b6435f76bfeb6bbf055596976da087377ede68df465419d192acf00c437/cffi-2.0.0-cp312-cp312-win32.whl", hash = "sha256:da902562c3e9c550df360bfa53c035b2f241fed6d9aef119048073680ace4a18", size = 172932, upload-time = "2025-09-08T23:22:57.188Z" }, - { url = "https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:da68248800ad6320861f129cd9c1bf96ca849a2771a59e0344e88681905916f5", size = 183557, upload-time = "2025-09-08T23:22:58.351Z" }, - { url = "https://files.pythonhosted.org/packages/95/31/9f7f93ad2f8eff1dbc1c3656d7ca5bfd8fb52c9d786b4dcf19b2d02217fa/cffi-2.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:4671d9dd5ec934cb9a73e7ee9676f9362aba54f7f34910956b84d727b0d73fb6", size = 177762, upload-time = "2025-09-08T23:22:59.668Z" }, - { url = "https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:00bdf7acc5f795150faa6957054fbbca2439db2f775ce831222b66f192f03beb", size = 185230, upload-time = "2025-09-08T23:23:00.879Z" }, - { url = "https://files.pythonhosted.org/packages/4a/d2/a6c0296814556c68ee32009d9c2ad4f85f2707cdecfd7727951ec228005d/cffi-2.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:45d5e886156860dc35862657e1494b9bae8dfa63bf56796f2fb56e1679fc0bca", size = 181043, upload-time = "2025-09-08T23:23:02.231Z" }, - { url = "https://files.pythonhosted.org/packages/b0/1e/d22cc63332bd59b06481ceaac49d6c507598642e2230f201649058a7e704/cffi-2.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:07b271772c100085dd28b74fa0cd81c8fb1a3ba18b21e03d7c27f3436a10606b", size = 212446, upload-time = "2025-09-08T23:23:03.472Z" }, - { url = "https://files.pythonhosted.org/packages/a9/f5/a2c23eb03b61a0b8747f211eb716446c826ad66818ddc7810cc2cc19b3f2/cffi-2.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d48a880098c96020b02d5a1f7d9251308510ce8858940e6fa99ece33f610838b", size = 220101, upload-time = "2025-09-08T23:23:04.792Z" }, - { url = "https://files.pythonhosted.org/packages/f2/7f/e6647792fc5850d634695bc0e6ab4111ae88e89981d35ac269956605feba/cffi-2.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:f93fd8e5c8c0a4aa1f424d6173f14a892044054871c771f8566e4008eaa359d2", size = 207948, upload-time = "2025-09-08T23:23:06.127Z" }, - { url = "https://files.pythonhosted.org/packages/cb/1e/a5a1bd6f1fb30f22573f76533de12a00bf274abcdc55c8edab639078abb6/cffi-2.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:dd4f05f54a52fb558f1ba9f528228066954fee3ebe629fc1660d874d040ae5a3", size = 206422, upload-time = "2025-09-08T23:23:07.753Z" }, - { url = "https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c8d3b5532fc71b7a77c09192b4a5a200ea992702734a2e9279a37f2478236f26", size = 219499, upload-time = "2025-09-08T23:23:09.648Z" }, - { url = "https://files.pythonhosted.org/packages/50/e1/a969e687fcf9ea58e6e2a928ad5e2dd88cc12f6f0ab477e9971f2309b57c/cffi-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d9b29c1f0ae438d5ee9acb31cadee00a58c46cc9c0b2f9038c6b0b3470877a8c", size = 222928, upload-time = "2025-09-08T23:23:10.928Z" }, - { url = "https://files.pythonhosted.org/packages/36/54/0362578dd2c9e557a28ac77698ed67323ed5b9775ca9d3fe73fe191bb5d8/cffi-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6d50360be4546678fc1b79ffe7a66265e28667840010348dd69a314145807a1b", size = 221302, upload-time = "2025-09-08T23:23:12.42Z" }, - { url = "https://files.pythonhosted.org/packages/eb/6d/bf9bda840d5f1dfdbf0feca87fbdb64a918a69bca42cfa0ba7b137c48cb8/cffi-2.0.0-cp313-cp313-win32.whl", hash = "sha256:74a03b9698e198d47562765773b4a8309919089150a0bb17d829ad7b44b60d27", size = 172909, upload-time = "2025-09-08T23:23:14.32Z" }, - { url = "https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:19f705ada2530c1167abacb171925dd886168931e0a7b78f5bffcae5c6b5be75", size = 183402, upload-time = "2025-09-08T23:23:15.535Z" }, - { url = "https://files.pythonhosted.org/packages/cb/0e/02ceeec9a7d6ee63bb596121c2c8e9b3a9e150936f4fbef6ca1943e6137c/cffi-2.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:256f80b80ca3853f90c21b23ee78cd008713787b1b1e93eae9f3d6a7134abd91", size = 177780, upload-time = "2025-09-08T23:23:16.761Z" }, - { url = "https://files.pythonhosted.org/packages/92/c4/3ce07396253a83250ee98564f8d7e9789fab8e58858f35d07a9a2c78de9f/cffi-2.0.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fc33c5141b55ed366cfaad382df24fe7dcbc686de5be719b207bb248e3053dc5", size = 185320, upload-time = "2025-09-08T23:23:18.087Z" }, - { url = "https://files.pythonhosted.org/packages/59/dd/27e9fa567a23931c838c6b02d0764611c62290062a6d4e8ff7863daf9730/cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c654de545946e0db659b3400168c9ad31b5d29593291482c43e3564effbcee13", size = 181487, upload-time = "2025-09-08T23:23:19.622Z" }, - { url = "https://files.pythonhosted.org/packages/d6/43/0e822876f87ea8a4ef95442c3d766a06a51fc5298823f884ef87aaad168c/cffi-2.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:24b6f81f1983e6df8db3adc38562c83f7d4a0c36162885ec7f7b77c7dcbec97b", size = 220049, upload-time = "2025-09-08T23:23:20.853Z" }, - { url = "https://files.pythonhosted.org/packages/b4/89/76799151d9c2d2d1ead63c2429da9ea9d7aac304603de0c6e8764e6e8e70/cffi-2.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:12873ca6cb9b0f0d3a0da705d6086fe911591737a59f28b7936bdfed27c0d47c", size = 207793, upload-time = "2025-09-08T23:23:22.08Z" }, - { url = "https://files.pythonhosted.org/packages/bb/dd/3465b14bb9e24ee24cb88c9e3730f6de63111fffe513492bf8c808a3547e/cffi-2.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d9b97165e8aed9272a6bb17c01e3cc5871a594a446ebedc996e2397a1c1ea8ef", size = 206300, upload-time = "2025-09-08T23:23:23.314Z" }, - { url = "https://files.pythonhosted.org/packages/47/d9/d83e293854571c877a92da46fdec39158f8d7e68da75bf73581225d28e90/cffi-2.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:afb8db5439b81cf9c9d0c80404b60c3cc9c3add93e114dcae767f1477cb53775", size = 219244, upload-time = "2025-09-08T23:23:24.541Z" }, - { url = "https://files.pythonhosted.org/packages/2b/0f/1f177e3683aead2bb00f7679a16451d302c436b5cbf2505f0ea8146ef59e/cffi-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:737fe7d37e1a1bffe70bd5754ea763a62a066dc5913ca57e957824b72a85e205", size = 222828, upload-time = "2025-09-08T23:23:26.143Z" }, - { url = "https://files.pythonhosted.org/packages/c6/0f/cafacebd4b040e3119dcb32fed8bdef8dfe94da653155f9d0b9dc660166e/cffi-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:38100abb9d1b1435bc4cc340bb4489635dc2f0da7456590877030c9b3d40b0c1", size = 220926, upload-time = "2025-09-08T23:23:27.873Z" }, - { url = "https://files.pythonhosted.org/packages/3e/aa/df335faa45b395396fcbc03de2dfcab242cd61a9900e914fe682a59170b1/cffi-2.0.0-cp314-cp314-win32.whl", hash = "sha256:087067fa8953339c723661eda6b54bc98c5625757ea62e95eb4898ad5e776e9f", size = 175328, upload-time = "2025-09-08T23:23:44.61Z" }, - { url = "https://files.pythonhosted.org/packages/bb/92/882c2d30831744296ce713f0feb4c1cd30f346ef747b530b5318715cc367/cffi-2.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:203a48d1fb583fc7d78a4c6655692963b860a417c0528492a6bc21f1aaefab25", size = 185650, upload-time = "2025-09-08T23:23:45.848Z" }, - { url = "https://files.pythonhosted.org/packages/9f/2c/98ece204b9d35a7366b5b2c6539c350313ca13932143e79dc133ba757104/cffi-2.0.0-cp314-cp314-win_arm64.whl", hash = "sha256:dbd5c7a25a7cb98f5ca55d258b103a2054f859a46ae11aaf23134f9cc0d356ad", size = 180687, upload-time = "2025-09-08T23:23:47.105Z" }, - { url = "https://files.pythonhosted.org/packages/3e/61/c768e4d548bfa607abcda77423448df8c471f25dbe64fb2ef6d555eae006/cffi-2.0.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:9a67fc9e8eb39039280526379fb3a70023d77caec1852002b4da7e8b270c4dd9", size = 188773, upload-time = "2025-09-08T23:23:29.347Z" }, - { url = "https://files.pythonhosted.org/packages/2c/ea/5f76bce7cf6fcd0ab1a1058b5af899bfbef198bea4d5686da88471ea0336/cffi-2.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7a66c7204d8869299919db4d5069a82f1561581af12b11b3c9f48c584eb8743d", size = 185013, upload-time = "2025-09-08T23:23:30.63Z" }, - { url = "https://files.pythonhosted.org/packages/be/b4/c56878d0d1755cf9caa54ba71e5d049479c52f9e4afc230f06822162ab2f/cffi-2.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7cc09976e8b56f8cebd752f7113ad07752461f48a58cbba644139015ac24954c", size = 221593, upload-time = "2025-09-08T23:23:31.91Z" }, - { url = "https://files.pythonhosted.org/packages/e0/0d/eb704606dfe8033e7128df5e90fee946bbcb64a04fcdaa97321309004000/cffi-2.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:92b68146a71df78564e4ef48af17551a5ddd142e5190cdf2c5624d0c3ff5b2e8", size = 209354, upload-time = "2025-09-08T23:23:33.214Z" }, - { url = "https://files.pythonhosted.org/packages/d8/19/3c435d727b368ca475fb8742ab97c9cb13a0de600ce86f62eab7fa3eea60/cffi-2.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:b1e74d11748e7e98e2f426ab176d4ed720a64412b6a15054378afdb71e0f37dc", size = 208480, upload-time = "2025-09-08T23:23:34.495Z" }, - { url = "https://files.pythonhosted.org/packages/d0/44/681604464ed9541673e486521497406fadcc15b5217c3e326b061696899a/cffi-2.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:28a3a209b96630bca57cce802da70c266eb08c6e97e5afd61a75611ee6c64592", size = 221584, upload-time = "2025-09-08T23:23:36.096Z" }, - { url = "https://files.pythonhosted.org/packages/25/8e/342a504ff018a2825d395d44d63a767dd8ebc927ebda557fecdaca3ac33a/cffi-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7553fb2090d71822f02c629afe6042c299edf91ba1bf94951165613553984512", size = 224443, upload-time = "2025-09-08T23:23:37.328Z" }, - { url = "https://files.pythonhosted.org/packages/e1/5e/b666bacbbc60fbf415ba9988324a132c9a7a0448a9a8f125074671c0f2c3/cffi-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6c6c373cfc5c83a975506110d17457138c8c63016b563cc9ed6e056a82f13ce4", size = 223437, upload-time = "2025-09-08T23:23:38.945Z" }, - { url = "https://files.pythonhosted.org/packages/a0/1d/ec1a60bd1a10daa292d3cd6bb0b359a81607154fb8165f3ec95fe003b85c/cffi-2.0.0-cp314-cp314t-win32.whl", hash = "sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e", size = 180487, upload-time = "2025-09-08T23:23:40.423Z" }, - { url = "https://files.pythonhosted.org/packages/bf/41/4c1168c74fac325c0c8156f04b6749c8b6a8f405bbf91413ba088359f60d/cffi-2.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6", size = 191726, upload-time = "2025-09-08T23:23:41.742Z" }, - { url = "https://files.pythonhosted.org/packages/ae/3a/dbeec9d1ee0844c679f6bb5d6ad4e9f198b1224f4e7a32825f47f6192b0c/cffi-2.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9", size = 184195, upload-time = "2025-09-08T23:23:43.004Z" }, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.7" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c2/d7/b5b7020a0565c2e9fa8c09f4b5fa6232feb326b8c20081ccded47ea368fd/charset_normalizer-3.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7641bb8895e77f921102f72833904dcd9901df5d6d72a2ab8f31d04b7e51e4e7", size = 309705, upload-time = "2026-04-02T09:26:02.191Z" }, - { url = "https://files.pythonhosted.org/packages/5a/53/58c29116c340e5456724ecd2fff4196d236b98f3da97b404bc5e51ac3493/charset_normalizer-3.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:202389074300232baeb53ae2569a60901f7efadd4245cf3a3bf0617d60b439d7", size = 206419, upload-time = "2026-04-02T09:26:03.583Z" }, - { url = "https://files.pythonhosted.org/packages/b2/02/e8146dc6591a37a00e5144c63f29fb7c97a734ea8a111190783c0e60ab63/charset_normalizer-3.4.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:30b8d1d8c52a48c2c5690e152c169b673487a2a58de1ec7393196753063fcd5e", size = 227901, upload-time = "2026-04-02T09:26:04.738Z" }, - { url = "https://files.pythonhosted.org/packages/fb/73/77486c4cd58f1267bf17db420e930c9afa1b3be3fe8c8b8ebbebc9624359/charset_normalizer-3.4.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:532bc9bf33a68613fd7d65e4b1c71a6a38d7d42604ecf239c77392e9b4e8998c", size = 222742, upload-time = "2026-04-02T09:26:06.36Z" }, - { url = "https://files.pythonhosted.org/packages/a1/fa/f74eb381a7d94ded44739e9d94de18dc5edc9c17fb8c11f0a6890696c0a9/charset_normalizer-3.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2fe249cb4651fd12605b7288b24751d8bfd46d35f12a20b1ba33dea122e690df", size = 214061, upload-time = "2026-04-02T09:26:08.347Z" }, - { url = "https://files.pythonhosted.org/packages/dc/92/42bd3cefcf7687253fb86694b45f37b733c97f59af3724f356fa92b8c344/charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:65bcd23054beab4d166035cabbc868a09c1a49d1efe458fe8e4361215df40265", size = 199239, upload-time = "2026-04-02T09:26:09.823Z" }, - { url = "https://files.pythonhosted.org/packages/4c/3d/069e7184e2aa3b3cddc700e3dd267413dc259854adc3380421c805c6a17d/charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:08e721811161356f97b4059a9ba7bafb23ea5ee2255402c42881c214e173c6b4", size = 210173, upload-time = "2026-04-02T09:26:10.953Z" }, - { url = "https://files.pythonhosted.org/packages/62/51/9d56feb5f2e7074c46f93e0ebdbe61f0848ee246e2f0d89f8e20b89ebb8f/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e060d01aec0a910bdccb8be71faf34e7799ce36950f8294c8bf612cba65a2c9e", size = 209841, upload-time = "2026-04-02T09:26:12.142Z" }, - { url = "https://files.pythonhosted.org/packages/d2/59/893d8f99cc4c837dda1fe2f1139079703deb9f321aabcb032355de13b6c7/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:38c0109396c4cfc574d502df99742a45c72c08eff0a36158b6f04000043dbf38", size = 200304, upload-time = "2026-04-02T09:26:13.711Z" }, - { url = "https://files.pythonhosted.org/packages/7d/1d/ee6f3be3464247578d1ed5c46de545ccc3d3ff933695395c402c21fa6b77/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1c2a768fdd44ee4a9339a9b0b130049139b8ce3c01d2ce09f67f5a68048d477c", size = 229455, upload-time = "2026-04-02T09:26:14.941Z" }, - { url = "https://files.pythonhosted.org/packages/54/bb/8fb0a946296ea96a488928bdce8ef99023998c48e4713af533e9bb98ef07/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:1a87ca9d5df6fe460483d9a5bbf2b18f620cbed41b432e2bddb686228282d10b", size = 210036, upload-time = "2026-04-02T09:26:16.478Z" }, - { url = "https://files.pythonhosted.org/packages/9a/bc/015b2387f913749f82afd4fcba07846d05b6d784dd16123cb66860e0237d/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:d635aab80466bc95771bb78d5370e74d36d1fe31467b6b29b8b57b2a3cd7d22c", size = 224739, upload-time = "2026-04-02T09:26:17.751Z" }, - { url = "https://files.pythonhosted.org/packages/17/ab/63133691f56baae417493cba6b7c641571a2130eb7bceba6773367ab9ec5/charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ae196f021b5e7c78e918242d217db021ed2a6ace2bc6ae94c0fc596221c7f58d", size = 216277, upload-time = "2026-04-02T09:26:18.981Z" }, - { url = "https://files.pythonhosted.org/packages/06/6d/3be70e827977f20db77c12a97e6a9f973631a45b8d186c084527e53e77a4/charset_normalizer-3.4.7-cp311-cp311-win32.whl", hash = "sha256:adb2597b428735679446b46c8badf467b4ca5f5056aae4d51a19f9570301b1ad", size = 147819, upload-time = "2026-04-02T09:26:20.295Z" }, - { url = "https://files.pythonhosted.org/packages/20/d9/5f67790f06b735d7c7637171bbfd89882ad67201891b7275e51116ed8207/charset_normalizer-3.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:8e385e4267ab76874ae30db04c627faaaf0b509e1ccc11a95b3fc3e83f855c00", size = 159281, upload-time = "2026-04-02T09:26:21.74Z" }, - { url = "https://files.pythonhosted.org/packages/ca/83/6413f36c5a34afead88ce6f66684d943d91f233d76dd083798f9602b75ae/charset_normalizer-3.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:d4a48e5b3c2a489fae013b7589308a40146ee081f6f509e047e0e096084ceca1", size = 147843, upload-time = "2026-04-02T09:26:22.901Z" }, - { url = "https://files.pythonhosted.org/packages/0c/eb/4fc8d0a7110eb5fc9cc161723a34a8a6c200ce3b4fbf681bc86feee22308/charset_normalizer-3.4.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46", size = 311328, upload-time = "2026-04-02T09:26:24.331Z" }, - { url = "https://files.pythonhosted.org/packages/f8/e3/0fadc706008ac9d7b9b5be6dc767c05f9d3e5df51744ce4cc9605de7b9f4/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2", size = 208061, upload-time = "2026-04-02T09:26:25.568Z" }, - { url = "https://files.pythonhosted.org/packages/42/f0/3dd1045c47f4a4604df85ec18ad093912ae1344ac706993aff91d38773a2/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b", size = 229031, upload-time = "2026-04-02T09:26:26.865Z" }, - { url = "https://files.pythonhosted.org/packages/dc/67/675a46eb016118a2fbde5a277a5d15f4f69d5f3f5f338e5ee2f8948fcf43/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a", size = 225239, upload-time = "2026-04-02T09:26:28.044Z" }, - { url = "https://files.pythonhosted.org/packages/4b/f8/d0118a2f5f23b02cd166fa385c60f9b0d4f9194f574e2b31cef350ad7223/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116", size = 216589, upload-time = "2026-04-02T09:26:29.239Z" }, - { url = "https://files.pythonhosted.org/packages/b1/f1/6d2b0b261b6c4ceef0fcb0d17a01cc5bc53586c2d4796fa04b5c540bc13d/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb", size = 202733, upload-time = "2026-04-02T09:26:30.5Z" }, - { url = "https://files.pythonhosted.org/packages/6f/c0/7b1f943f7e87cc3db9626ba17807d042c38645f0a1d4415c7a14afb5591f/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1", size = 212652, upload-time = "2026-04-02T09:26:31.709Z" }, - { url = "https://files.pythonhosted.org/packages/38/dd/5a9ab159fe45c6e72079398f277b7d2b523e7f716acc489726115a910097/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15", size = 211229, upload-time = "2026-04-02T09:26:33.282Z" }, - { url = "https://files.pythonhosted.org/packages/d5/ff/531a1cad5ca855d1c1a8b69cb71abfd6d85c0291580146fda7c82857caa1/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5", size = 203552, upload-time = "2026-04-02T09:26:34.845Z" }, - { url = "https://files.pythonhosted.org/packages/c1/4c/a5fb52d528a8ca41f7598cb619409ece30a169fbdf9cdce592e53b46c3a6/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d", size = 230806, upload-time = "2026-04-02T09:26:36.152Z" }, - { url = "https://files.pythonhosted.org/packages/59/7a/071feed8124111a32b316b33ae4de83d36923039ef8cf48120266844285b/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7", size = 212316, upload-time = "2026-04-02T09:26:37.672Z" }, - { url = "https://files.pythonhosted.org/packages/fd/35/f7dba3994312d7ba508e041eaac39a36b120f32d4c8662b8814dab876431/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464", size = 227274, upload-time = "2026-04-02T09:26:38.93Z" }, - { url = "https://files.pythonhosted.org/packages/8a/2d/a572df5c9204ab7688ec1edc895a73ebded3b023bb07364710b05dd1c9be/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49", size = 218468, upload-time = "2026-04-02T09:26:40.17Z" }, - { url = "https://files.pythonhosted.org/packages/86/eb/890922a8b03a568ca2f336c36585a4713c55d4d67bf0f0c78924be6315ca/charset_normalizer-3.4.7-cp312-cp312-win32.whl", hash = "sha256:2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c", size = 148460, upload-time = "2026-04-02T09:26:41.416Z" }, - { url = "https://files.pythonhosted.org/packages/35/d9/0e7dffa06c5ab081f75b1b786f0aefc88365825dfcd0ac544bdb7b2b6853/charset_normalizer-3.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6", size = 159330, upload-time = "2026-04-02T09:26:42.554Z" }, - { url = "https://files.pythonhosted.org/packages/9e/5d/481bcc2a7c88ea6b0878c299547843b2521ccbc40980cb406267088bc701/charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d", size = 147828, upload-time = "2026-04-02T09:26:44.075Z" }, - { url = "https://files.pythonhosted.org/packages/c1/3b/66777e39d3ae1ddc77ee606be4ec6d8cbd4c801f65e5a1b6f2b11b8346dd/charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063", size = 309627, upload-time = "2026-04-02T09:26:45.198Z" }, - { url = "https://files.pythonhosted.org/packages/2e/4e/b7f84e617b4854ade48a1b7915c8ccfadeba444d2a18c291f696e37f0d3b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c", size = 207008, upload-time = "2026-04-02T09:26:46.824Z" }, - { url = "https://files.pythonhosted.org/packages/c4/bb/ec73c0257c9e11b268f018f068f5d00aa0ef8c8b09f7753ebd5f2880e248/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66", size = 228303, upload-time = "2026-04-02T09:26:48.397Z" }, - { url = "https://files.pythonhosted.org/packages/85/fb/32d1f5033484494619f701e719429c69b766bfc4dbc61aa9e9c8c166528b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18", size = 224282, upload-time = "2026-04-02T09:26:49.684Z" }, - { url = "https://files.pythonhosted.org/packages/fa/07/330e3a0dda4c404d6da83b327270906e9654a24f6c546dc886a0eb0ffb23/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd", size = 215595, upload-time = "2026-04-02T09:26:50.915Z" }, - { url = "https://files.pythonhosted.org/packages/e3/7c/fc890655786e423f02556e0216d4b8c6bcb6bdfa890160dc66bf52dee468/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215", size = 201986, upload-time = "2026-04-02T09:26:52.197Z" }, - { url = "https://files.pythonhosted.org/packages/d8/97/bfb18b3db2aed3b90cf54dc292ad79fdd5ad65c4eae454099475cbeadd0d/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859", size = 211711, upload-time = "2026-04-02T09:26:53.49Z" }, - { url = "https://files.pythonhosted.org/packages/6f/a5/a581c13798546a7fd557c82614a5c65a13df2157e9ad6373166d2a3e645d/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8", size = 210036, upload-time = "2026-04-02T09:26:54.975Z" }, - { url = "https://files.pythonhosted.org/packages/8c/bf/b3ab5bcb478e4193d517644b0fb2bf5497fbceeaa7a1bc0f4d5b50953861/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5", size = 202998, upload-time = "2026-04-02T09:26:56.303Z" }, - { url = "https://files.pythonhosted.org/packages/e7/4e/23efd79b65d314fa320ec6017b4b5834d5c12a58ba4610aa353af2e2f577/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832", size = 230056, upload-time = "2026-04-02T09:26:57.554Z" }, - { url = "https://files.pythonhosted.org/packages/b9/9f/1e1941bc3f0e01df116e68dc37a55c4d249df5e6fa77f008841aef68264f/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6", size = 211537, upload-time = "2026-04-02T09:26:58.843Z" }, - { url = "https://files.pythonhosted.org/packages/80/0f/088cbb3020d44428964a6c97fe1edfb1b9550396bf6d278330281e8b709c/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48", size = 226176, upload-time = "2026-04-02T09:27:00.437Z" }, - { url = "https://files.pythonhosted.org/packages/6a/9f/130394f9bbe06f4f63e22641d32fc9b202b7e251c9aef4db044324dac493/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a", size = 217723, upload-time = "2026-04-02T09:27:02.021Z" }, - { url = "https://files.pythonhosted.org/packages/73/55/c469897448a06e49f8fa03f6caae97074fde823f432a98f979cc42b90e69/charset_normalizer-3.4.7-cp313-cp313-win32.whl", hash = "sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e", size = 148085, upload-time = "2026-04-02T09:27:03.192Z" }, - { url = "https://files.pythonhosted.org/packages/5d/78/1b74c5bbb3f99b77a1715c91b3e0b5bdb6fe302d95ace4f5b1bec37b0167/charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110", size = 158819, upload-time = "2026-04-02T09:27:04.454Z" }, - { url = "https://files.pythonhosted.org/packages/68/86/46bd42279d323deb8687c4a5a811fd548cb7d1de10cf6535d099877a9a9f/charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b", size = 147915, upload-time = "2026-04-02T09:27:05.971Z" }, - { url = "https://files.pythonhosted.org/packages/97/c8/c67cb8c70e19ef1960b97b22ed2a1567711de46c4ddf19799923adc836c2/charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0", size = 309234, upload-time = "2026-04-02T09:27:07.194Z" }, - { url = "https://files.pythonhosted.org/packages/99/85/c091fdee33f20de70d6c8b522743b6f831a2f1cd3ff86de4c6a827c48a76/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1c2aed2e5e41f24ea8ef1590b8e848a79b56f3a5564a65ceec43c9d692dc7d8a", size = 208042, upload-time = "2026-04-02T09:27:08.749Z" }, - { url = "https://files.pythonhosted.org/packages/87/1c/ab2ce611b984d2fd5d86a5a8a19c1ae26acac6bad967da4967562c75114d/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:54523e136b8948060c0fa0bc7b1b50c32c186f2fceee897a495406bb6e311d2b", size = 228706, upload-time = "2026-04-02T09:27:09.951Z" }, - { url = "https://files.pythonhosted.org/packages/a8/29/2b1d2cb00bf085f59d29eb773ce58ec2d325430f8c216804a0a5cd83cbca/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:715479b9a2802ecac752a3b0efa2b0b60285cf962ee38414211abdfccc233b41", size = 224727, upload-time = "2026-04-02T09:27:11.175Z" }, - { url = "https://files.pythonhosted.org/packages/47/5c/032c2d5a07fe4d4855fea851209cca2b6f03ebeb6d4e3afdb3358386a684/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e", size = 215882, upload-time = "2026-04-02T09:27:12.446Z" }, - { url = "https://files.pythonhosted.org/packages/2c/c2/356065d5a8b78ed04499cae5f339f091946a6a74f91e03476c33f0ab7100/charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:c45e9440fb78f8ddabcf714b68f936737a121355bf59f3907f4e17721b9d1aae", size = 200860, upload-time = "2026-04-02T09:27:13.721Z" }, - { url = "https://files.pythonhosted.org/packages/0c/cd/a32a84217ced5039f53b29f460962abb2d4420def55afabe45b1c3c7483d/charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3534e7dcbdcf757da6b85a0bbf5b6868786d5982dd959b065e65481644817a18", size = 211564, upload-time = "2026-04-02T09:27:15.272Z" }, - { url = "https://files.pythonhosted.org/packages/44/86/58e6f13ce26cc3b8f4a36b94a0f22ae2f00a72534520f4ae6857c4b81f89/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e8ac484bf18ce6975760921bb6148041faa8fef0547200386ea0b52b5d27bf7b", size = 211276, upload-time = "2026-04-02T09:27:16.834Z" }, - { url = "https://files.pythonhosted.org/packages/8f/fe/d17c32dc72e17e155e06883efa84514ca375f8a528ba2546bee73fc4df81/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:a5fe03b42827c13cdccd08e6c0247b6a6d4b5e3cdc53fd1749f5896adcdc2356", size = 201238, upload-time = "2026-04-02T09:27:18.229Z" }, - { url = "https://files.pythonhosted.org/packages/6a/29/f33daa50b06525a237451cdb6c69da366c381a3dadcd833fa5676bc468b3/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:2d6eb928e13016cea4f1f21d1e10c1cebd5a421bc57ddf5b1142ae3f86824fab", size = 230189, upload-time = "2026-04-02T09:27:19.445Z" }, - { url = "https://files.pythonhosted.org/packages/b6/6e/52c84015394a6a0bdcd435210a7e944c5f94ea1055f5cc5d56c5fe368e7b/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:e74327fb75de8986940def6e8dee4f127cc9752bee7355bb323cc5b2659b6d46", size = 211352, upload-time = "2026-04-02T09:27:20.79Z" }, - { url = "https://files.pythonhosted.org/packages/8c/d7/4353be581b373033fb9198bf1da3cf8f09c1082561e8e922aa7b39bf9fe8/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d6038d37043bced98a66e68d3aa2b6a35505dc01328cd65217cefe82f25def44", size = 227024, upload-time = "2026-04-02T09:27:22.063Z" }, - { url = "https://files.pythonhosted.org/packages/30/45/99d18aa925bd1740098ccd3060e238e21115fffbfdcb8f3ece837d0ace6c/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7579e913a5339fb8fa133f6bbcfd8e6749696206cf05acdbdca71a1b436d8e72", size = 217869, upload-time = "2026-04-02T09:27:23.486Z" }, - { url = "https://files.pythonhosted.org/packages/5c/05/5ee478aa53f4bb7996482153d4bfe1b89e0f087f0ab6b294fcf92d595873/charset_normalizer-3.4.7-cp314-cp314-win32.whl", hash = "sha256:5b77459df20e08151cd6f8b9ef8ef1f961ef73d85c21a555c7eed5b79410ec10", size = 148541, upload-time = "2026-04-02T09:27:25.146Z" }, - { url = "https://files.pythonhosted.org/packages/48/77/72dcb0921b2ce86420b2d79d454c7022bf5be40202a2a07906b9f2a35c97/charset_normalizer-3.4.7-cp314-cp314-win_amd64.whl", hash = "sha256:92a0a01ead5e668468e952e4238cccd7c537364eb7d851ab144ab6627dbbe12f", size = 159634, upload-time = "2026-04-02T09:27:26.642Z" }, - { url = "https://files.pythonhosted.org/packages/c6/a3/c2369911cd72f02386e4e340770f6e158c7980267da16af8f668217abaa0/charset_normalizer-3.4.7-cp314-cp314-win_arm64.whl", hash = "sha256:67f6279d125ca0046a7fd386d01b311c6363844deac3e5b069b514ba3e63c246", size = 148384, upload-time = "2026-04-02T09:27:28.271Z" }, - { url = "https://files.pythonhosted.org/packages/94/09/7e8a7f73d24dba1f0035fbbf014d2c36828fc1bf9c88f84093e57d315935/charset_normalizer-3.4.7-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:effc3f449787117233702311a1b7d8f59cba9ced946ba727bdc329ec69028e24", size = 330133, upload-time = "2026-04-02T09:27:29.474Z" }, - { url = "https://files.pythonhosted.org/packages/8d/da/96975ddb11f8e977f706f45cddd8540fd8242f71ecdb5d18a80723dcf62c/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fbccdc05410c9ee21bbf16a35f4c1d16123dcdeb8a1d38f33654fa21d0234f79", size = 216257, upload-time = "2026-04-02T09:27:30.793Z" }, - { url = "https://files.pythonhosted.org/packages/e5/e8/1d63bf8ef2d388e95c64b2098f45f84758f6d102a087552da1485912637b/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:733784b6d6def852c814bce5f318d25da2ee65dd4839a0718641c696e09a2960", size = 234851, upload-time = "2026-04-02T09:27:32.44Z" }, - { url = "https://files.pythonhosted.org/packages/9b/40/e5ff04233e70da2681fa43969ad6f66ca5611d7e669be0246c4c7aaf6dc8/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a89c23ef8d2c6b27fd200a42aa4ac72786e7c60d40efdc76e6011260b6e949c4", size = 233393, upload-time = "2026-04-02T09:27:34.03Z" }, - { url = "https://files.pythonhosted.org/packages/be/c1/06c6c49d5a5450f76899992f1ee40b41d076aee9279b49cf9974d2f313d5/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c114670c45346afedc0d947faf3c7f701051d2518b943679c8ff88befe14f8e", size = 223251, upload-time = "2026-04-02T09:27:35.369Z" }, - { url = "https://files.pythonhosted.org/packages/2b/9f/f2ff16fb050946169e3e1f82134d107e5d4ae72647ec8a1b1446c148480f/charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:a180c5e59792af262bf263b21a3c49353f25945d8d9f70628e73de370d55e1e1", size = 206609, upload-time = "2026-04-02T09:27:36.661Z" }, - { url = "https://files.pythonhosted.org/packages/69/d5/a527c0cd8d64d2eab7459784fb4169a0ac76e5a6fc5237337982fd61347e/charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3c9a494bc5ec77d43cea229c4f6db1e4d8fe7e1bbffa8b6f0f0032430ff8ab44", size = 220014, upload-time = "2026-04-02T09:27:38.019Z" }, - { url = "https://files.pythonhosted.org/packages/7e/80/8a7b8104a3e203074dc9aa2c613d4b726c0e136bad1cc734594b02867972/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8d828b6667a32a728a1ad1d93957cdf37489c57b97ae6c4de2860fa749b8fc1e", size = 218979, upload-time = "2026-04-02T09:27:39.37Z" }, - { url = "https://files.pythonhosted.org/packages/02/9a/b759b503d507f375b2b5c153e4d2ee0a75aa215b7f2489cf314f4541f2c0/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:cf1493cd8607bec4d8a7b9b004e699fcf8f9103a9284cc94962cb73d20f9d4a3", size = 209238, upload-time = "2026-04-02T09:27:40.722Z" }, - { url = "https://files.pythonhosted.org/packages/c2/4e/0f3f5d47b86bdb79256e7290b26ac847a2832d9a4033f7eb2cd4bcf4bb5b/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0c96c3b819b5c3e9e165495db84d41914d6894d55181d2d108cc1a69bfc9cce0", size = 236110, upload-time = "2026-04-02T09:27:42.33Z" }, - { url = "https://files.pythonhosted.org/packages/96/23/bce28734eb3ed2c91dcf93abeb8a5cf393a7b2749725030bb630e554fdd8/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:752a45dc4a6934060b3b0dab47e04edc3326575f82be64bc4fc293914566503e", size = 219824, upload-time = "2026-04-02T09:27:43.924Z" }, - { url = "https://files.pythonhosted.org/packages/2c/6f/6e897c6984cc4d41af319b077f2f600fc8214eb2fe2d6bcb79141b882400/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:8778f0c7a52e56f75d12dae53ae320fae900a8b9b4164b981b9c5ce059cd1fcb", size = 233103, upload-time = "2026-04-02T09:27:45.348Z" }, - { url = "https://files.pythonhosted.org/packages/76/22/ef7bd0fe480a0ae9b656189ec00744b60933f68b4f42a7bb06589f6f576a/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ce3412fbe1e31eb81ea42f4169ed94861c56e643189e1e75f0041f3fe7020abe", size = 225194, upload-time = "2026-04-02T09:27:46.706Z" }, - { url = "https://files.pythonhosted.org/packages/c5/a7/0e0ab3e0b5bc1219bd80a6a0d4d72ca74d9250cb2382b7c699c147e06017/charset_normalizer-3.4.7-cp314-cp314t-win32.whl", hash = "sha256:c03a41a8784091e67a39648f70c5f97b5b6a37f216896d44d2cdcb82615339a0", size = 159827, upload-time = "2026-04-02T09:27:48.053Z" }, - { url = "https://files.pythonhosted.org/packages/7a/1d/29d32e0fb40864b1f878c7f5a0b343ae676c6e2b271a2d55cc3a152391da/charset_normalizer-3.4.7-cp314-cp314t-win_amd64.whl", hash = "sha256:03853ed82eeebbce3c2abfdbc98c96dc205f32a79627688ac9a27370ea61a49c", size = 174168, upload-time = "2026-04-02T09:27:49.795Z" }, - { url = "https://files.pythonhosted.org/packages/de/32/d92444ad05c7a6e41fb2036749777c163baf7a0301a040cb672d6b2b1ae9/charset_normalizer-3.4.7-cp314-cp314t-win_arm64.whl", hash = "sha256:c35abb8bfff0185efac5878da64c45dafd2b37fb0383add1be155a763c1f083d", size = 153018, upload-time = "2026-04-02T09:27:51.116Z" }, - { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, -] - -[[package]] -name = "click" -version = "8.4.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/76/d4/81420972a676e8ffea40450d8c8c92943e7218a78fe9b64359836cc9876b/click-8.4.2.tar.gz", hash = "sha256:9a6cea6e60b17ebe0a44c5cc636d94f09bd66142c1cd7d8b4cd731c4917a15f6", size = 338000, upload-time = "2026-06-24T17:45:15.148Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fb/e2/79c688af8b210d232694e31e59da9f6ec747bae31c3f5946e4e9b98860d5/click-8.4.2-py3-none-any.whl", hash = "sha256:e6f9f66136c816745b9d65817da91d61d957fb16e02e4dcd0552553c5a197b76", size = 119243, upload-time = "2026-06-24T17:45:13.73Z" }, -] - [[package]] name = "colorama" version = "0.4.6" @@ -409,151 +123,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0c/58/bd257695f39d05594ca4ad60df5bcb7e32247f9951fd09a9b8edb82d1daa/contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77", size = 225315, upload-time = "2025-07-26T12:02:58.801Z" }, ] -[[package]] -name = "coverage" -version = "7.14.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b4/91/0a7c28934e50d8ac9a7b117712d176f2953c3170bccced5eaacfa3e96175/coverage-7.14.3.tar.gz", hash = "sha256:1a7563a443f3d53fdeb040ec8c9f7466aed7ca3dc5891aa09d3ca3625fa4387f", size = 924398, upload-time = "2026-06-22T23:10:25.584Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f1/24/efb17eb94018dd3415d0e8a76a4786a866e8964aa9c50f033399d23939c2/coverage-7.14.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e574801e1d643561594aa021206c46d80b257e9853087090ba97bed8b0a509d3", size = 220501, upload-time = "2026-06-22T23:08:02.182Z" }, - { url = "https://files.pythonhosted.org/packages/76/93/32f1bfca6cdd34259c8af42820a034b7a28dfb44969a13ed38c17e0ba5b0/coverage-7.14.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f82b6bb7d75a2613e85d07cefa3a8c973d0544a8993337f6e2728e4a1e94c305", size = 221008, upload-time = "2026-06-22T23:08:03.701Z" }, - { url = "https://files.pythonhosted.org/packages/eb/88/0d0f974855ff905d15a64f7873d00bdc4182e2736267486c6634f4af293c/coverage-7.14.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:a2335ea5fed26af2e831094964fa3f8fae60b45f7e37fcc2d3b615b2add3ad87", size = 251420, upload-time = "2026-06-22T23:08:05.211Z" }, - { url = "https://files.pythonhosted.org/packages/39/7f/117dd2ec65e4140576f8ef991d88220f9b806769f7a8c20e0550c0f924e2/coverage-7.14.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fbb8c3a98e779013786ae01d229662aeacbc77100efbd3f2f245219ace5af700", size = 253331, upload-time = "2026-06-22T23:08:06.672Z" }, - { url = "https://files.pythonhosted.org/packages/87/55/f0bd6d6538e3f16829fb8a44b6c0d2fe9da638bbfdd6a20f8b5da8f4fa81/coverage-7.14.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ac082660de8f429ba0ea363595abb838998570b9a7546777c60f413ab902bbde", size = 255441, upload-time = "2026-06-22T23:08:08.208Z" }, - { url = "https://files.pythonhosted.org/packages/1e/98/aa71f7879019c846a8a9662579ea4484b0202cf1e252ffeed647075e7eca/coverage-7.14.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8ac012839ff7e396030f1e94e10553a431d14e4de2ab65cb3acb72bbd5628ca2", size = 257398, upload-time = "2026-06-22T23:08:09.749Z" }, - { url = "https://files.pythonhosted.org/packages/f3/4f/5fd367e59844190f5965015d7bee899e67a89d13eb2760118479bf836f2f/coverage-7.14.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5952f8c1bda2a5347154450379316e6dfa4d934d62ca35f6784451e6f55074fb", size = 251558, upload-time = "2026-06-22T23:08:11.37Z" }, - { url = "https://files.pythonhosted.org/packages/8f/de/5383a6ee5a6376701fe07d980fa8e4a66c0c377fead16712720340d701a3/coverage-7.14.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8cf0f2509acb4619e2471a1951089054dd58ebea7a912066d2ea56dd4c24ca4a", size = 253134, upload-time = "2026-06-22T23:08:13.04Z" }, - { url = "https://files.pythonhosted.org/packages/01/99/09542b1a99f788e3daec7f0fadc288821e71aca9ea298d51bfa1ba79fed5/coverage-7.14.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2e41fd3aab806770008279a93879b0924b16247e09ab537c043d08bbca53b4ab", size = 251195, upload-time = "2026-06-22T23:08:14.606Z" }, - { url = "https://files.pythonhosted.org/packages/02/9d/722fe8c13f0fbb064491b9e8656e56a606286792e5068c47ca1042e773e8/coverage-7.14.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f0a47095963cfe054e0df178daca95aec21e680d6076da807c3add28dfe920f7", size = 254959, upload-time = "2026-06-22T23:08:16.431Z" }, - { url = "https://files.pythonhosted.org/packages/fb/58/943627179ff1d82da9e54d0a5b0bb907bb19cf19515599ccd921de50b469/coverage-7.14.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:a090cbf9521e78ffdb2fcf448b72902afe9f5923ff6a12d5c0d0120200348af9", size = 250914, upload-time = "2026-06-22T23:08:18.03Z" }, - { url = "https://files.pythonhosted.org/packages/a5/d4/803efcbf9ae5567454a0c71e983589529448e2704ee0da2dc0163d482f18/coverage-7.14.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4d310baf69a4fbe8a098ce727e4808a34866ac718a6f759ae659cbd3221358bc", size = 251824, upload-time = "2026-06-22T23:08:19.704Z" }, - { url = "https://files.pythonhosted.org/packages/32/79/3f78ea9563132746eed5cecb75d2e576f9d8fec45a47242b5ae0950b82a3/coverage-7.14.3-cp311-cp311-win32.whl", hash = "sha256:74fdd718d88fe144f4579b8747873a07ec3f04cb837d5faec5a25d9e22fa31a8", size = 222594, upload-time = "2026-06-22T23:08:21.311Z" }, - { url = "https://files.pythonhosted.org/packages/85/22/9ebbc5a2ab42ac5d0eea1f48648629e1de9bbe41ec243ed6b93d55a5a53f/coverage-7.14.3-cp311-cp311-win_amd64.whl", hash = "sha256:cc96aa922e21d4bc5d5ed3c915cef27dfcbc13686f47d5e378d647fbfba655a2", size = 223073, upload-time = "2026-06-22T23:08:23.318Z" }, - { url = "https://files.pythonhosted.org/packages/71/af/69d5fcc16cb555153f99cec5467922f226be0369f7335a9506856d2a7bd0/coverage-7.14.3-cp311-cp311-win_arm64.whl", hash = "sha256:c66f9f9d4f1e9712eb9b1de5310f881d4e2188cfcba5065e1a8490f38687f2c4", size = 222617, upload-time = "2026-06-22T23:08:25.054Z" }, - { url = "https://files.pythonhosted.org/packages/bd/b0/8a911f6ffe6974dac4df95b468ab9a2899d0e59f0f99a489afeec39f00bc/coverage-7.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3d74ff26299c4879ce3a4d826f9d3d4d556fd285fde7bbce3c0ef5a8ab1cec24", size = 220672, upload-time = "2026-06-22T23:08:26.621Z" }, - { url = "https://files.pythonhosted.org/packages/36/16/0fc0cb52538783dbbae0934b834f5a58fd5354380ee6cad4a07b15dc845d/coverage-7.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:96150a9cf3468ea20f0bc5d0e21b3df8972c31480ef90fa7614b773cc6429665", size = 221035, upload-time = "2026-06-22T23:08:28.372Z" }, - { url = "https://files.pythonhosted.org/packages/77/e2/421ccfbb48335ac49e93301478cf5d623b0c2bf1c0cadd8e2b2fc6c0c710/coverage-7.14.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:27d07a46500ba23515b838dbcf52512026af04090755cf6cc64166d88c9b9a1a", size = 252540, upload-time = "2026-06-22T23:08:30.226Z" }, - { url = "https://files.pythonhosted.org/packages/06/c2/05b8c890097c61a7f4406b35396b997a635200ded0339eda83dfbe526c5f/coverage-7.14.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:621e13c6108234d7960aaf5762ab5c3c00f33c30c15af06dcbff0c73bf112727", size = 255274, upload-time = "2026-06-22T23:08:31.876Z" }, - { url = "https://files.pythonhosted.org/packages/dc/be/b6d9efe447f8ba3c3c854195f326bd64c54b907d936cd2fdebf8767ec72e/coverage-7.14.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4b60ca6d8af70473491a15a343cbabab2e8f9ea66a4376e81c7aa24876a6f977", size = 256389, upload-time = "2026-06-22T23:08:33.843Z" }, - { url = "https://files.pythonhosted.org/packages/d4/3c/f26e50acc429e608bc534ac06f0a3c169019c798178ec5e9de3dbc0df9c9/coverage-7.14.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c90a7cdd5e380e1ce02f19792e2ac2fbfbf177e35a27e69fd3e873b30d895c0c", size = 258648, upload-time = "2026-06-22T23:08:35.481Z" }, - { url = "https://files.pythonhosted.org/packages/9e/a2/01c1fabf816c8e1dae197e258edf878a3d3ddc86fbda34b76e5794277d8f/coverage-7.14.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5d788e5fd55347eef06ca0732c77d04a264de67e8ff24631270cdff3767a60cf", size = 252949, upload-time = "2026-06-22T23:08:37.562Z" }, - { url = "https://files.pythonhosted.org/packages/89/c6/941166dd79c31fd44a13063780ae8d552eee0089a0a0930b9bdb7df554ed/coverage-7.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:62c7f79db2851c95ef020e5d28b97afde3daf9f7febcd35b53e05638f729063f", size = 254310, upload-time = "2026-06-22T23:08:39.174Z" }, - { url = "https://files.pythonhosted.org/packages/10/31/80b1fd028201a961033ce95be3cd1e39e521b3762e6b4a1ac1616cb291e7/coverage-7.14.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:90f7608aeb5d9b60b523b9fb2a4ee1973867cc4865a3f26fe6c7577073b70205", size = 252453, upload-time = "2026-06-22T23:08:40.84Z" }, - { url = "https://files.pythonhosted.org/packages/5f/85/c3d9addd94c4b524f3f4af0232075f5fe7170ce99a1386edff803e5934db/coverage-7.14.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:1e3b91f9c4740aeb571ecf82e5e8d8e4ab62d34fcb5a5d4e5baa38c6f7d2857c", size = 256522, upload-time = "2026-06-22T23:08:42.494Z" }, - { url = "https://files.pythonhosted.org/packages/91/14/e5a0575f73795af3a7a9ae13dadf812e17d32422896839987dc3f86947e1/coverage-7.14.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:c946099774a7699de03cbd0ff0a64e21aed4525eed9d959adde4afe6d15758ef", size = 252023, upload-time = "2026-06-22T23:08:44.243Z" }, - { url = "https://files.pythonhosted.org/packages/38/9b/9652ee531937ce3b8a63a8896885b2b4a2d56adc30e53c9540c666286d88/coverage-7.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:16b206e521feb8b7133a45754643dead0538489cf8b783b90cf5f4e3299625fd", size = 253893, upload-time = "2026-06-22T23:08:46.113Z" }, - { url = "https://files.pythonhosted.org/packages/b1/05/42678841c8c38e4b08bdfc48269f5a16dfbf5806000fe6a89b4cece3c691/coverage-7.14.3-cp312-cp312-win32.whl", hash = "sha256:ea3169c7116eb6cdf7608c6c7da9ecfcb3da40688e3a510fac2d1d2bafd6dc35", size = 222734, upload-time = "2026-06-22T23:08:47.858Z" }, - { url = "https://files.pythonhosted.org/packages/df/87/07a4fcee55177a25f1b52331a8e92cf4f2c53b1a9c75ce2981fd59c684ad/coverage-7.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:7ea52fc08f007bcc494d4bb3df3851e95843d881860ba38fe2c64dc100db5e7d", size = 223266, upload-time = "2026-06-22T23:08:49.494Z" }, - { url = "https://files.pythonhosted.org/packages/aa/34/2b8b66a989282ea7b370beb49f50bab29470dc30bb0b03935b6b802782f7/coverage-7.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:8cec0ad652ec57790970d817490105bd917d783c2f7b38d6b58a0ca312e1a336", size = 222655, upload-time = "2026-06-22T23:08:51.766Z" }, - { url = "https://files.pythonhosted.org/packages/a9/83/7fefbf5df23ed2b7f489907564a7b34b9b07098128e12e0fdfa92626e456/coverage-7.14.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:47968988b367990ae4ab17523790c38cd125e02c6bfd379b6022be2d40bdc38c", size = 220699, upload-time = "2026-06-22T23:08:53.522Z" }, - { url = "https://files.pythonhosted.org/packages/31/e6/38c3653ff6d56d704b29241362387ca824e38e15b76fdcb7096538195790/coverage-7.14.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0ee68f5c34812780f3a7063382c0a9fcbb99985b7ddcdcaa626e4f3fb2e0783a", size = 221068, upload-time = "2026-06-22T23:08:55.571Z" }, - { url = "https://files.pythonhosted.org/packages/20/86/4f5c45d51c5cd10a128933f0fd235393c9146abbfd2ce2dfa68b3267ead3/coverage-7.14.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:fa9e5c6857a7e80fa22ace5cf3550ae392bbfc322f1d8dd2d2d5a8be38cec027", size = 252060, upload-time = "2026-06-22T23:08:57.464Z" }, - { url = "https://files.pythonhosted.org/packages/82/50/dfce42eff2cecabcd5a9bbad5489449c87db3415f408d23ffee417ce01f6/coverage-7.14.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:98a0859b0e98e43e1178a9402e19c8127766b14f7109a374d976e5a62c0e5c73", size = 254657, upload-time = "2026-06-22T23:08:59.453Z" }, - { url = "https://files.pythonhosted.org/packages/ba/d2/639ceb1bc8038fd0d66768278d5dc22df3391918b8278c2a21aa2602a531/coverage-7.14.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:69918344541ed9c8368566c2adc03c0e33d4550d7faa87d1b35e49b6a3286ea9", size = 255892, upload-time = "2026-06-22T23:09:01.291Z" }, - { url = "https://files.pythonhosted.org/packages/8b/96/002094a10e113512500dc1e10430a449417e17b0f90f7d496bcb820208b7/coverage-7.14.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b7f300ac92cd4b570724c8ffbbd0c130fee298d2447f41d5a3abf58976fae1de", size = 258026, upload-time = "2026-06-22T23:09:03.017Z" }, - { url = "https://files.pythonhosted.org/packages/0b/ec/286a5d2fad9c4bee59bd724feeb7d5bf8303c6c9200b51d1dd945a9c72b0/coverage-7.14.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:11a7ec9f97ab950f4c5af62229befc7faf208fdbc0116d3902d7e306cf2c5abd", size = 252285, upload-time = "2026-06-22T23:09:04.773Z" }, - { url = "https://files.pythonhosted.org/packages/d9/7d/a17753a0b12dd48d0d50f5fab079ad99d3be1eac790494d89f3a417ca0b9/coverage-7.14.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a571bd889cd36c5922ce8e42e059f9d37d02301531d11374afa4c87a578625d5", size = 254023, upload-time = "2026-06-22T23:09:06.513Z" }, - { url = "https://files.pythonhosted.org/packages/86/ef/a76c6ceba6a2c313f905310abf2701d534cada22d372db11731831e9e209/coverage-7.14.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:de76caefc8deabb0dd1678b6a980be97d14c8d87e213ac194dbf8b09e96d63fb", size = 251989, upload-time = "2026-06-22T23:09:08.382Z" }, - { url = "https://files.pythonhosted.org/packages/d9/39/353013a75fec0fb49f7553519f9d52b4441e902e5178c93f38eb6c07cedb/coverage-7.14.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:d20a15c622194234161535459affa8f7905830391c9ccfa060d495dbfe3a1c7f", size = 256144, upload-time = "2026-06-22T23:09:10.369Z" }, - { url = "https://files.pythonhosted.org/packages/29/0e/613878555d734def11c5b20a2701a15cb3781b9e9ea749da27c5f436e928/coverage-7.14.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:b488bd4b23397db62e7a9459129d01ff06a846582a732efd24834b24a6ada498", size = 251808, upload-time = "2026-06-22T23:09:12.057Z" }, - { url = "https://files.pythonhosted.org/packages/af/76/359c058c9cfdcf1e8b107663881225b03b364a320017eda24a2a66e55102/coverage-7.14.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a3693b4153394d265f44fb855fdc80e72403024d4d6f91c4871b334d028e4e0", size = 253579, upload-time = "2026-06-22T23:09:13.858Z" }, - { url = "https://files.pythonhosted.org/packages/1d/d9/4ba2f060933a30ebe363cef9f67a365b0a317e580c0d5d9169d56a73ef1c/coverage-7.14.3-cp313-cp313-win32.whl", hash = "sha256:338b19131ab1a6b767b462bfcbaa692e7ae22f24463e39d49b02a83410ff6b37", size = 222741, upload-time = "2026-06-22T23:09:15.636Z" }, - { url = "https://files.pythonhosted.org/packages/76/e8/196ebc25d8f34c06d43a6e9c8513c9266ef8dbf3b5672beb1a00cf5e29fa/coverage-7.14.3-cp313-cp313-win_amd64.whl", hash = "sha256:b3d77f7f196abdef7e01415de1bce09f216189e83e58159cfeef2b92d0464994", size = 223283, upload-time = "2026-06-22T23:09:17.478Z" }, - { url = "https://files.pythonhosted.org/packages/7c/af/51d2aac6417523a286f10fb25f09eb9518a84df9f1151e93ff6871f34849/coverage-7.14.3-cp313-cp313-win_arm64.whl", hash = "sha256:e6230e688c7c3e65cedd41a774eb4ec221adc6bfee13768231015b702d5e4150", size = 222678, upload-time = "2026-06-22T23:09:19.7Z" }, - { url = "https://files.pythonhosted.org/packages/61/56/14e3b97facbfa1304dd19e676e26599ad359f04714bed32f7f1c5a88efdc/coverage-7.14.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:605ab2b566a22bd94834529d66d295c364aba84afd3e5498285c7a524017b1fc", size = 220741, upload-time = "2026-06-22T23:09:21.616Z" }, - { url = "https://files.pythonhosted.org/packages/12/1d/db378b5cca433b90b893f26dab728b280ddd89f272a1fdfed4aeaa05c686/coverage-7.14.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:a3c2134809e80fac091bfed18a6991b5a5eb5df5ae32b17ac4f4f99864b73dd7", size = 221068, upload-time = "2026-06-22T23:09:23.452Z" }, - { url = "https://files.pythonhosted.org/packages/47/f0/3f8421b20d9c4fcd39be9a8ca3c3fda8bc204b44efbd09fede153afd3e2f/coverage-7.14.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:c02efd507227bde9969cab0db8f48890eb3b5dcad6afac57a4792df4133543ce", size = 252117, upload-time = "2026-06-22T23:09:25.458Z" }, - { url = "https://files.pythonhosted.org/packages/27/ca/59ea35fb99743549ec8b37eff141ece4431fea590c89e536ed8032ef45cf/coverage-7.14.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:1bb93c2aa61d2a5b38f1526546d95cf4132cb681e541a337bf8dfd092be816e5", size = 254622, upload-time = "2026-06-22T23:09:27.523Z" }, - { url = "https://files.pythonhosted.org/packages/c8/25/ec6de51ae7493b92a1cf74d1b763121c29636759167e2a593ba4db5881e4/coverage-7.14.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f502e948e03e866538048bba081c075caaa62e5bda6ea5b7432e45f587eb462a", size = 255968, upload-time = "2026-06-22T23:09:29.43Z" }, - { url = "https://files.pythonhosted.org/packages/5d/05/c8bfc77823f42b4664fb25842f13b567022f6f84a4c83c8ecbb16734b7cb/coverage-7.14.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9973ef2463f8e6cfb61a6324126bb3e17d67a85f22f58d856e583ea2e3ca6501", size = 258284, upload-time = "2026-06-22T23:09:31.397Z" }, - { url = "https://files.pythonhosted.org/packages/f6/15/1d1b242027124a32b26ef01f82018b8c4ef34ef174aa6aeba7b1eeef48e8/coverage-7.14.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9be4e7d4c5ca0427889f8f9d614bd630c2be741b1de7699bca3b2b6c0e41003e", size = 252143, upload-time = "2026-06-22T23:09:33.256Z" }, - { url = "https://files.pythonhosted.org/packages/74/b6/d2a9842fd2a5d7d27f1ac851c043a734a494ad75402c5331db3da79ed691/coverage-7.14.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a574912f3bde4b0619f6e97d01aa590b70998859244793769eb3a6df78ee56d3", size = 253976, upload-time = "2026-06-22T23:09:35.351Z" }, - { url = "https://files.pythonhosted.org/packages/fd/30/e1600ddf7e226db5558bb5323d2186fff00f505c4b764643ec89ce5d8175/coverage-7.14.3-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:e343fb086c9cd780b38622fea7c369acd64c1a0724312149b5d769c387a2b1f5", size = 251942, upload-time = "2026-06-22T23:09:37.313Z" }, - { url = "https://files.pythonhosted.org/packages/d9/2c/9159de64f9dd648e324328d588a44cfab1e331eb5259ce1141afe2a92dfb/coverage-7.14.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:3c68df8e61f1e09633fefc7538297145623957a048534368c9d212782aa5e845", size = 256220, upload-time = "2026-06-22T23:09:39.165Z" }, - { url = "https://files.pythonhosted.org/packages/91/67/b7f536cc2c124f48e91b22fbb741d2261f4e3d310faf6f76007f47566e5d/coverage-7.14.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:3e5b550a128419373c2f6cec28a244207013ef15f5cbcff6a5ca09d1dfaaf027", size = 251756, upload-time = "2026-06-22T23:09:41.056Z" }, - { url = "https://files.pythonhosted.org/packages/dd/ec/f3718038e2d4860c715a55428377ca7f6c75872caf98cabd982e1d76967d/coverage-7.14.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2bfc4dd0a912329eccc7484a7d0b2a38032b38c40663b1e1ac595f10c457954b", size = 253413, upload-time = "2026-06-22T23:09:43.306Z" }, - { url = "https://files.pythonhosted.org/packages/b8/a5/91f11efeef89b3cc9b30461128db15b0511ef813ab889a7b7ab636b3a497/coverage-7.14.3-cp314-cp314-win32.whl", hash = "sha256:0423d64c013057a06e70f070f073cec4b0cbc7d2b27f3c7007292f2ff1d52965", size = 222946, upload-time = "2026-06-22T23:09:45.261Z" }, - { url = "https://files.pythonhosted.org/packages/58/fd/98ac9f524d9ec378de831c034dbdeb544ca7ef7d2d9c9996daf232a037fd/coverage-7.14.3-cp314-cp314-win_amd64.whl", hash = "sha256:92c22e19ce64ca3f2ad751f16f14df1468b4c231bd6af97185063a9c292a0cb3", size = 223436, upload-time = "2026-06-22T23:09:47.177Z" }, - { url = "https://files.pythonhosted.org/packages/b4/a0/7cd612d650a772a0ae80144443406bf61981c896c3d57c9e6e79fb2cdbd1/coverage-7.14.3-cp314-cp314-win_arm64.whl", hash = "sha256:41de778bd41780586e2b04912079c73089ab5d839624e28db3bdb26de638da92", size = 222861, upload-time = "2026-06-22T23:09:49.384Z" }, - { url = "https://files.pythonhosted.org/packages/55/57/017353fab573779c0d00448e47d102edd36c792f7b6f233a4d89a7a08384/coverage-7.14.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:8427f370ca67db4c975d2a26acfc0e5783ca0b52444dbc50278ace0f35445949", size = 221474, upload-time = "2026-06-22T23:09:51.417Z" }, - { url = "https://files.pythonhosted.org/packages/69/92/90cf1f1a5c468a9c1b7ba2716e0e205293ad9b02f5f573a6de4318b15ba1/coverage-7.14.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d8e88f335544a47e22ae2e45b344772925ec65166555c958720d5ed971880891", size = 221738, upload-time = "2026-06-22T23:09:53.487Z" }, - { url = "https://files.pythonhosted.org/packages/a4/c0/4df964fa539f8399fd7679c09c472d73744de334686fd3f01e3a2465ce4e/coverage-7.14.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:beaab199b9e5ceaf5a225e16a9d4df136f2a1eae0a5c20de1e277c8a5225f388", size = 263101, upload-time = "2026-06-22T23:09:55.895Z" }, - { url = "https://files.pythonhosted.org/packages/06/76/e5d33b2576ae3bf2be2058cd1cae57774b61e400f2c3c58f3783dc2ffb4a/coverage-7.14.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b3ff255799f5a1676c71c1c32ec01fd043aa09d57b3d95764b24992757184784", size = 265225, upload-time = "2026-06-22T23:09:57.904Z" }, - { url = "https://files.pythonhosted.org/packages/61/d2/e52419afe391a39ba27fdefaf0737d8e34bf03faef6ab3b3006545bbd0d0/coverage-7.14.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:878832eaac515b62decfa76965aed558775f86bf1fc8cca76993c0c84ae31aed", size = 267643, upload-time = "2026-06-22T23:09:59.938Z" }, - { url = "https://files.pythonhosted.org/packages/58/7a/f2625d8d5006b6b20fba5afaef00b24a763fe96476ea798a3076cbc1f84e/coverage-7.14.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:611e62cb9386096d81b63e0a05330750268617231e7bd598e1fe77482a2c58a5", size = 268762, upload-time = "2026-06-22T23:10:01.943Z" }, - { url = "https://files.pythonhosted.org/packages/7d/bf/908024006bba57127354d74e938954b9c3cd765cc2e0412dc9c37b415cda/coverage-7.14.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:02c41de2a88011b893050fc9830267d927a50a215f7ad5ec17349db7090ccf26", size = 262208, upload-time = "2026-06-22T23:10:03.954Z" }, - { url = "https://files.pythonhosted.org/packages/34/a0/d4f9296441b909817442fdb26bd77a698f08272ec683a7394b00eb2e47a0/coverage-7.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:526ce9721116af23b1065089f0b75046fe521e7772ab94b641cd66b7a0421889", size = 265096, upload-time = "2026-06-22T23:10:05.936Z" }, - { url = "https://files.pythonhosted.org/packages/e8/da/4ae4f3f4e477b56a4ce1e5c48a35eff38a94b50130ce5bdc897024741cfc/coverage-7.14.3-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:e4ed44705ca4bead6fc977a8b741f2145608289b33c8a9b42a95d0f15aedbf4d", size = 262699, upload-time = "2026-06-22T23:10:07.973Z" }, - { url = "https://files.pythonhosted.org/packages/d8/7a/6927148073ff32856d78baa77b4ddc07a9be7e90020f9db0661c4ca523a1/coverage-7.14.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:2415902f385a23dcc4ccd26e0ba803249a169af6a930c003a4c715eeb9a5444e", size = 266433, upload-time = "2026-06-22T23:10:10.145Z" }, - { url = "https://files.pythonhosted.org/packages/f7/a7/774f658dbe9c4c3f5daa86a87e0459ac3832e4e3cc67affe078547f727b9/coverage-7.14.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:b75ee850fc2d7c831e883220c445b035f2224de2ba6103f1e56dbd237ab913f7", size = 261547, upload-time = "2026-06-22T23:10:12.191Z" }, - { url = "https://files.pythonhosted.org/packages/3d/14/a0c18c0376c43cbf973f43ef6ca20019c950597180e6396232f7b6a27102/coverage-7.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:dc9b4e35e7c3920e925ba7f14886fd5fbe481232754624e832ddba66c7535635", size = 263859, upload-time = "2026-06-22T23:10:14.492Z" }, - { url = "https://files.pythonhosted.org/packages/10/ac/43a3d0f460af524b131a6191805bc5d18b806ab4e828fbf82e8c8c3af446/coverage-7.14.3-cp314-cp314t-win32.whl", hash = "sha256:7b27c822a8161afbe48e99f1adfb098d270ae7e0f7d7b0555ce110529bdb69cc", size = 223250, upload-time = "2026-06-22T23:10:16.758Z" }, - { url = "https://files.pythonhosted.org/packages/3f/5f/d5e5c56b0712e96ce8f69fe7dbf229ff938b437bc50862743c8a0d2cea84/coverage-7.14.3-cp314-cp314t-win_amd64.whl", hash = "sha256:39e1dbbb6ff2c338e0196a482558a792a1de3aa64261196f5cdb3da016ad9cda", size = 224082, upload-time = "2026-06-22T23:10:19.23Z" }, - { url = "https://files.pythonhosted.org/packages/62/35/947cbd5be1d3bcbbdc43d6791de8a56c6501903311d42915ae06a82815f0/coverage-7.14.3-cp314-cp314t-win_arm64.whl", hash = "sha256:68520c90babfa2d560eca6d497921ed3a4f469623bd709733124491b2aa8ef3f", size = 223400, upload-time = "2026-06-22T23:10:21.24Z" }, - { url = "https://files.pythonhosted.org/packages/eb/e3/a0aa32bfa3a081951f60a23bc0e7b512891ef0eecda1153cf1d8ba36c6b1/coverage-7.14.3-py3-none-any.whl", hash = "sha256:fb7e18afb6e903c1a92401a2f0501ac277dca527bb9ca6fe1f691a8a0026a0e8", size = 212469, upload-time = "2026-06-22T23:10:23.405Z" }, -] - -[package.optional-dependencies] -toml = [ - { name = "tomli", marker = "python_full_version <= '3.11'" }, -] - -[[package]] -name = "cryptography" -version = "49.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "cffi", marker = "platform_python_implementation != 'PyPy'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/1f/99/d1c90d6041656cc6ee229dc99cd67fd0cd5aec3c5f7d72fffc27cc750054/cryptography-49.0.0.tar.gz", hash = "sha256:f89660a348f4f78a92366240a61404e337586ef7f5909a2fef59ca88ef505493", size = 854345, upload-time = "2026-06-12T20:02:30.512Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9b/22/adf66990e63584a68dfb50c24f48a125c07b1699899381c8151e63ed458c/cryptography-49.0.0-cp311-abi3-macosx_11_0_arm64.whl", hash = "sha256:966fe0e9c67490071f14c0d2b1cb2dfb3023c5ce39457343931415f08382f2db", size = 4032100, upload-time = "2026-06-12T20:02:32.143Z" }, - { url = "https://files.pythonhosted.org/packages/09/41/3797cfaf69cae04a13ee78ebd83f0678d9c02b4779d21ce24445326f1a69/cryptography-49.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:36d1709f992593689b45bda411498d62c6e365f2ca00b84657d4dadd24de16db", size = 4692978, upload-time = "2026-06-12T20:01:21.305Z" }, - { url = "https://files.pythonhosted.org/packages/e6/8b/43011f7ebe515a8aa20d61f290a326cd890c2e738e16e59eaff8d9c3a412/cryptography-49.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0e959b578856a3924bc0cbb710fc12c387b9412a951389f3ca61704a9e25f325", size = 4716422, upload-time = "2026-06-12T20:01:48.566Z" }, - { url = "https://files.pythonhosted.org/packages/4a/91/01ce7303a4579e6d3a6abef01bd322848e9ea7a219adcabc5048b9033571/cryptography-49.0.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:53ecee2e23f7169b6117e99fc8a944e5e50f79e69758a83b52a00cb98ab2b2d2", size = 4700503, upload-time = "2026-06-12T20:02:47.091Z" }, - { url = "https://files.pythonhosted.org/packages/62/99/a2c95cf8293f07491e9e27c20cc4dcd18176d944e674679adeb1d0173fd6/cryptography-49.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:2eda353d8a27bcbcaa4cbed18994a74ab4d19a2ca897db188ea269ab9b71419b", size = 5309779, upload-time = "2026-06-12T20:02:08.987Z" }, - { url = "https://files.pythonhosted.org/packages/20/2c/0622f20ff02b2ef32558733443805dc82fd4c275be01b2d19d14676f3a1b/cryptography-49.0.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:2afe9051da7ae7bd5905da5a949280c7d2bb75682e188f650a9d0f2756b834c6", size = 4749683, upload-time = "2026-06-12T20:02:03.335Z" }, - { url = "https://files.pythonhosted.org/packages/a3/5b/c5246635d5fd3b64e0d45ae10e99fd32fe9676a79915ccfe5a61ba9af1a5/cryptography-49.0.0-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:0b82e28ee398a386f0807bba7884d30f25218855690f45115831bcce5d90822c", size = 4337874, upload-time = "2026-06-12T20:02:54.323Z" }, - { url = "https://files.pythonhosted.org/packages/6d/88/05563c7fe2e914e87d1a536d06fe83e66b4e1d95cb593e05aea375531da8/cryptography-49.0.0-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:ccac2bfebc306b862133e3bb71f3f6ee8bb525240089b2d952e4144b3a6d5da7", size = 4700283, upload-time = "2026-06-12T20:01:34.822Z" }, - { url = "https://files.pythonhosted.org/packages/c4/b6/d7696e4e890d6ae1469935164c9e5215c557671cb78d6e3f458ccceaa632/cryptography-49.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:d0527ce944105f257f605a827d6ebead966c752038b6e8656abb9c5edee6fc68", size = 5265844, upload-time = "2026-06-12T20:01:24.09Z" }, - { url = "https://files.pythonhosted.org/packages/a9/3c/f3ad17eecc1a57b0ba236dc01f90e783c51f4a2f35f64777cc4f47a184b2/cryptography-49.0.0-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:cbc77da8c523d5abd028635ba850a6966fcee2c82e2bf65a41d1d8afe0f98be9", size = 4749290, upload-time = "2026-06-12T20:01:30.848Z" }, - { url = "https://files.pythonhosted.org/packages/4f/01/339573cf1023163a400b0b5d16f6d507de413b9f60be6fd1b77feeaf6737/cryptography-49.0.0-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:b87e65d263b3e5d3bb92a57e2a6638e2f31110fa7aa890c7b2dbba42248d0a3f", size = 4834612, upload-time = "2026-06-12T20:01:29.246Z" }, - { url = "https://files.pythonhosted.org/packages/71/fd/577302e213a1be9468f92d1afef66fcf1ef83d516819d9992ca547f592bd/cryptography-49.0.0-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:66ec79c3904820572d7e987abdf304281f141d37ad9a489b8e97066e7b9b6459", size = 4980804, upload-time = "2026-06-12T20:01:42.853Z" }, - { url = "https://files.pythonhosted.org/packages/1f/09/f42b1d190c5ba75f72062a387f8030d1d75f6ab035788f1d9c4b01de6525/cryptography-49.0.0-cp311-abi3-win_amd64.whl", hash = "sha256:e5dfc1e64de5677cec922ffa8da89c546d0415bf6efdf081842e5d44c84e1f0e", size = 3810026, upload-time = "2026-06-12T20:02:39.262Z" }, - { url = "https://files.pythonhosted.org/packages/ec/9e/db72b3ae7fc9cfad53e630e56c6ae83b9b6ff0bf3718ffb8012d20b3aabf/cryptography-49.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:73a205dce83953d131a4aa1e0fd917a2fd1c5b1eef251e9d7152efefcbf5caf7", size = 4013892, upload-time = "2026-06-12T20:02:10.735Z" }, - { url = "https://files.pythonhosted.org/packages/86/12/c48a424f38db03027be9f7ed5c7dc5de9933dbee992865f98b13727a009d/cryptography-49.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:196ecd6a36e4e9aa10270393bb98d8df88fccee0bf1e5128b91ae4eb4375896d", size = 4678835, upload-time = "2026-06-12T20:02:48.743Z" }, - { url = "https://files.pythonhosted.org/packages/68/28/8a3ad4653662c93fc44dc4e5d8fd374c25c42e07b34bbfbadf49cf57a5a8/cryptography-49.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7abcee80084cda3f7691f3eb1ce480d8df49cec637b429aa35986c1de71738aa", size = 4697239, upload-time = "2026-06-12T20:02:56.03Z" }, - { url = "https://files.pythonhosted.org/packages/a8/b2/2193fc74f81aee4f9b62733133b73b5176718932ed8f2e4b03fa040480a6/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:4ae387c9cb68ea569ca17e490d66d8142b81c3cc814bf179974b7d146e490bbb", size = 4685593, upload-time = "2026-06-12T20:02:50.666Z" }, - { url = "https://files.pythonhosted.org/packages/47/f1/1d3eaa243bfc5de4a187b22aa8c048b3e4980bfbe830ac46e6bac2e66947/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_ppc64le.whl", hash = "sha256:f37d847238971164fdbc68ade6f6574aecc9c0af714190e2083429ff68f4ce9d", size = 5289961, upload-time = "2026-06-12T20:01:46.468Z" }, - { url = "https://files.pythonhosted.org/packages/58/39/2d51306721330c486495853eda1c567880ff036de15a14c4b74f399934af/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:c2bc30226390d60ea19d9f82b19db005fe0452154a23c1c410c12ea801e43561", size = 4731145, upload-time = "2026-06-12T20:02:16.832Z" }, - { url = "https://files.pythonhosted.org/packages/17/50/983e838c7fd0d87fd8c969bcdd328edaf5f756e38df5281637424c155873/cryptography-49.0.0-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:07cab27cc7b7e0fd28e5e26bb9eeedde5c135c868b46de4a27845abe94af6122", size = 4321719, upload-time = "2026-06-12T20:02:52.611Z" }, - { url = "https://files.pythonhosted.org/packages/a7/f5/8f571d7e27c55bce9f76f026143bcb1e040a4233149ecca0bea5fa5dd5f7/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl", hash = "sha256:b20133d204d2bb56ba047642199603876c872026ca53e79c35b83772ab2cc505", size = 4685209, upload-time = "2026-06-12T20:02:07.282Z" }, - { url = "https://files.pythonhosted.org/packages/e7/84/0e27016a6fc5a0886f797018b26aa42f40c09a82332bff77822a451deaaa/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_ppc64le.whl", hash = "sha256:b970c6da94d5bb18629db453d14f2a1300f6bf59b61e9b82377931ef95504866", size = 5246285, upload-time = "2026-06-12T20:01:32.439Z" }, - { url = "https://files.pythonhosted.org/packages/11/2d/5e1fb307cb5931881516b464c98774b3f2c36b5d4bb9a2830253cf553cad/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl", hash = "sha256:d8ecde755e2e91bf773fc94e8c9d730cd7f2007004cb492263a794ec3899a1c8", size = 4730441, upload-time = "2026-06-12T20:02:01.469Z" }, - { url = "https://files.pythonhosted.org/packages/e4/c0/bff5a02ee731d207d6a1ed51732549d8c53d2bc8da1d10ec6f2844201d68/cryptography-49.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e3fb64c420688e5319ae25113a354015abbd8dffbfbc41781a1ea66fc7622ac3", size = 4815869, upload-time = "2026-06-12T20:01:36.574Z" }, - { url = "https://files.pythonhosted.org/packages/b9/26/814681d14248d95d73d5c3eea0c39a94eb8302df966f670a2c60de90974b/cryptography-49.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:32703d93296f5c1f4b53349ad3a250c2cae0fdecd3a3dd5d47e616d8d616af27", size = 4960948, upload-time = "2026-06-12T20:02:18.688Z" }, - { url = "https://files.pythonhosted.org/packages/4c/fe/93ecac273d3738939d023612ad12cca9a3740a5345d69fda04134c43fd96/cryptography-49.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:33cd0565932807baddb67b96dbee92f2c374b5c89dee09fd74079aeb8c8dba61", size = 3799153, upload-time = "2026-06-12T20:01:39.059Z" }, - { url = "https://files.pythonhosted.org/packages/19/2a/5bb823f5bedcf80718cea7fbc95ec5515cca3769633c4b01a32be7f30e7c/cryptography-49.0.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:ec5e529fb80935c94fe7b729f9972b50e351a0e6b50aa294fd5cabb109fcc29a", size = 4025947, upload-time = "2026-06-12T20:01:25.745Z" }, - { url = "https://files.pythonhosted.org/packages/3d/df/40577043ca124e17012f408ddddaeb213b856336ac82ddb3bc915f39e29f/cryptography-49.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f78ff2c9ed8dc2d036b0f4d640e22522213d047c1b14e61205a7e55c80a494d4", size = 4692429, upload-time = "2026-06-12T20:01:53.628Z" }, - { url = "https://files.pythonhosted.org/packages/2c/99/2d13299eb3dd27b02dcfaafcc91d6b5cb3329f7cbd6d8f51921acd566c1a/cryptography-49.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:35b151772baff2c74cba7fa290ceaff4c3b11c0c881eb93eb5dbc05a7cfbba18", size = 4700968, upload-time = "2026-06-12T20:02:45.383Z" }, - { url = "https://files.pythonhosted.org/packages/a5/4d/9c0cd02f95e2602dd5e563da149ee0830abef3537be8b34dc56281ebe27a/cryptography-49.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:0f21641cf4b30fca7aee061ced0ec7ad7b073518088b7c9969a297c0ae796c69", size = 4697758, upload-time = "2026-06-12T20:01:41.13Z" }, - { url = "https://files.pythonhosted.org/packages/24/01/186c825898477d77e2324d5360fefe622ff1d8d1963ec0554e2cada8ec77/cryptography-49.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:9e82dcc8e56052715fb18b2429e3bca4823b1629136a2084fc45a9a5cecb9b64", size = 5298863, upload-time = "2026-06-12T20:02:24.579Z" }, - { url = "https://files.pythonhosted.org/packages/b8/7b/62cbbab75d0659865bf0273790031544a0b16c8072d258f9428dcd8190dc/cryptography-49.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6f2debedf9ca60cf1d5bd466475638af5130f89965605cd818484d19987d3a21", size = 4735983, upload-time = "2026-06-12T20:01:50.14Z" }, - { url = "https://files.pythonhosted.org/packages/6c/72/3e798c064bc39e471008075d0f9bc9daf77a80879c092e4a8e170c585ed4/cryptography-49.0.0-cp39-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:8c25ceb16df5b9435f3f6a9829204985b0e0cbee3b48aacd432c7d2c850b44d9", size = 4334173, upload-time = "2026-06-12T20:01:44.743Z" }, - { url = "https://files.pythonhosted.org/packages/f0/ee/6fca21d1ac73e06f8bef71940abfd4d2f6472b4bca284d770f32bd4086f6/cryptography-49.0.0-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:28d8b15e6275f12c8a207dc309dfa957903c927d08d0cc937ee3f63f200693cc", size = 4697298, upload-time = "2026-06-12T20:02:20.918Z" }, - { url = "https://files.pythonhosted.org/packages/67/d0/a5fcd3515f0bae49a7b6d0413cc1bdccdcc1fc0047037a0d480642cdc5d6/cryptography-49.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:6fc361c34fb6aac015ce19435876635e5c6d21db31998b0920f675f131e043b8", size = 5254338, upload-time = "2026-06-12T20:02:22.737Z" }, - { url = "https://files.pythonhosted.org/packages/a0/84/84fe36f19caf857d61cb7fc9c63035a47ffabd84ea12d1d393148efa3615/cryptography-49.0.0-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:2400ef9c9e2299a25614eb1dea3db54a69b1349efd043bfac9c67630d136df36", size = 4735650, upload-time = "2026-06-12T20:02:41.389Z" }, - { url = "https://files.pythonhosted.org/packages/6c/a0/db537264e234f7273a73ec020873d6d6b39dfd8a53db78b550ca8320440e/cryptography-49.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:67e1d20ad9ef3a563c59ef22e7a8a0b8210bd26604369ea4a30a7c66aefe504e", size = 4834820, upload-time = "2026-06-12T20:01:51.847Z" }, - { url = "https://files.pythonhosted.org/packages/93/77/8df9eb486495979bccecd1062e2eaf435250e84437040295b57d09048b0b/cryptography-49.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:42b0684e0e40cf26122427802486f6d93aea593612603a94fbf260c7eb1e9c1b", size = 4967968, upload-time = "2026-06-12T20:02:12.524Z" }, - { url = "https://files.pythonhosted.org/packages/c2/e6/f60198ea8d9dfa15fff9ed4ca02ce362f6eadd9ba757dcc50634c4257b63/cryptography-49.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:026ac7423e6fa66872d3bf889be5974507da3944f866f704fa200eadacd00001", size = 3785547, upload-time = "2026-06-12T20:02:26.847Z" }, - { url = "https://files.pythonhosted.org/packages/63/d3/4a83af35d65e3fad632c926fad684c193ea4398569ccb0bbbc7fe8f5dc9a/cryptography-49.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:fc1e275c2f1d97b1a6450b8b0ea3ebfa6e087a611c2b26cb2404d48588abab7b", size = 3993685, upload-time = "2026-06-12T20:02:14.883Z" }, - { url = "https://files.pythonhosted.org/packages/d6/a7/f9dac0ab7f80368c56993a7bf638ef9935f825c91902798481fac0898138/cryptography-49.0.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c83782480a4a9da4d0feb51950131ba32e12e70813848b3343f6e18c28a66838", size = 4676239, upload-time = "2026-06-12T20:02:28.793Z" }, - { url = "https://files.pythonhosted.org/packages/d7/70/2ba3769dd0ae167e2f33dfa9592d45db6ff9a61d62ca1a5b3d1bdd09068f/cryptography-49.0.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b39efa323140595abd3ecca8529d321ae50f55f3aa3ba9cc81ea56a6011953d5", size = 4715584, upload-time = "2026-06-12T20:01:27.495Z" }, - { url = "https://files.pythonhosted.org/packages/94/64/2923570ac1c0bd3a737aa366ac3abbbbde273042308b8cde95e2364a6e6a/cryptography-49.0.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:b47db11c2c3525083296069b98ac5221907455e989ae0c2e3008bde851921615", size = 4675885, upload-time = "2026-06-12T20:01:55.49Z" }, - { url = "https://files.pythonhosted.org/packages/ab/f8/614dc7e051418cfe53d55173c1e24c6b0085e89996fe90508c2fdf769aef/cryptography-49.0.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:084ef1af862eb07ec46d25f68689f2102a9fc0e05ce7b80f14f5fe51e4eef0f6", size = 4715449, upload-time = "2026-06-12T20:02:05.469Z" }, - { url = "https://files.pythonhosted.org/packages/aa/50/a9caea39ad19c431c1a3f8a31114df65b260cdfe67786b6c7e7c040c4c44/cryptography-49.0.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:be9fcb48a55f023493482827d4f459bd263cc20efde64f204b97c123201850c6", size = 3783731, upload-time = "2026-06-12T20:02:43.319Z" }, -] - [[package]] name = "cycler" version = "0.12.1" @@ -563,69 +132,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, ] -[[package]] -name = "dash" -version = "4.3.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "flask" }, - { name = "importlib-metadata" }, - { name = "janus" }, - { name = "mcp" }, - { name = "nest-asyncio" }, - { name = "plotly" }, - { name = "pydantic" }, - { name = "requests" }, - { name = "retrying" }, - { name = "setuptools" }, - { name = "typing-extensions" }, - { name = "werkzeug" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/10/3c/0608ea83920ddbd27de3aeb60d48e56efb3390c2cfb44dabfd8dc25c0ba2/dash-4.3.0.tar.gz", hash = "sha256:1ec96641d5e3c06b7dfffad8241e345533d70327d96f722a8e13b827c287341b", size = 8095642, upload-time = "2026-06-19T14:56:03.655Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/71/ad/0a230dc6cd85bb38e7fe6acc9fbaeb19ddf16ababcb54038ae81128da591/dash-4.3.0-py3-none-any.whl", hash = "sha256:cbbe79a2bb1a5e46fbbbddc33f9f558419442c2d55cd12526078f489b5801cc0", size = 8445443, upload-time = "2026-06-19T14:55:59.024Z" }, -] - -[[package]] -name = "filelock" -version = "3.29.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e6/dc/be6cbe99670cd6e4ad387123647cb08e0c32975e223f82551e914c5568a6/filelock-3.29.4.tar.gz", hash = "sha256:10cdb3656fc44541cdf30652a93fb10ec6b05325620eb316bd26893e4201538a", size = 63028, upload-time = "2026-06-13T16:12:00.744Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/13/37/a065dc3bd6e49423a6532c642ca7378d3f467b1ef44c2800c937af7f9739/filelock-3.29.4-py3-none-any.whl", hash = "sha256:dac1648087d5115554850d113e7dd8c83ab2d38e3435dde2d4f163847e57b767", size = 42757, upload-time = "2026-06-13T16:11:59.582Z" }, -] - -[[package]] -name = "flake8" -version = "7.3.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mccabe" }, - { name = "pycodestyle" }, - { name = "pyflakes" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/9b/af/fbfe3c4b5a657d79e5c47a2827a362f9e1b763336a52f926126aa6dc7123/flake8-7.3.0.tar.gz", hash = "sha256:fe044858146b9fc69b551a4b490d69cf960fcb78ad1edcb84e7fbb1b4a8e3872", size = 48326, upload-time = "2025-06-20T19:31:35.838Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9f/56/13ab06b4f93ca7cac71078fbe37fcea175d3216f31f85c3168a6bbd0bb9a/flake8-7.3.0-py2.py3-none-any.whl", hash = "sha256:b9696257b9ce8beb888cdbe31cf885c90d31928fe202be0889a7cdafad32f01e", size = 57922, upload-time = "2025-06-20T19:31:34.425Z" }, -] - -[[package]] -name = "flask" -version = "3.1.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "blinker" }, - { name = "click" }, - { name = "itsdangerous" }, - { name = "jinja2" }, - { name = "markupsafe" }, - { name = "werkzeug" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/26/00/35d85dcce6c57fdc871f3867d465d780f302a175ea360f62533f12b27e2b/flask-3.1.3.tar.gz", hash = "sha256:0ef0e52b8a9cd932855379197dd8f94047b359ca0a78695144304cb45f87c9eb", size = 759004, upload-time = "2026-02-19T05:00:57.678Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7f/9c/34f6962f9b9e9c71f6e5ed806e0d0ff03c9d1b0b2340088a0cf4bce09b18/flask-3.1.3-py3-none-any.whl", hash = "sha256:f4bcbefc124291925f1a26446da31a5178f9483862233b23c0c96a20701f670c", size = 103424, upload-time = "2026-02-19T05:00:56.027Z" }, -] - [[package]] name = "fonttools" version = "4.63.0" @@ -675,200 +181,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2c/47/c99d5268f354002ce80f8d029cd9d7d872969da1de8b93d32de4dc56d6f4/fonttools-4.63.0-py3-none-any.whl", hash = "sha256:445af2eab030a16b9171ea8bdda7ebf7d96bda2df88ee182a464252f6e05e20d", size = 1164562, upload-time = "2026-05-14T12:04:29.092Z" }, ] -[[package]] -name = "ghp-import" -version = "2.1.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "python-dateutil" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/d9/29/d40217cbe2f6b1359e00c6c307bb3fc876ba74068cbab3dde77f03ca0dc4/ghp-import-2.1.0.tar.gz", hash = "sha256:9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343", size = 10943, upload-time = "2022-05-02T15:47:16.11Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f7/ec/67fbef5d497f86283db54c22eec6f6140243aae73265799baaaa19cd17fb/ghp_import-2.1.0-py3-none-any.whl", hash = "sha256:8337dd7b50877f163d4c0289bc1f1c7f127550241988d568c1db512c4324a619", size = 11034, upload-time = "2022-05-02T15:47:14.552Z" }, -] - -[[package]] -name = "gitdb" -version = "4.0.12" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "smmap" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684, upload-time = "2025-01-02T07:20:46.413Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl", hash = "sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf", size = 62794, upload-time = "2025-01-02T07:20:43.624Z" }, -] - -[[package]] -name = "gitpython" -version = "3.1.50" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "gitdb" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/33/f6/354ae6491228b5eb40e10d89c4d13c651fe1cf7556e35ebdded50cff57ce/gitpython-3.1.50.tar.gz", hash = "sha256:80da2d12504d52e1f998772dc5baf6e553f8d2fcfe1fcc226c9d9a2ee3372dcc", size = 219798, upload-time = "2026-05-06T04:01:26.571Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/20/7a/1c6e3562dfd8950adbb11ffbc65d21e7c89d01a6e4f137fa981056de25c5/gitpython-3.1.50-py3-none-any.whl", hash = "sha256:d352abe2908d07355014abdd21ddf798c2a961469239afec4962e9da884858f9", size = 212507, upload-time = "2026-05-06T04:01:23.799Z" }, -] - -[[package]] -name = "grafana-api" -version = "1.0.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "requests" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f8/f4/c1a1ae50758ca7b65ea909c536f28204e6e8cae48822c394762a3d7e0e35/grafana_api-1.0.3.tar.gz", hash = "sha256:d541ea1a5b7efafa56c5f04053ed42b2d972a6aa313bc4881dd192aeb0706e2e", size = 24864, upload-time = "2020-08-16T20:32:10.843Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f4/3e/8d116cc17c1a2bf2541e567c791d3b94de2b561fb85a566e85c89a9ce45d/grafana_api-1.0.3-py2.py3-none-any.whl", hash = "sha256:30caef227025ecdb5662b242aaae921b89b58959566d83a5948523c8138e98ce", size = 26859, upload-time = "2020-08-16T20:32:09.783Z" }, -] - -[[package]] -name = "griffe-pydantic" -version = "1.3.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "griffelib" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/5a/bd/d2eaeaf3f9910c9cd72793af0de18ee3d3a3a27bb30ab01cfd7659c08dc4/griffe_pydantic-1.3.1.tar.gz", hash = "sha256:f7caedfa0effedb22893bf01cc411fd567614f7b4de7ce0c1f4293eb7acb5c44", size = 38176, upload-time = "2026-02-21T09:38:49.674Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2d/88/17d656aa97406cd509e2be0e6eddcf81fc1666104bf81042b89721d4a44c/griffe_pydantic-1.3.1-py3-none-any.whl", hash = "sha256:475103794a1d5da3933d3968e82a2bd9d9a1fa507c06d5ee1a39ee1fadcca628", size = 15189, upload-time = "2026-02-20T11:34:14.965Z" }, -] - -[[package]] -name = "griffelib" -version = "2.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/33/e4/8d187ea29c2e30b3a09505c567513077d6117861bde1fbd997a167f262ec/griffelib-2.1.0.tar.gz", hash = "sha256:762a186d2c6fd6794d4ea20d428d597ffb857cb56b66421651cbba15bdd5e813", size = 216234, upload-time = "2026-06-19T12:05:42.278Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e4/d3/5268aeabf2ad82658c4e2ff3a060648d0f02f3926cb53247c0e4d0dab49e/griffelib-2.1.0-py3-none-any.whl", hash = "sha256:cc7b3d2d2865ad0b909fcc38086e3f554b5ea7acbaa7bbb7ecaa3f5dfb7d9f00", size = 142560, upload-time = "2026-06-19T12:05:38.742Z" }, -] - -[[package]] -name = "h11" -version = "0.16.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, -] - -[[package]] -name = "hatchling" -version = "1.30.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "packaging" }, - { name = "pathspec" }, - { name = "pluggy" }, - { name = "trove-classifiers" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/63/4c/8717ccb844b4fa5a5ba6352e97d743ed24e9a22cf90b7c109c17030a46a1/hatchling-1.30.1.tar.gz", hash = "sha256:eee4fd45357f72ebb3d7a42e5d72cfb5e29ed426d79e8836288926c4258d5f2e", size = 56929, upload-time = "2026-06-02T00:09:41.487Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/56/49/2797ec0ef88008a653a8867bb8d1e5c223cd2df8e40390dd5c6a0279cbc5/hatchling-1.30.1-py3-none-any.whl", hash = "sha256:161eacafb3c6f91526e92116d21426369f2c36e98c36a864f11a96345ad4ee31", size = 77489, upload-time = "2026-06-02T00:09:40.139Z" }, -] - -[[package]] -name = "httpcore" -version = "1.0.9" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "certifi" }, - { name = "h11" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, -] - -[[package]] -name = "httptools" -version = "0.8.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/43/e5/d471fcb0e14523fe1c3f4ba58ca52480e7bd70ad7109a3846bc75892f7fb/httptools-0.8.0.tar.gz", hash = "sha256:6b2a32f18d97e16e90827d7a819ffa8dbd8cc245fc4e1fa9d1095b54ef4bd999", size = 271342, upload-time = "2026-05-25T22:17:48.841Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f8/d2/c3eedaef57de65c3cc5f8dc244cf12d09c84ad258a479055aad6db23206c/httptools-0.8.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ed377e64805bdba4943c82717333f8f8603a13b09aff9cead2717c6c817fb168", size = 208428, upload-time = "2026-05-25T22:16:59.717Z" }, - { url = "https://files.pythonhosted.org/packages/f1/94/dfe435d90d0ef61ec0f2cc3d480eef78c59727c6c2ce039f433882f6131a/httptools-0.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9518c406d7b310f05adb1a37f80acabac40504a575d7c0da6d3e365c695ac20d", size = 113366, upload-time = "2026-05-25T22:17:00.795Z" }, - { url = "https://files.pythonhosted.org/packages/cc/d4/13025f1a56e615dcb331e0bbe2d9a1143212b58c263385fc5d2e558f5bac/httptools-0.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:57278e6fa0424c42a8a3e454828ab4f0aff27b40cddf9679579b98c6dce6a376", size = 464676, upload-time = "2026-05-25T22:17:02.014Z" }, - { url = "https://files.pythonhosted.org/packages/bf/95/4c1c26c0b985f8a3331682d802598f14e32dc41bf7509266eb2c04ad4801/httptools-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bbb8caadb2b742d293169d2b458b5c001ef70e3158704aa3d3ef9597624c5d1d", size = 464235, upload-time = "2026-05-25T22:17:03.109Z" }, - { url = "https://files.pythonhosted.org/packages/a2/82/6735be2b0ca527718c431cdb8e5f70c3862c0844a687df0f572c51e11497/httptools-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:52dd695b865fe96d9d2b16b64a895f3f57bf3cb064e8383cd3b5713a069e8085", size = 449809, upload-time = "2026-05-25T22:17:04.443Z" }, - { url = "https://files.pythonhosted.org/packages/b5/f9/5811c74f37a758c8a4aa3dc430375119d335947e883efc4664d8f3559a41/httptools-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:20b4aac66ff65f7db06a375808b78f42a94970aa22e826b3cb2b43eb09174124", size = 452174, upload-time = "2026-05-25T22:17:05.476Z" }, - { url = "https://files.pythonhosted.org/packages/cc/94/97b75870dea07b71e3ec535cebe525b08d723152e4c7d13fa887e51f4de2/httptools-0.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:a1b4c8e7a489a0d750d91894e9a8cdc295838f1924c0ca903ae993456fddec07", size = 90991, upload-time = "2026-05-25T22:17:06.75Z" }, - { url = "https://files.pythonhosted.org/packages/14/88/1d21a36da8f5cb0fa49eafd4b169eba5608d57e75bbcf61845cbc6243216/httptools-0.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:880490234c10f70a9830743097e8958d6e4b9f5a0ffc24515023afeef984054d", size = 208247, upload-time = "2026-05-25T22:17:07.843Z" }, - { url = "https://files.pythonhosted.org/packages/a5/42/cc4feea2945cb3051038f090c9b36bd5b8a9d7f5a894a506a8983e33fd1c/httptools-0.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5931891fb7b441b8a3853cf1b85c82c903defce084dd5f6771ca46e31bf862c5", size = 113064, upload-time = "2026-05-25T22:17:09.136Z" }, - { url = "https://files.pythonhosted.org/packages/e3/a6/febbb8b8db0f58b38e44ad6cb946e6a255ae49b55f2e8543408fb7501ccd/httptools-0.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b15fc622b0f869d19207c4089a501d9bcc63ca5e071ffdd2f03f922df882dcb2", size = 523851, upload-time = "2026-05-25T22:17:10.106Z" }, - { url = "https://files.pythonhosted.org/packages/b7/e4/f90a0df0b83beff265b7e3b65f2a4cefd95792d4be0ac3e16049f2acd3c2/httptools-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:425f83884fd6343828d8c565f046cb72b6d19063f6924093e11bcd8e1548cd09", size = 518842, upload-time = "2026-05-25T22:17:11.218Z" }, - { url = "https://files.pythonhosted.org/packages/9e/2d/0c9ac76dd2c893841fbf6498d6acec4f2442e1b7067f6e3e316a80e494e8/httptools-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ef7c3c97f4311c7be57e2986629df89d49cb434dbff78eafcd48c2bff986b15a", size = 501238, upload-time = "2026-05-25T22:17:12.728Z" }, - { url = "https://files.pythonhosted.org/packages/ca/42/906adc91ae3a5fa9c59c0a2f21c139725bd7e5b41ae6acd485cd14123ebf/httptools-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a1afd7c9fbff0d9f5d489c4ce2768bd09c84a46ddefc7161e6aa82ae35c85745", size = 509567, upload-time = "2026-05-25T22:17:13.842Z" }, - { url = "https://files.pythonhosted.org/packages/05/0b/4240efeb672751ee5b9b380cb0e3fdc050bc05f68adc7a8aefc4fcd9a69a/httptools-0.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:cd96f29b4bab1d42fa6e3d008711c75e0f79e94e06827330160e3a304227f150", size = 90918, upload-time = "2026-05-25T22:17:15.155Z" }, - { url = "https://files.pythonhosted.org/packages/5e/e5/8cfcabc5546e8022f168be28bcdaa128a240a0befdd03b59d558b4f18bd6/httptools-0.8.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:614ceea8ea606848bece2338ac03b3ce5324bcb4be8dc7d377ed708012fa4db8", size = 205148, upload-time = "2026-05-25T22:17:16.333Z" }, - { url = "https://files.pythonhosted.org/packages/2a/0e/0fb14848c19a686c8062ff9067c1a48793e3224b47bc5b201535b6036fce/httptools-0.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2d689918c15a013c65ef52d9fd495d766893ab831a2c8d89f2ac5940a5df847c", size = 111368, upload-time = "2026-05-25T22:17:17.586Z" }, - { url = "https://files.pythonhosted.org/packages/2e/1b/46f1cecf06b9bbde8e4b8c88034ac7908989e5ff7a3a388ef38392949c1f/httptools-0.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:eb3028cca2fc0a6d720e52ef61d8ebb62fcbfeb1de56874546d858d3f25a26b7", size = 486447, upload-time = "2026-05-25T22:17:18.564Z" }, - { url = "https://files.pythonhosted.org/packages/77/00/258bfc0837221f81d9725c45f9b948a6a6b2994a147a4fb66e85100c668f/httptools-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:88bdd940f2b5d487b4d032c6afa5489a7dc4694410d43de3c38c4fb3af0dc45d", size = 482448, upload-time = "2026-05-25T22:17:19.912Z" }, - { url = "https://files.pythonhosted.org/packages/04/ab/d1cef3b5523f4d272a70f42a776c3169a2dddfe3a54de4b2ce4a36341528/httptools-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6a43c9dd399758ccc0531acb0a3c4a6c299ee893ee9400e9c893b7bdcfae0681", size = 464460, upload-time = "2026-05-25T22:17:20.882Z" }, - { url = "https://files.pythonhosted.org/packages/ce/48/5d1d072442277bb2b3434e0e60690b8e8c23840ef7de8b6ea54040a536d3/httptools-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0770728beb05094c809b98e814edff5fef69d26ad7d21185f2f6d5884a0ba683", size = 471312, upload-time = "2026-05-25T22:17:22.085Z" }, - { url = "https://files.pythonhosted.org/packages/0d/66/b96623b27e51a68199ef4efdda0613cced9233fe3062ac74e50749c5ad37/httptools-0.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:7685df791fad561384bfb139e77fde27a1ffd93134e016f95a0db424ffbf77b1", size = 90117, upload-time = "2026-05-25T22:17:23.074Z" }, - { url = "https://files.pythonhosted.org/packages/1a/12/fa3fbf5f9517b273edea2dc982aa82a8c634091e67c590792b729017bc6f/httptools-0.8.0-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:de242a49b5d18e0a8776e654e9f6bf6d89f3875a5c35b425a0e7ce940feb3fd6", size = 206183, upload-time = "2026-05-25T22:17:24.004Z" }, - { url = "https://files.pythonhosted.org/packages/30/fc/5e7c4cb443370f2090a3aba0453a07384d29ff66b7435bb90e77e1037599/httptools-0.8.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:159e9ab5f701ccd42e555a12f1ad8ff69702910fc1c996cf2bb66e5fcb7a231b", size = 112079, upload-time = "2026-05-25T22:17:25.216Z" }, - { url = "https://files.pythonhosted.org/packages/ba/53/771bd891eb0f236f32145d6a1775777ec85745f3cc983a1f23d1a3b8ddfe/httptools-0.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:c4a9f1707e4823d54dfec6c33fa3697d302aed536ed352a7ebb5a061ddb869d0", size = 481596, upload-time = "2026-05-25T22:17:26.186Z" }, - { url = "https://files.pythonhosted.org/packages/62/42/94e15bc68ce3d423243c45d7f1b0c7561f13844f97dc52ae23182fb65628/httptools-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d76ad7b951387e3632c8716a9bb03ac5b45c5f16119aa409db0459520887944e", size = 480865, upload-time = "2026-05-25T22:17:27.542Z" }, - { url = "https://files.pythonhosted.org/packages/1c/7c/fe2980fc03723272e30f135b62360b075f513dfe7cc73aef36c7f04012bd/httptools-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a3b7387147361c3fd47a0bde763c5c91b5b4cd4dc9989b8ece84ff436c99843b", size = 463189, upload-time = "2026-05-25T22:17:28.546Z" }, - { url = "https://files.pythonhosted.org/packages/15/1b/47fc5fff68acd1bfa20b4734059c9a06cadb88119dcd5258b5b0d21d91c8/httptools-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f256d6ce930c52ca1cb2a960b7da03548c454e7d28b06059ad41bfe789036ce0", size = 466610, upload-time = "2026-05-25T22:17:29.816Z" }, - { url = "https://files.pythonhosted.org/packages/60/bd/07b13c93ffd9bec9546e0d43f8e19378dd696dbd278511406bc07371ef1f/httptools-0.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:19d1ee275bb59ba2643ba9a3a1e51cc0c788caf2b8df506368e03f56fdd08527", size = 92705, upload-time = "2026-05-25T22:17:31.133Z" }, - { url = "https://files.pythonhosted.org/packages/fd/c4/121648f68ce066d7bd762d6b6d97e620847642d38d54f3d90ff11d947629/httptools-0.8.0-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:de1ed58a974e75d56560acc7e7fed01a454994429456f65209789992e41f2568", size = 215023, upload-time = "2026-05-25T22:17:32.401Z" }, - { url = "https://files.pythonhosted.org/packages/b9/b0/312a062ae741ae3e8baa8c8bf20be81b2e67337b259ab4349bebc7b6142e/httptools-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:e93c227b595c6926c1acee96891dd9da4be338cfbe82e5cd3bb9d8dd7dc4ac0b", size = 117405, upload-time = "2026-05-25T22:17:33.742Z" }, - { url = "https://files.pythonhosted.org/packages/fc/37/fccd705f795386bb05bf413012fecff2a33e5aa8c2f069096de3e9fd8702/httptools-0.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2a021c3a8e65cc125390d72f59b968afca3bdcaff25bd67965e0a055a14946ca", size = 558497, upload-time = "2026-05-25T22:17:34.732Z" }, - { url = "https://files.pythonhosted.org/packages/bd/39/f172e8003576de35f5ba77ff417cf0e34429d35dc014deef15afa337a72c/httptools-0.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48774d39cbb70e2b1f71f88852a3087ae1d3a1eb80482bb48c13067ab080c14f", size = 571585, upload-time = "2026-05-25T22:17:35.813Z" }, - { url = "https://files.pythonhosted.org/packages/3e/b9/f5564760af99f3dbbf3f9104dc00e5da27e96cf433c6bdcf77617f70bf3f/httptools-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:88eead8ec8680a9f146c655bc88445a325bd7921cfd8194c7337e9467282427d", size = 543297, upload-time = "2026-05-25T22:17:37.08Z" }, - { url = "https://files.pythonhosted.org/packages/99/67/8d9f2c313618e161b82f3873188e7196126da1d6e29688df40eb3997c77a/httptools-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:2c032fa028f46871ec7e1fc59fc15e8023eab3e6bbe6ece786a1611719a5d081", size = 539535, upload-time = "2026-05-25T22:17:38.032Z" }, - { url = "https://files.pythonhosted.org/packages/48/63/b906c01e53f50d432c0defe43ce52764a111dc1bdd028bafbeb54dcfd008/httptools-0.8.0-cp314-cp314t-win_amd64.whl", hash = "sha256:384c17174464c8e873398b7af24f0b1f44d992c820328413951a625323155d77", size = 108209, upload-time = "2026-05-25T22:17:39.473Z" }, -] - -[[package]] -name = "httpx" -version = "0.28.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "anyio" }, - { name = "certifi" }, - { name = "httpcore" }, - { name = "idna" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, -] - -[[package]] -name = "httpx-sse" -version = "0.4.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0f/4c/751061ffa58615a32c31b2d82e8482be8dd4a89154f003147acee90f2be9/httpx_sse-0.4.3.tar.gz", hash = "sha256:9b1ed0127459a66014aec3c56bebd93da3c1bc8bb6618c8082039a44889a755d", size = 15943, upload-time = "2025-10-10T21:48:22.271Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d2/fd/6668e5aec43ab844de6fc74927e155a3b37bf40d7c3790e49fc0406b6578/httpx_sse-0.4.3-py3-none-any.whl", hash = "sha256:0ac1c9fe3c0afad2e0ebb25a934a59f4c7823b60792691f779fad2c5568830fc", size = 8960, upload-time = "2025-10-10T21:48:21.158Z" }, -] - -[[package]] -name = "idna" -version = "3.18" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cd/63/9496c57188a2ee585e0f1db071d75089a11e98aa86eb99d9d7618fc1edce/idna-3.18.tar.gz", hash = "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848", size = 196711, upload-time = "2026-06-02T14:34:07.794Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/5e/d4e9f1a599fb8e573b7b87160658329fbf28d19eac2718f51fc3def3aa5a/idna-3.18-py3-none-any.whl", hash = "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2", size = 65455, upload-time = "2026-06-02T14:34:06.319Z" }, -] - -[[package]] -name = "importlib-metadata" -version = "9.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "zipp" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a9/01/15bb152d77b21318514a96f43af312635eb2500c96b55398d020c93d86ea/importlib_metadata-9.0.0.tar.gz", hash = "sha256:a4f57ab599e6a2e3016d7595cfd72eb4661a5106e787a95bcc90c7105b831efc", size = 56405, upload-time = "2026-03-20T06:42:56.999Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/38/3d/2d244233ac4f76e38533cfcb2991c9eb4c7bf688ae0a036d30725b8faafe/importlib_metadata-9.0.0-py3-none-any.whl", hash = "sha256:2d21d1cc5a017bd0559e36150c21c830ab1dc304dedd1b7ea85d20f45ef3edd7", size = 27789, upload-time = "2026-03-20T06:42:55.665Z" }, -] - [[package]] name = "iniconfig" version = "2.3.0" @@ -878,72 +190,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, ] -[[package]] -name = "isort" -version = "8.0.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ef/7c/ec4ab396d31b3b395e2e999c8f46dec78c5e29209fac49d1f4dace04041d/isort-8.0.1.tar.gz", hash = "sha256:171ac4ff559cdc060bcfff550bc8404a486fee0caab245679c2abe7cb253c78d", size = 769592, upload-time = "2026-02-28T10:08:20.685Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3e/95/c7c34aa53c16353c56d0b802fba48d5f5caa2cdee7958acbcb795c830416/isort-8.0.1-py3-none-any.whl", hash = "sha256:28b89bc70f751b559aeca209e6120393d43fbe2490de0559662be7a9787e3d75", size = 89733, upload-time = "2026-02-28T10:08:19.466Z" }, -] - -[[package]] -name = "itsdangerous" -version = "2.2.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/9c/cb/8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d/itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173", size = 54410, upload-time = "2024-04-16T21:28:15.614Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234, upload-time = "2024-04-16T21:28:14.499Z" }, -] - -[[package]] -name = "janus" -version = "2.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d8/7f/69884b6618be4baf6ebcacc716ee8680a842428a19f403db6d1c0bb990aa/janus-2.0.0.tar.gz", hash = "sha256:0970f38e0e725400496c834a368a67ee551dc3b5ad0a257e132f5b46f2e77770", size = 22910, upload-time = "2024-12-13T12:59:08.622Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/68/34/65604740edcb20e1bda6a890348ed7d282e7dd23aa00401cbe36fd0edbd9/janus-2.0.0-py3-none-any.whl", hash = "sha256:7e6449d34eab04cd016befbd7d8c0d8acaaaab67cb59e076a69149f9031745f9", size = 12161, upload-time = "2024-12-13T12:59:06.106Z" }, -] - -[[package]] -name = "jinja2" -version = "3.1.6" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markupsafe" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, -] - -[[package]] -name = "jsonschema" -version = "4.26.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "attrs" }, - { name = "jsonschema-specifications" }, - { name = "referencing" }, - { name = "rpds-py" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" }, -] - -[[package]] -name = "jsonschema-specifications" -version = "2025.9.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "referencing" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, -] - [[package]] name = "kiwisolver" version = "1.5.0" @@ -1051,110 +297,15 @@ wheels = [ ] [[package]] -name = "markdown" -version = "3.10.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/2b/f4/69fa6ed85ae003c2378ffa8f6d2e3234662abd02c10d216c0ba96081a238/markdown-3.10.2.tar.gz", hash = "sha256:994d51325d25ad8aa7ce4ebaec003febcce822c3f8c911e3b17c52f7f589f950", size = 368805, upload-time = "2026-02-09T14:57:26.942Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/de/1f/77fa3081e4f66ca3576c896ae5d31c3002ac6607f9747d2e3aa49227e464/markdown-3.10.2-py3-none-any.whl", hash = "sha256:e91464b71ae3ee7afd3017d9f358ef0baf158fd9a298db92f1d4761133824c36", size = 108180, upload-time = "2026-02-09T14:57:25.787Z" }, -] - -[[package]] -name = "markdown-callouts" -version = "0.4.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markdown" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/87/73/ae5aa379f6f7fea9d0bf4cba888f9a31d451d90f80033ae60ae3045770d5/markdown_callouts-0.4.0.tar.gz", hash = "sha256:7ed2c90486967058a73a547781121983839522d67041ae52c4979616f1b2b746", size = 9768, upload-time = "2024-01-22T23:18:18.513Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1d/b5/7b0a0a52c82bfccd830af2a8cc8add1c5bc932e0204922434954a631dd51/markdown_callouts-0.4.0-py3-none-any.whl", hash = "sha256:ed0da38f29158d93116a0d0c6ecaf9df90b37e0d989b5337d678ee6e6d6550b7", size = 7108, upload-time = "2024-01-22T23:18:17.465Z" }, -] - -[[package]] -name = "markdown-include" -version = "0.8.1" +name = "markdown-it-py" +version = "4.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markdown" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ad/d8/66bf162fe6c1adb619f94a6da599323eecacf15b6d57469d0fd0421c10df/markdown-include-0.8.1.tar.gz", hash = "sha256:1d0623e0fc2757c38d35df53752768356162284259d259c486b4ab6285cdbbe3", size = 21873, upload-time = "2023-02-07T09:47:26.608Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d7/e2/c4d20b21a05fe0fee571649cebc05f7f72e80b1a743f932e7326125e6c9e/markdown_include-0.8.1-py3-none-any.whl", hash = "sha256:32f0635b9cfef46997b307e2430022852529f7a5b87c0075c504283e7cc7db53", size = 18837, upload-time = "2023-02-07T09:47:25.03Z" }, + { name = "mdurl" }, ] - -[[package]] -name = "markupsafe" -version = "3.0.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } +sdist = { url = "https://files.pythonhosted.org/packages/06/ff/7841249c247aa650a76b9ee4bbaeae59370dc8bfd2f6c01f3630c35eb134/markdown_it_py-4.2.0.tar.gz", hash = "sha256:04a21681d6fbb623de53f6f364d352309d4094dd4194040a10fd51833e418d49", size = 82454, upload-time = "2026-05-07T12:08:28.36Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" }, - { url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" }, - { url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" }, - { url = "https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf", size = 22940, upload-time = "2025-09-27T18:36:22.249Z" }, - { url = "https://files.pythonhosted.org/packages/19/ae/31c1be199ef767124c042c6c3e904da327a2f7f0cd63a0337e1eca2967a8/markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f", size = 21887, upload-time = "2025-09-27T18:36:23.535Z" }, - { url = "https://files.pythonhosted.org/packages/b2/76/7edcab99d5349a4532a459e1fe64f0b0467a3365056ae550d3bcf3f79e1e/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a", size = 23692, upload-time = "2025-09-27T18:36:24.823Z" }, - { url = "https://files.pythonhosted.org/packages/a4/28/6e74cdd26d7514849143d69f0bf2399f929c37dc2b31e6829fd2045b2765/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115", size = 21471, upload-time = "2025-09-27T18:36:25.95Z" }, - { url = "https://files.pythonhosted.org/packages/62/7e/a145f36a5c2945673e590850a6f8014318d5577ed7e5920a4b3448e0865d/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a", size = 22923, upload-time = "2025-09-27T18:36:27.109Z" }, - { url = "https://files.pythonhosted.org/packages/0f/62/d9c46a7f5c9adbeeeda52f5b8d802e1094e9717705a645efc71b0913a0a8/markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19", size = 14572, upload-time = "2025-09-27T18:36:28.045Z" }, - { url = "https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01", size = 15077, upload-time = "2025-09-27T18:36:29.025Z" }, - { url = "https://files.pythonhosted.org/packages/35/73/893072b42e6862f319b5207adc9ae06070f095b358655f077f69a35601f0/markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c", size = 13876, upload-time = "2025-09-27T18:36:29.954Z" }, - { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" }, - { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" }, - { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" }, - { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" }, - { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" }, - { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" }, - { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" }, - { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" }, - { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" }, - { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" }, - { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" }, - { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, - { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, - { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, - { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, - { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, - { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, - { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, - { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, - { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, - { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, - { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, - { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, - { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, - { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, - { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, - { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, - { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, - { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, - { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, - { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, - { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, - { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, - { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, - { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, - { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, - { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, - { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, - { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, - { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, - { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, - { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, - { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, - { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, - { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, - { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, - { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, - { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, - { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, - { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, - { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, - { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, - { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, - { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, - { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, + { url = "https://files.pythonhosted.org/packages/b3/81/4da04ced5a082363ecfa159c010d200ecbd959ae410c10c0264a38cac0f5/markdown_it_py-4.2.0-py3-none-any.whl", hash = "sha256:9f7ebbcd14fe59494226453aed97c1070d83f8d24b6fc3a3bcf9a38092641c4a", size = 91687, upload-time = "2026-05-07T12:08:27.182Z" }, ] [[package]] @@ -1223,293 +374,24 @@ wheels = [ ] [[package]] -name = "mccabe" -version = "0.7.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e7/ff/0ffefdcac38932a54d2b5eed4e0ba8a408f215002cd178ad1df0f2806ff8/mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325", size = 9658, upload-time = "2022-01-24T01:14:51.113Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/27/1a/1f68f9ba0c207934b35b86a8ca3aad8395a3d6dd7921c0686e23853ff5a9/mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e", size = 7350, upload-time = "2022-01-24T01:14:49.62Z" }, -] - -[[package]] -name = "mcp" -version = "1.28.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "anyio" }, - { name = "httpx" }, - { name = "httpx-sse" }, - { name = "jsonschema" }, - { name = "pydantic" }, - { name = "pydantic-settings" }, - { name = "pyjwt", extra = ["crypto"] }, - { name = "python-multipart" }, - { name = "pywin32", marker = "sys_platform == 'win32'" }, - { name = "sse-starlette" }, - { name = "starlette" }, - { name = "typing-extensions" }, - { name = "typing-inspection" }, - { name = "uvicorn", marker = "sys_platform != 'emscripten'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/6e/77/9450b8f251a13affb6281997d0523c4615f8a8b35d0b21ff30db3a5aac9d/mcp-1.28.1.tar.gz", hash = "sha256:d51e36a5f5644faea4f85ea649bfffa6bc6c26770d42798ad6a3de3d2ba69683", size = 638501, upload-time = "2026-06-26T12:57:29.093Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e2/5e/d118fce19f87a2e7d8101c35c8ae0ec289098a4df0ff244cec23e415aca0/mcp-1.28.1-py3-none-any.whl", hash = "sha256:2726bca5e7193f61c5dde8b12500a6de2d9acf6d1a1c0be9e8c2e706437991df", size = 222620, upload-time = "2026-06-26T12:57:27.218Z" }, -] - -[[package]] -name = "mdx-gh-links" -version = "0.4" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markdown" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/2f/ea/bf1f721a8dc0ff83b426480f040ac68dbe3d7898b096c1277a5a4e3da0ec/mdx_gh_links-0.4.tar.gz", hash = "sha256:41d5aac2ab201425aa0a19373c4095b79e5e015fdacfe83c398199fe55ca3686", size = 5783, upload-time = "2023-12-22T19:54:02.136Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c5/c7/ccfe05ade98ba7a63f05d1b05b7508d9af743cbd1f1681aa0c9900a8cd40/mdx_gh_links-0.4-py3-none-any.whl", hash = "sha256:9057bca1fa5280bf1fcbf354381e46c9261cc32c2d5c0407801f8a910be5f099", size = 7166, upload-time = "2023-12-22T19:54:00.384Z" }, -] - -[[package]] -name = "mergedeep" -version = "1.3.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/3a/41/580bb4006e3ed0361b8151a01d324fb03f420815446c7def45d02f74c270/mergedeep-1.3.4.tar.gz", hash = "sha256:0096d52e9dad9939c3d975a774666af186eda617e6ca84df4c94dec30004f2a8", size = 4661, upload-time = "2021-02-05T18:55:30.623Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307", size = 6354, upload-time = "2021-02-05T18:55:29.583Z" }, -] - -[[package]] -name = "mike" -version = "2.2.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "jinja2" }, - { name = "mkdocs" }, - { name = "pyparsing" }, - { name = "pyyaml" }, - { name = "pyyaml-env-tag" }, - { name = "verspec" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b4/47/fa87e9d56bef16cdfe34b059a437e8c6f7ec6f1b9c378871c3cf95ebea9c/mike-2.2.0.tar.gz", hash = "sha256:1e3858e32c0f125aac14432fc7848434358f9ae0962c5c5cde387ad47f6ad25e", size = 38450, upload-time = "2026-04-14T04:59:03.944Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/76/8e/56ccb09c7232a55403a7637caa21922f3b65901a37f5e8bdb405d0de0946/mike-2.2.0-py3-none-any.whl", hash = "sha256:e1f4981c1152eec7c2490a3401142292cc47d686194188416db2648fdfe1d040", size = 34026, upload-time = "2026-04-14T04:59:02.602Z" }, -] - -[[package]] -name = "mkdocs" -version = "1.6.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "click" }, - { name = "colorama", marker = "sys_platform == 'win32'" }, - { name = "ghp-import" }, - { name = "jinja2" }, - { name = "markdown" }, - { name = "markupsafe" }, - { name = "mergedeep" }, - { name = "mkdocs-get-deps" }, - { name = "packaging" }, - { name = "pathspec" }, - { name = "pyyaml" }, - { name = "pyyaml-env-tag" }, - { name = "watchdog" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/bc/c6/bbd4f061bd16b378247f12953ffcb04786a618ce5e904b8c5a01a0309061/mkdocs-1.6.1.tar.gz", hash = "sha256:7b432f01d928c084353ab39c57282f29f92136665bdd6abf7c1ec8d822ef86f2", size = 3889159, upload-time = "2024-08-30T12:24:06.899Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/22/5b/dbc6a8cddc9cfa9c4971d59fb12bb8d42e161b7e7f8cc89e49137c5b279c/mkdocs-1.6.1-py3-none-any.whl", hash = "sha256:db91759624d1647f3f34aa0c3f327dd2601beae39a366d6e064c03468d35c20e", size = 3864451, upload-time = "2024-08-30T12:24:05.054Z" }, -] - -[[package]] -name = "mkdocs-autorefs" -version = "1.4.4" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markdown" }, - { name = "markupsafe" }, - { name = "mkdocs" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/52/c0/f641843de3f612a6b48253f39244165acff36657a91cc903633d456ae1ac/mkdocs_autorefs-1.4.4.tar.gz", hash = "sha256:d54a284f27a7346b9c38f1f852177940c222da508e66edc816a0fa55fc6da197", size = 56588, upload-time = "2026-02-10T15:23:55.105Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/28/de/a3e710469772c6a89595fc52816da05c1e164b4c866a89e3cb82fb1b67c5/mkdocs_autorefs-1.4.4-py3-none-any.whl", hash = "sha256:834ef5408d827071ad1bc69e0f39704fa34c7fc05bc8e1c72b227dfdc5c76089", size = 25530, upload-time = "2026-02-10T15:23:53.817Z" }, -] - -[[package]] -name = "mkdocs-click" -version = "0.9.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "click" }, - { name = "markdown" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a1/c7/8c25f3a3b379def41e6d0bb5c4beeab7aa8a394b17e749f498504102cfa5/mkdocs_click-0.9.0.tar.gz", hash = "sha256:6050917628d4740517541422b607404d044117bc31b770c4f9e9e1939a50c908", size = 18720, upload-time = "2025-04-07T16:59:36.387Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e9/fc/9124ab36e2341e78d8d9c669511bd70f52ea0de8105760c31fabec1f9396/mkdocs_click-0.9.0-py3-none-any.whl", hash = "sha256:5208e828f4f68f63c847c1ef7be48edee9964090390afc8f5b3d4cbe5ea9bbed", size = 15104, upload-time = "2025-04-07T16:59:34.807Z" }, -] - -[[package]] -name = "mkdocs-exclude" -version = "1.0.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mkdocs" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/54/b5/3a8e289282c9e8d7003f8a2f53d673d4fdaa81d493dc6966092d9985b6fc/mkdocs-exclude-1.0.2.tar.gz", hash = "sha256:ba6fab3c80ddbe3fd31d3e579861fd3124513708271180a5f81846da8c7e2a51", size = 6751, upload-time = "2019-02-20T23:34:12.81Z" } - -[[package]] -name = "mkdocs-gen-files" -version = "0.6.1" +name = "mdurl" +version = "0.1.2" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mkdocs" }, - { name = "properdocs" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/43/43/428f312149c161cae557eecd35f3c4a82b867998b1d47fb29fdfe927be26/mkdocs_gen_files-0.6.1.tar.gz", hash = "sha256:57d7ff2229e23d077e46d14a33db6d37c8823f6ce1a503c874c1764a71679763", size = 8746, upload-time = "2026-03-16T23:26:09.31Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ee/1b/3075eb67fe66e19db059f0a25744c4e56978a309603a20e1d3353d545b5e/mkdocs_gen_files-0.6.1-py3-none-any.whl", hash = "sha256:b3182bfc6219e35b8d26658cb988368659d5d023aac30c2a819247558fc12189", size = 8282, upload-time = "2026-03-16T23:26:08.292Z" }, -] - -[[package]] -name = "mkdocs-get-deps" -version = "0.2.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mergedeep" }, - { name = "platformdirs" }, - { name = "pyyaml" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ce/25/b3cccb187655b9393572bde9b09261d267c3bf2f2cdabe347673be5976a6/mkdocs_get_deps-0.2.2.tar.gz", hash = "sha256:8ee8d5f316cdbbb2834bc1df6e69c08fe769a83e040060de26d3c19fad3599a1", size = 11047, upload-time = "2026-03-10T02:46:33.632Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/88/29/744136411e785c4b0b744d5413e56555265939ab3a104c6a4b719dad33fd/mkdocs_get_deps-0.2.2-py3-none-any.whl", hash = "sha256:e7878cbeac04860b8b5e0ca31d3abad3df9411a75a32cde82f8e44b6c16ff650", size = 9555, upload-time = "2026-03-10T02:46:32.256Z" }, -] - -[[package]] -name = "mkdocs-glightbox" -version = "0.5.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "selectolax" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/8d/26/c793459622da8e31f954c6f5fb51e8f098143fdfc147b1e3c25bf686f4aa/mkdocs_glightbox-0.5.2.tar.gz", hash = "sha256:c7622799347c32310878e01ccf14f70648445561010911c80590cec0353370ac", size = 510586, upload-time = "2025-10-23T14:55:18.909Z" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4e/ca/03624e017e5ee2d7ce8a08d89f81c1e535eb3c30d7b2dc4a435ea3fbbeae/mkdocs_glightbox-0.5.2-py3-none-any.whl", hash = "sha256:23a431ea802b60b1030c73323db2eed6ba859df1a0822ce575afa43e0ea3f47e", size = 26458, upload-time = "2025-10-23T14:55:17.43Z" }, + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, ] [[package]] -name = "mkdocs-literate-nav" -version = "0.6.3" +name = "mkinit" +version = "1.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "mkdocs" }, - { name = "properdocs" }, + { name = "ubelt" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/01/af/dd3776a7a713f798f79bec7eb9c661d5cfb83ddc17d9a3667595e53e1559/mkdocs_literate_nav-0.6.3.tar.gz", hash = "sha256:edbaca22343f861fe4e34aac47d55a0c9955c640dbf02eea99fe631e914cf9ee", size = 17526, upload-time = "2026-03-16T23:26:50.688Z" } +sdist = { url = "https://files.pythonhosted.org/packages/77/f7/a1bf60ea227c983f8b705ba41fa8db7c2949ca04239f227d5fd62a404cdf/mkinit-1.2.0.tar.gz", hash = "sha256:4b776ca991ccedbb202b079bd3e573d753121baa2a4f330324247325c9a1d346", size = 76556, upload-time = "2025-12-02T16:22:03.556Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4e/2c/bcf1ae903975ad6f169abb05c1eb0f94395478364deb89270cf034081b29/mkdocs_literate_nav-0.6.3-py3-none-any.whl", hash = "sha256:2c421561280fa9184f88cbf399bebbd4cc17ee507e978a31ce11fd6f3aabf233", size = 13355, upload-time = "2026-03-16T23:26:49.562Z" }, -] - -[[package]] -name = "mkdocs-material" -version = "9.7.6" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "babel" }, - { name = "backrefs" }, - { name = "colorama" }, - { name = "jinja2" }, - { name = "markdown" }, - { name = "mkdocs" }, - { name = "mkdocs-material-extensions" }, - { name = "paginate" }, - { name = "pygments" }, - { name = "pymdown-extensions" }, - { name = "requests" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/45/29/6d2bcf41ae40802c4beda2432396fff97b8456fb496371d1bc7aad6512ec/mkdocs_material-9.7.6.tar.gz", hash = "sha256:00bdde50574f776d328b1862fe65daeaf581ec309bd150f7bff345a098c64a69", size = 4097959, upload-time = "2026-03-19T15:41:58.161Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/01/bc663630c510822c95c47a66af9fa7a443c295b47d5f041e5e6ae62ef659/mkdocs_material-9.7.6-py3-none-any.whl", hash = "sha256:71b84353921b8ea1ba84fe11c50912cc512da8fe0881038fcc9a0761c0e635ba", size = 9305470, upload-time = "2026-03-19T15:41:55.217Z" }, -] - -[[package]] -name = "mkdocs-material-extensions" -version = "1.3.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/79/9b/9b4c96d6593b2a541e1cb8b34899a6d021d208bb357042823d4d2cabdbe7/mkdocs_material_extensions-1.3.1.tar.gz", hash = "sha256:10c9511cea88f568257f960358a467d12b970e1f7b2c0e5fb2bb48cab1928443", size = 11847, upload-time = "2023-11-22T19:09:45.208Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5b/54/662a4743aa81d9582ee9339d4ffa3c8fd40a4965e033d77b9da9774d3960/mkdocs_material_extensions-1.3.1-py3-none-any.whl", hash = "sha256:adff8b62700b25cb77b53358dad940f3ef973dd6db797907c49e3c2ef3ab4e31", size = 8728, upload-time = "2023-11-22T19:09:43.465Z" }, -] - -[[package]] -name = "mkdocs-redirects" -version = "1.2.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mkdocs" }, - { name = "properdocs" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/73/25/49725f78ca5d3026b09973f7a2b3a8b179cc2e8c15e43d5a13bc79f6b274/mkdocs_redirects-1.2.3.tar.gz", hash = "sha256:5e980330999299729a2d6a125347d1af78023d68a23681a4de3053ce7dfe2e51", size = 7712, upload-time = "2026-03-28T13:57:41.766Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c6/90/871b1cddc01d2ba1637b858eeeabc2e3013dc8df591306b5567b98ef0870/mkdocs_redirects-1.2.3-py3-none-any.whl", hash = "sha256:ec7312fff462d03ec16395d0c001006a418f8d0c21cdf2b47ff11cf839dc3ce0", size = 6245, upload-time = "2026-03-28T13:57:40.466Z" }, -] - -[[package]] -name = "mkdocs-section-index" -version = "0.3.12" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mkdocs" }, - { name = "properdocs" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f1/e2/64d0f3f054ca8efe61e706006ff5f0d49ad99620c62c2e04818573391c33/mkdocs_section_index-0.3.12.tar.gz", hash = "sha256:285635bf86c643b0fc7a343053d7a818049817bff4408f52b80c4367bd5e7268", size = 14946, upload-time = "2026-04-16T19:20:00.953Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b0/4d/a330cab5e055d45e924cec69da54a3d8ed37643964f8d1fa1a772b496273/mkdocs_section_index-0.3.12-py3-none-any.whl", hash = "sha256:a1100039546beb4ebef63ce6fc91f3195fb9c0c3763105d4d3d7cd31e0a046eb", size = 8932, upload-time = "2026-04-16T19:19:59.741Z" }, -] - -[[package]] -name = "mkdocs-snippets" -version = "1.3.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/3e/56/9a5264a78375443f57fe3043a77f11d5b8edb8fcd7f3385aa00edbad1a3a/mkdocs_snippets-1.3.2.tar.gz", hash = "sha256:d46d2700dec2dd8dab1d2977a656bed11ad89fdfd4dab30f2008c99d42086c53", size = 6361, upload-time = "2025-05-07T19:40:50.048Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0e/bf/8e63de00e57a05e739782dbcccfe6fad033fa886c361622053198a5b638c/mkdocs_snippets-1.3.2-py3-none-any.whl", hash = "sha256:0a2be9ced4169acb3449d89a2d882f7e0e516a8c9cf3ffb8b9c6565af83a9a61", size = 6425, upload-time = "2025-05-07T19:40:48.758Z" }, -] - -[[package]] -name = "mkdocstrings" -version = "1.0.4" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "jinja2" }, - { name = "markdown" }, - { name = "markupsafe" }, - { name = "mkdocs" }, - { name = "mkdocs-autorefs" }, - { name = "pymdown-extensions" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/1d/5d/f888d4d3eb31359b327bc9b17a212d6ef03fe0b0682fbb3fc2cb849fb12b/mkdocstrings-1.0.4.tar.gz", hash = "sha256:3969a6515b77db65fd097b53c1b7aa4ae840bd71a2ee62a6a3e89503446d7172", size = 100088, upload-time = "2026-04-15T09:16:53.376Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/6e/94/be70f8ee9c45f2f62b39a1f0e9303bc20e138a8f3b8e50ffd89498e177e1/mkdocstrings-1.0.4-py3-none-any.whl", hash = "sha256:63464b4b29053514f32a1dbbf604e52876d5e638111b0c295ab7ed3cac73ca9b", size = 35560, upload-time = "2026-04-15T09:16:51.436Z" }, -] - -[[package]] -name = "mkdocstrings-python" -version = "2.0.5" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "griffelib" }, - { name = "mkdocs-autorefs" }, - { name = "mkdocstrings" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b1/b6/e858701499d57eee8b3fd8e78168083956c6683ddbe727b46758b19e1119/mkdocstrings_python-2.0.5.tar.gz", hash = "sha256:3a4d92556ad39637e88af94a5374213af9a8e3040c3824ceaed04b486c017594", size = 199578, upload-time = "2026-06-19T10:41:08.868Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d1/fc/10ab7e80650a9c9e8f4f1105f8c8e73567f88ed0c06ada589ab81d38687c/mkdocstrings_python-2.0.5-py3-none-any.whl", hash = "sha256:30c837bbff016549f659fcba6539ac351303f0fd7e713c89a040611072236e9d", size = 104951, upload-time = "2026-06-19T10:41:07.378Z" }, -] - -[[package]] -name = "mypy-extensions" -version = "1.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a2/6e/371856a3fb9d31ca8dac321cda606860fa4548858c0cc45d9d1d4ca2628b/mypy_extensions-1.1.0.tar.gz", hash = "sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558", size = 6343, upload-time = "2025-04-22T14:54:24.164Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505", size = 4963, upload-time = "2025-04-22T14:54:22.983Z" }, + { url = "https://files.pythonhosted.org/packages/f2/c1/5cac576344167d1a21dc569d39e4aa230626a5a457d4f0ea514f27caa124/mkinit-1.2.0-py3-none-any.whl", hash = "sha256:172755988cdcdc5212d0b76b586ec4765c2bff9ae41266a93f5f4b962c3d2def", size = 70919, upload-time = "2025-12-02T16:22:00.967Z" }, ] [[package]] @@ -1521,15 +403,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f4/4e/afc8c31605cb8be1d3bb4438c4d979daa104dab6306cd2b87abe9c3a7299/narwhals-2.23.0-py3-none-any.whl", hash = "sha256:769e7b9ab102c93d8fa019f6b4cd1a657909b04a20bf6210e5a35aae06814ae9", size = 458938, upload-time = "2026-07-01T11:21:51.677Z" }, ] -[[package]] -name = "nest-asyncio" -version = "1.6.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418, upload-time = "2024-01-21T14:25:19.227Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, -] - [[package]] name = "numpy" version = "2.4.6" @@ -1696,85 +569,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/df/b2/87e62e8c3e2f4b32e5fe99e0b86d576da1312593b39f47d8ceef365e95ed/packaging-26.2-py3-none-any.whl", hash = "sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e", size = 100195, upload-time = "2026-04-24T20:15:22.081Z" }, ] -[[package]] -name = "paginate" -version = "0.5.7" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ec/46/68dde5b6bc00c1296ec6466ab27dddede6aec9af1b99090e1107091b3b84/paginate-0.5.7.tar.gz", hash = "sha256:22bd083ab41e1a8b4f3690544afb2c60c25e5c9a63a30fa2f483f6c60c8e5945", size = 19252, upload-time = "2024-08-25T14:17:24.139Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/90/96/04b8e52da071d28f5e21a805b19cb9390aa17a47462ac87f5e2696b9566d/paginate-0.5.7-py2.py3-none-any.whl", hash = "sha256:b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591", size = 13746, upload-time = "2024-08-25T14:17:22.55Z" }, -] - -[[package]] -name = "pandas" -version = "3.0.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, - { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, - { name = "python-dateutil" }, - { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f8/87/4341c6252d1c47b08768c3d25ac487362bf403f0313ddae4a2a26c9b1b4c/pandas-3.0.3.tar.gz", hash = "sha256:696a4a00a2a2a35d4e5deb3fc946641b96c944f02230e4f76137fe35d806c4fc", size = 4651414, upload-time = "2026-05-11T18:54:29.21Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/42/16/b5c76b838fd9bf6ce84d3a53346b8874ec05c5f0040d75ef2c320100cd2a/pandas-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:455f6f8139d4282188f526868dbc3c828470e88a3d9d59a891bd46a455f21b98", size = 10338495, upload-time = "2026-05-11T18:52:11.558Z" }, - { url = "https://files.pythonhosted.org/packages/5a/b0/a4ffc4ae74d2d822200dcc46898987d8eb6032d1e2b219cae39da6f5cbcc/pandas-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4e15135e2ee5df1063313e2425ceef8ac0f4ae775893815b0923651b806a5639", size = 9938250, upload-time = "2026-05-11T18:52:17.005Z" }, - { url = "https://files.pythonhosted.org/packages/2e/b2/3323601a52caee42c019e370090ca4544b241437240ca04f786cce82b0cf/pandas-3.0.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:05f1f1752b8533ea03f7f39a9c15b1a058d067bb48f4748948e7a8691e0510f2", size = 10770558, upload-time = "2026-05-11T18:52:19.865Z" }, - { url = "https://files.pythonhosted.org/packages/32/f1/bbecd2f867b97abebe0f9b53d750f862251b40337e061b36676ded3d920f/pandas-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a1e45c80cceb3b4a21bc5939d52e8cbd8d9b7305309219d59e9754d9ce09e27", size = 11274611, upload-time = "2026-05-11T18:52:22.622Z" }, - { url = "https://files.pythonhosted.org/packages/7f/4f/eafabf2d5fae5adf143b4d18d3706c5efdc368a7c4eb1ee8a3eddabbd0f6/pandas-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:14da8316da4d0c5a77618425996bfb1248ca87fc2c1486e6fde4652bd18b5824", size = 11784670, upload-time = "2026-05-11T18:52:25.4Z" }, - { url = "https://files.pythonhosted.org/packages/49/44/1eb20389301b57b19cc099a1c2f662501f72f08a65f912d05822613c1532/pandas-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a55066a0505dae0ba2b50a46637db34b46f9094c65c5d4800794ef6335010938", size = 12353708, upload-time = "2026-05-11T18:52:28.139Z" }, - { url = "https://files.pythonhosted.org/packages/eb/62/c321f13b5ba1819fc8dca456c7fce578da2dcfecff1abbf0eaddf8406c0f/pandas-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6674ab18ad8c57802867264b00e15e7bb904700cdd9046e3b2fa1fce237439ea", size = 9907609, upload-time = "2026-05-11T18:52:30.982Z" }, - { url = "https://files.pythonhosted.org/packages/53/85/1b7f563ebc6357c27233a02a96b589bcce1fa9c6eb89fb4f0e56421d277e/pandas-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:5cc09a68b3120e0f54870dede8287a7bb1fa463907e4fcec1ea77cab6179bf7a", size = 9165596, upload-time = "2026-05-11T18:52:33.334Z" }, - { url = "https://files.pythonhosted.org/packages/24/f1/392f8c5bfc16f66a0d2d41561c01627c228fe7ed2a0d056ef11315042570/pandas-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fed2ff7fd9779120e388e285fc029bd5cf9490cdd2e4166a9ee22c0e49a9ab09", size = 10357846, upload-time = "2026-05-11T18:52:36.143Z" }, - { url = "https://files.pythonhosted.org/packages/cf/3d/b16412745651e855f357e5e66930248688378853a6e2698a214e331fba1f/pandas-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b168fc218fd80a6cbdbdbc1a97ddc7889ed057d7eb45f50d866ceab5f39904c4", size = 9899550, upload-time = "2026-05-11T18:52:38.976Z" }, - { url = "https://files.pythonhosted.org/packages/31/a8/fa2535168fffcedf67f4f6de28d2dd903a747ca7c8ea6989451aaeb3a92f/pandas-3.0.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0383c72c75cdcca61a9e116e611143902dbfd08bff356829c2f6d1cf40a9ca8c", size = 10412965, upload-time = "2026-05-11T18:52:41.915Z" }, - { url = "https://files.pythonhosted.org/packages/65/b6/09b01cdbc15224e2850365192d17b7bdebb8bdbd8780ed221fcdf0d9a515/pandas-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6dc0b3fd2169c9157deed50b4d519553a3655c8c6a96027136d654592be973a9", size = 10894600, upload-time = "2026-05-11T18:52:45.02Z" }, - { url = "https://files.pythonhosted.org/packages/c9/a4/2eb28f2fccb4ced4a2c79ab2a5dee9ade1ebf44922ebad6fea158c9f95d4/pandas-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e65d5407dc0b394f509699650e4a2ec01c0514f21850f453fa60f3be79a5dbf", size = 11422824, upload-time = "2026-05-11T18:52:48.058Z" }, - { url = "https://files.pythonhosted.org/packages/f8/45/830bb57f533a4604b355e07edcb8ea18cf88b5f94e5fca92f27052d7c597/pandas-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f8894dc474d648fe7b6ff0ca9b0bd73950d19952bc1a6534540762c5d79d305c", size = 11950889, upload-time = "2026-05-11T18:52:50.905Z" }, - { url = "https://files.pythonhosted.org/packages/b9/c5/fc1b368f303087d20e8c9bf3d6ceb186263cfac0ade735cd938538bea839/pandas-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:c7be265b62cef88e253a941e4698604973736dcfe242fdb5198f0f7bc473cdcc", size = 9755463, upload-time = "2026-05-11T18:52:53.386Z" }, - { url = "https://files.pythonhosted.org/packages/86/bd/fda8f9705b1b09c6ebe14bfc0fa0e4ec8584d54ea673628f157ff55131af/pandas-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:557409bc4178e70ee8d9ddb494798e51ebf6ea59330f6be22c51bab2a7db6c49", size = 9066158, upload-time = "2026-05-11T18:52:56.038Z" }, - { url = "https://files.pythonhosted.org/packages/c5/90/62d8302883c44308c477e222c3daf7c813a34c8e96985882fbd53d964352/pandas-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:67b3b64c11910cfa29f4e94a14d3bff9ee693b6fc76055e7cad549cee0aec5fa", size = 10331071, upload-time = "2026-05-11T18:52:58.838Z" }, - { url = "https://files.pythonhosted.org/packages/7f/ae/6a6493c783a101f165e4356953ba3c74d6f77f0042fa7d753da9dfbb640c/pandas-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:39436b377d56d2a2e52d0395bdbee171f01068e99af5250509aceeb929f765c7", size = 9875690, upload-time = "2026-05-11T18:53:01.431Z" }, - { url = "https://files.pythonhosted.org/packages/62/7c/5df8e9f56c69a2769fbe9382a5ef8f2658c007e376434e1e2cbb57ad895f/pandas-3.0.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d4be06d68f9ddcfc645b87534911da79a8fbffc7573c80e0edcf42a5020624d8", size = 10381634, upload-time = "2026-05-11T18:53:04.393Z" }, - { url = "https://files.pythonhosted.org/packages/99/68/1237369725aa617bb358263d535803e3053fdbc593513ec5ed9c9896b5b6/pandas-3.0.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a4eeb6830daf35a71cc09649bd823e2b542dac246cdee9614c6e4bd65028cd6a", size = 10891243, upload-time = "2026-05-11T18:53:07.643Z" }, - { url = "https://files.pythonhosted.org/packages/25/93/77d108e8af7222b4a503ebde0e30215b1c2e4f8e53a526431890f22d5586/pandas-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1928e07221f82db493cd4af1e23c1bfca524a19a4699887975bff68f49a72bfb", size = 11388659, upload-time = "2026-05-11T18:53:10.634Z" }, - { url = "https://files.pythonhosted.org/packages/d0/bd/eff5b4399f332ac386c853f6cd2bd3fa2ca0061b9f36ecd9c4d7c4265649/pandas-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:51b1fe551acb77dac643c6fda86084d8d446c10fe64b06a9cc29c4cc8540e7f2", size = 11942880, upload-time = "2026-05-11T18:53:13.536Z" }, - { url = "https://files.pythonhosted.org/packages/2c/20/559ace4200982c3887d0b86bfd0d856a2143ef8ddab63cc07934951a964c/pandas-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:a82d532a3351d435432cd913edbccaf8b8e01d4dd0e5ced5a8d2e8ecd94c7e44", size = 9757091, upload-time = "2026-05-11T18:53:16.306Z" }, - { url = "https://files.pythonhosted.org/packages/3a/66/69055a09fe200f29f922a3eeec4804611900b95f52d932ece3393c3c0c19/pandas-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:275c14e0fce14a2ec20eee474aecd305478ea3c1e6f6a9d8fe219a165542717e", size = 9057282, upload-time = "2026-05-11T18:53:18.768Z" }, - { url = "https://files.pythonhosted.org/packages/57/0e/efe801b0e6811e8e650cd21b7f2608e30f08a7067e2bf6e8752b0d56ee3c/pandas-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:46997386d528eb40376ecd6b033cf4a8a1e5282580f68f43de875b78cba2199d", size = 10767016, upload-time = "2026-05-11T18:53:21.227Z" }, - { url = "https://files.pythonhosted.org/packages/ea/dc/eb55135a1d5f0f0519f28da1f609a206d2cad1f9c35c32d51e38dd7261ae/pandas-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:261e308dfb22448384b7580cf719d2f998fe2966c92893c3e77d14008af1f066", size = 10420210, upload-time = "2026-05-11T18:53:23.982Z" }, - { url = "https://files.pythonhosted.org/packages/c6/3e/b1d5d955ce33ffecb407465a60bc32769d74fcf68224b7ae67ae11d4dea4/pandas-3.0.3-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dd1a5d1def6a46002e964510bdc67c368aa0951df5d1d9f8365336f5a1f490cd", size = 10336126, upload-time = "2026-05-11T18:53:26.731Z" }, - { url = "https://files.pythonhosted.org/packages/f5/76/a01261711ab60a22d71b862f0de20e4c504bf80457270ad8cb42110f6abc/pandas-3.0.3-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d72828c20c6d6e83e1e22a6a3b47b326b71664112fa9705dcbccfd7a39b62085", size = 10728051, upload-time = "2026-05-11T18:53:29.125Z" }, - { url = "https://files.pythonhosted.org/packages/e9/21/ea191195e587b18cf682e97f433f81b2d0fbe341380e80a3e0d6e4403c8e/pandas-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d26cbe1fcfc12e8fd900e2454163e466b2d3af84f7c75481df7683ffc073d870", size = 11350796, upload-time = "2026-05-11T18:53:32.056Z" }, - { url = "https://files.pythonhosted.org/packages/64/69/f0eaaf54939f0e8c6768fd06be9af2cef9b36048b96dfb9e1b2c685a807e/pandas-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:3e91cec1879ada0624fc3dc9953c5cbd60208e59c0db28f540c5d6d47502422f", size = 11799741, upload-time = "2026-05-11T18:53:34.985Z" }, - { url = "https://files.pythonhosted.org/packages/45/a4/865e0e510cae5fc2194de4db28be638952de942571ba9125934fd9c01d47/pandas-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:08d789b41f87e0905880e293cedf6197ce71fe67cc081358b1e148a491b9bd13", size = 10499958, upload-time = "2026-05-11T18:53:37.857Z" }, - { url = "https://files.pythonhosted.org/packages/86/54/effdcc3c0ff7a08037889200e148ebe94c16c4f653be078c7b3675955df1/pandas-3.0.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:3650109c0f22879df8bd6179ab9ee3d7f1d1d4e7e0094a3f0032d9f51e2e64ac", size = 10336065, upload-time = "2026-05-11T18:53:41.099Z" }, - { url = "https://files.pythonhosted.org/packages/68/10/bf2d6738d72748b961a3751ab89522d58c54efc36a8e1a12161216cd45cf/pandas-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:bab900348131a7db1f69a7309ef141fd5680f1487094193bcbbb61791573bf8f", size = 9926101, upload-time = "2026-05-11T18:53:43.515Z" }, - { url = "https://files.pythonhosted.org/packages/ae/e9/e35cf11c8a136e757b956f5f0efdcaa50aecde85ea055f1898dfc68262f3/pandas-3.0.3-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ba7e08b9ac1d54569cd1e256e3668975ed624d6826f7b68df0342b012007bddb", size = 10457553, upload-time = "2026-05-11T18:53:46.394Z" }, - { url = "https://files.pythonhosted.org/packages/58/3b/1cdec6772bdbaf7b25dab360c59f03cadf05492dd724c6540af905389b07/pandas-3.0.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9d71c63ae4ebdbf70209742096f1fc46a83a0613c99d4b23766cced9ff8cd62a", size = 10914065, upload-time = "2026-05-11T18:53:49.134Z" }, - { url = "https://files.pythonhosted.org/packages/c4/c2/1ef644445fcd72e3627bceec77e3560636f87ddce4ed841afe76b83b5bf9/pandas-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e3a2ec42c98ffa2565a67e08e218d06d72576d758d90facb7c00805194d8f360", size = 11459188, upload-time = "2026-05-11T18:53:52.527Z" }, - { url = "https://files.pythonhosted.org/packages/7e/49/4d8d4f42cbc9c4adc7a1870f269c02cbd6cd40d059622c06fb298addcbad/pandas-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:335f62418ed562cfc3c49e9e196375c28b729dcef8543abf4f9438e381bf3c76", size = 11982966, upload-time = "2026-05-11T18:53:55.043Z" }, - { url = "https://files.pythonhosted.org/packages/38/55/792619469bab9882d8bbd5865d45a72f6478762d04a9af4bf0d08c503e95/pandas-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:3c20a521bbb85902f79f7270c80a59e1b5452d96d170c034f207181870f97ac5", size = 9876755, upload-time = "2026-05-11T18:53:58.067Z" }, - { url = "https://files.pythonhosted.org/packages/2a/af/33c469653b0ba03b50c3a98192d4c07f0c75c66b263ceb097fce0ee97d31/pandas-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:a2d2dff8a04f3917b55ab3910c32990f8ddf7eceba114947838cefa976a68977", size = 9198658, upload-time = "2026-05-11T18:54:00.733Z" }, - { url = "https://files.pythonhosted.org/packages/a2/fa/b8c257bd76b8bd060c3a9151c1fca05e9b9c5e3af5d0f549c0356f6d143d/pandas-3.0.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:0d589105b3c14645af1738ff279b2995102d8f7a03b0a66dc8d95550eb513e04", size = 10787242, upload-time = "2026-05-11T18:54:03.564Z" }, - { url = "https://files.pythonhosted.org/packages/54/eb/f19206ffb0bf1919002969aa448b4702c6594845156a6f8050674855aac3/pandas-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:13fc1e853d9e04743d11ba75a985ccbc2a317fe07d8af61e445a6fd24dacd6a6", size = 10436369, upload-time = "2026-05-11T18:54:06.311Z" }, - { url = "https://files.pythonhosted.org/packages/fd/24/c7c39fb4fe22b71a0c2d78bf0c585c600092d85f94f086d2b3b2f6ca27e2/pandas-3.0.3-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:819959dab7bbd0049c15623fbac4e29a191b9528160a61fb1032242d8ced2d9c", size = 10358306, upload-time = "2026-05-11T18:54:09.085Z" }, - { url = "https://files.pythonhosted.org/packages/16/ec/dd2a9eb7fa1204df88c0864164e35b228ac581062ac612ba0a67fd812e4c/pandas-3.0.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:60ae316d3fd75d1858d450d0db0103ea2be3e7d4a95ec2f064f7e2ae63f7b028", size = 10758394, upload-time = "2026-05-11T18:54:11.956Z" }, - { url = "https://files.pythonhosted.org/packages/95/6e/00c61ea8e85b4f6d8d35e11852a1a4998fc7fafc91c6a602d1cc9c972d64/pandas-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bd3a518890b400d32f9023722dc9a9a5c969f00b415419a3c06c043f09bb5d7d", size = 11375717, upload-time = "2026-05-11T18:54:14.539Z" }, - { url = "https://files.pythonhosted.org/packages/31/89/8fc1c268969fac43688d65fd92e67df24bd128d53cb4d2eee534cd307399/pandas-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9c39be2d709d01fa972a0cabc522389fceca4f3969332ba25a7d6c5802cf976a", size = 11828897, upload-time = "2026-05-11T18:54:17.146Z" }, - { url = "https://files.pythonhosted.org/packages/56/3b/e7d20dea247a3e6dc0bd8a6953854afbedc03951def4e7371e05e7263e25/pandas-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4db8c527972a821cf5286b40ccc57642a39bc62e62022b42f99f8a67fca8c3a1", size = 10900855, upload-time = "2026-05-11T18:54:19.72Z" }, - { url = "https://files.pythonhosted.org/packages/0f/54/68a0978d1ef8502b8492099beaa6e7a0c1b32e3b5d4f677f5810cb08711c/pandas-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b2c95f8bfc1ee412bf482605d7bfd30c12d1d26bd59fdd91efeef1d4718decb1", size = 9466464, upload-time = "2026-05-11T18:54:22.754Z" }, -] - -[[package]] -name = "pathspec" -version = "1.1.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5a/82/42f767fc1c1143d6fd36efb827202a2d997a375e160a71eb2888a925aac1/pathspec-1.1.1.tar.gz", hash = "sha256:17db5ecd524104a120e173814c90367a96a98d07c45b2e10c2f3919fff91bf5a", size = 135180, upload-time = "2026-04-27T01:46:08.907Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f1/d9/7fb5aa316bc299258e68c73ba3bddbc499654a07f151cba08f6153988714/pathspec-1.1.1-py3-none-any.whl", hash = "sha256:a00ce642f577bf7f473932318056212bc4f8bfdf53128c78bbd5af0b9b20b189", size = 57328, upload-time = "2026-04-27T01:46:07.06Z" }, -] - [[package]] name = "pillow" version = "12.3.0" @@ -1860,15 +654,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/36/54/0169bc772ec491108b62f644f8ecf1fe5d8ae5ebafde2ee2142210166903/pillow-12.3.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:04f01d28a6aaff387bf842a13be313df23ba0597a44f1a976c9feb3c6ff4711a", size = 7231786, upload-time = "2026-07-01T11:56:35.046Z" }, ] -[[package]] -name = "platformdirs" -version = "4.10.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d7/47/e4501f49c178ae1d9f4a75073fda4204f52647993f075a9db4d14930e0c5/platformdirs-4.10.0.tar.gz", hash = "sha256:31e761a6a0ca04faf7353ea759bdba55652be214725111e5aac52dfa29d4bef7", size = 31224, upload-time = "2026-05-28T03:32:53.587Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/81/e6/cd9575ac904136b3cbf7aa7ee819ef86eedb7274e46f230e94ea4342e729/platformdirs-4.10.0-py3-none-any.whl", hash = "sha256:fb516cdb12eb0d857d0cd85a7c57cea4d060bee4578d6cf5a14dfdf8cbf8784a", size = 22743, upload-time = "2026-05-28T03:32:52.175Z" }, -] - [[package]] name = "plotly" version = "6.8.0" @@ -1892,109 +677,31 @@ wheels = [ ] [[package]] -name = "properdocs" -version = "1.6.7" +name = "polars" +version = "1.42.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click" }, - { name = "colorama", marker = "sys_platform == 'win32'" }, - { name = "ghp-import" }, - { name = "jinja2" }, - { name = "markdown" }, - { name = "markupsafe" }, - { name = "packaging" }, - { name = "pathspec" }, - { name = "platformdirs" }, - { name = "pyyaml" }, - { name = "pyyaml-env-tag" }, - { name = "watchdog" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ec/29/f27a4e1eddf72ed3db6e47818fbafe6debbf09fd7051f9c1a007239b46ef/properdocs-1.6.7.tar.gz", hash = "sha256:adc7b16e562890af0e098a7e5b02e3a81c20894a87d6a28d345c9300de73c26e", size = 276141, upload-time = "2026-03-20T20:07:48.167Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/bd/4d/fc923f5c85318ee8cc903566dc4e0ebe41b2dfc1d2ecf5546db232397ed6/properdocs-1.6.7-py3-none-any.whl", hash = "sha256:6fa0cfa2e01bf338f684892c8a506cf70ea88ae7f3479c933b6fa20168101cbd", size = 225406, upload-time = "2026-03-20T20:07:46.875Z" }, -] - -[[package]] -name = "protobuf" -version = "7.35.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/da/01/9ef0afd7999eb9badb3a768b4aedd78c86d4c65cfaf1958ab276199e76b4/protobuf-7.35.1.tar.gz", hash = "sha256:ce115a26fe0c39a2c29973d914d327e516a6455464489fe3cd1e51a1b354f81a", size = 458717, upload-time = "2026-06-11T21:55:40.257Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/10/03/8aeeb7458d22546bf64b5250ca1daeb5ff757d900e8e4a7476c6f0db843e/protobuf-7.35.1-cp310-abi3-macosx_10_9_universal2.whl", hash = "sha256:24f857477359a85c0c235261b8ba905fd51b2562f4a64ca1df5473f29850cbf6", size = 433226, upload-time = "2026-06-11T21:55:31.719Z" }, - { url = "https://files.pythonhosted.org/packages/37/4b/dfb89eb0e652a1ff073c39a59fb5e3a83cfe9b57a2c83fa6d78270101767/protobuf-7.35.1-cp310-abi3-manylinux2014_aarch64.whl", hash = "sha256:11d6b0ec246892d85215b0a13ca6e0233cf5284b68f0ac02646427f4ff88a799", size = 328847, upload-time = "2026-06-11T21:55:34.035Z" }, - { url = "https://files.pythonhosted.org/packages/0f/58/dc12f2cd484951524af6e3382c785869b9b3fb5e52ee95ae23add53ee8f9/protobuf-7.35.1-cp310-abi3-manylinux2014_s390x.whl", hash = "sha256:b73f9489a4b8b1c9cb1f8ed951c736392592edb24b9d6819f36d2e10b171d5b4", size = 344030, upload-time = "2026-06-11T21:55:34.941Z" }, - { url = "https://files.pythonhosted.org/packages/e4/be/5b3cfe508bfab6761414ff944e3366eb13be4fd71efcd69450f89ba39f43/protobuf-7.35.1-cp310-abi3-manylinux2014_x86_64.whl", hash = "sha256:74758715c53d7158fb76caf4f0cfdacc5329a4b1bb994f865d6cf302d413a1c4", size = 327130, upload-time = "2026-06-11T21:55:35.921Z" }, - { url = "https://files.pythonhosted.org/packages/d8/bc/6d6c7ba8709c85f8f2c390b2b118d6fb08a783676a572271851bf45a7d22/protobuf-7.35.1-cp310-abi3-win32.whl", hash = "sha256:353652e4efd0bca5b5fc2656abf8307ef351f0cf938c9eba09f0e09c20a25c30", size = 428945, upload-time = "2026-06-11T21:55:37.034Z" }, - { url = "https://files.pythonhosted.org/packages/0a/19/8d0cb6f20a1ef7b18f1c8986ad5783f22f84cce39c6ce9a6e645ea55192e/protobuf-7.35.1-cp310-abi3-win_amd64.whl", hash = "sha256:230a75ddfc2de4806e56696ce9640c1cdfdb6543b7cfce98d42a4c0a0e7bdb87", size = 439996, upload-time = "2026-06-11T21:55:38.123Z" }, - { url = "https://files.pythonhosted.org/packages/19/c7/5f7c636ec43e0c545e28d1f1db71990108306f7bdcb89f069ba97e428e7f/protobuf-7.35.1-py3-none-any.whl", hash = "sha256:4bc97768d8fe4ad6743c8a19403e314511ed9f6d13205b687e52421c023ac1b9", size = 171659, upload-time = "2026-06-11T21:55:39.155Z" }, -] - -[[package]] -name = "pyarrow" -version = "24.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/91/13/13e1069b351bdc3881266e11147ffccf687505dbb0ea74036237f5d454a5/pyarrow-24.0.0.tar.gz", hash = "sha256:85fe721a14dd823aca09127acbb06c3ca723efbd436c004f16bca601b04dcc83", size = 1180261, upload-time = "2026-04-21T10:51:25.837Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/62/c9/a47ab7ece0d86cbe6678418a0fbd1ac4bb493b9184a3891dfa0e7f287ae0/pyarrow-24.0.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b0e131f880cda8d04e076cee175a46fc0e8bc8b65c99c6c09dff6669335fde74", size = 35068898, upload-time = "2026-04-21T10:46:36.599Z" }, - { url = "https://files.pythonhosted.org/packages/d1/bc/8db86617a9a58008acf8913d6fed68ea2a46acb6de928db28d724c891a68/pyarrow-24.0.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:1b2fe7f9a5566401a0ef2571f197eb92358925c1f0c8dba305d6e43ea0871bb3", size = 36679915, upload-time = "2026-04-21T10:46:42.602Z" }, - { url = "https://files.pythonhosted.org/packages/eb/8e/fb178720400ef69db251eb4a9c3ccf4af269bc1feb5055529b8fc87170d1/pyarrow-24.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0b3537c00fb8d384f15ac1e79b6eb6db04a16514c8c1d22e59a9b95c8ba42868", size = 45697931, upload-time = "2026-04-21T10:46:48.403Z" }, - { url = "https://files.pythonhosted.org/packages/f3/27/99c42abe8e21b44f4917f62631f3aa31404882a2c41d8a4cd5c110e13d52/pyarrow-24.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:14e31a3c9e35f1ab6356c6378f6f72830e6d2d5f1791df3774a7b097d18a6a1e", size = 48837449, upload-time = "2026-04-21T10:46:55.329Z" }, - { url = "https://files.pythonhosted.org/packages/36/b6/333749e2666e9032891125bf9c691146e92901bece62030ac1430e2e7c88/pyarrow-24.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b7d9a514e73bc42711e6a35aaccf3587c520024fe0a25d830a1a8a27c15f4f57", size = 49395949, upload-time = "2026-04-21T10:47:01.869Z" }, - { url = "https://files.pythonhosted.org/packages/17/25/c5201706a2dd374e8ba6ee3fd7a8c89fb7ffc16eed5217a91fd2bd7f7626/pyarrow-24.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b196eb3f931862af3fa84c2a253514d859c08e0d8fe020e07be12e75a5a9780c", size = 51912986, upload-time = "2026-04-21T10:47:09.872Z" }, - { url = "https://files.pythonhosted.org/packages/f8/d2/4d1bbba65320b21a49678d6fbdc6ff7c649251359fdcfc03568c4136231d/pyarrow-24.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:35405aecb474e683fb36af650618fd5340ee5471fc65a21b36076a18bbc6c981", size = 27255371, upload-time = "2026-04-21T10:47:15.943Z" }, - { url = "https://files.pythonhosted.org/packages/b4/a9/9686d9f07837f91f775e8932659192e02c74f9d8920524b480b85212cc68/pyarrow-24.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:6233c9ed9ab9d1db47de57d9753256d9dcffbf42db341576099f0fd9f6bf4810", size = 34981559, upload-time = "2026-04-21T10:47:22.17Z" }, - { url = "https://files.pythonhosted.org/packages/80/b6/0ddf0e9b6ead3474ab087ae598c76b031fc45532bf6a63f3a553440fb258/pyarrow-24.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:f7616236ec1bc2b15bfdec22a71ab38851c86f8f05ff64f379e1278cf20c634a", size = 36663654, upload-time = "2026-04-21T10:47:28.315Z" }, - { url = "https://files.pythonhosted.org/packages/7c/3b/926382efe8ce27ba729071d3566ade6dfb86bdf112f366000196b2f5780a/pyarrow-24.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:1617043b99bd33e5318ae18eb2919af09c71322ef1ca46566cdafc6e6712fb66", size = 45679394, upload-time = "2026-04-21T10:47:34.821Z" }, - { url = "https://files.pythonhosted.org/packages/b3/7a/829f7d9dfd37c207206081d6dad474d81dde29952401f07f2ba507814818/pyarrow-24.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6165461f55ef6314f026de6638d661188e3455d3ec49834556a0ebbdbace18bb", size = 48863122, upload-time = "2026-04-21T10:47:42.056Z" }, - { url = "https://files.pythonhosted.org/packages/5f/e8/f88ce625fe8babaae64e8db2d417c7653adb3019b08aae85c5ed787dc816/pyarrow-24.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3b13dedfe76a0ad2d1d859b0811b53827a4e9d93a0bcb05cf59333ab4980cc7e", size = 49376032, upload-time = "2026-04-21T10:47:48.967Z" }, - { url = "https://files.pythonhosted.org/packages/36/7a/82c363caa145fff88fb475da50d3bf52bb024f61917be5424c3392eaf878/pyarrow-24.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:25ea65d868eb04015cd18e6df2fbe98f07e5bda2abefabcb88fce39a947716f6", size = 51929490, upload-time = "2026-04-21T10:47:55.981Z" }, - { url = "https://files.pythonhosted.org/packages/66/1c/e3e72c8014ad2743ca64a701652c733cc5cbcee15c0463a32a8c55518d9e/pyarrow-24.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:295f0a7f2e242dabd513737cf076007dc5b2d59237e3eca37b05c0c6446f3826", size = 27355660, upload-time = "2026-04-21T10:48:01.718Z" }, - { url = "https://files.pythonhosted.org/packages/6f/d3/a1abf004482026ddc17f4503db227787fa3cfe41ec5091ff20e4fea55e57/pyarrow-24.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:02b001b3ed4723caa44f6cd1af2d5c86aa2cf9971dacc2ffa55b21237713dfba", size = 34976759, upload-time = "2026-04-21T10:48:07.258Z" }, - { url = "https://files.pythonhosted.org/packages/4f/4a/34f0a36d28a2dd32225301b79daad44e243dc1a2bb77d43b60749be255c4/pyarrow-24.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:04920d6a71aabd08a0417709efce97d45ea8e6fb733d9ca9ecffb13c67839f68", size = 36658471, upload-time = "2026-04-21T10:48:13.347Z" }, - { url = "https://files.pythonhosted.org/packages/1f/78/543b94712ae8bb1a6023bcc1acf1a740fbff8286747c289cd9468fced2a5/pyarrow-24.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:a964266397740257f16f7bb2e4f08a0c81454004beab8ff59dd531b73610e9f2", size = 45675981, upload-time = "2026-04-21T10:48:20.201Z" }, - { url = "https://files.pythonhosted.org/packages/84/9f/8fb7c222b100d314137fa40ec050de56cd8c6d957d1cfff685ce72f15b17/pyarrow-24.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6f066b179d68c413374294bc1735f68475457c933258df594443bb9d88ddc2a0", size = 48859172, upload-time = "2026-04-21T10:48:27.541Z" }, - { url = "https://files.pythonhosted.org/packages/a7/d3/1ea72538e6c8b3b475ed78d1049a2c518e655761ea50fe1171fc855fcab7/pyarrow-24.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:1183baeb14c5f587b1ec52831e665718ce632caab84b7cd6b85fd44f96114495", size = 49385733, upload-time = "2026-04-21T10:48:34.7Z" }, - { url = "https://files.pythonhosted.org/packages/c3/be/c3d8b06a1ba35f2260f8e1f771abbee7d5e345c0937aab90675706b1690a/pyarrow-24.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:806f24b4085453c197a5078218d1ee08783ebbba271badd153d1ae22a3ee804f", size = 51934335, upload-time = "2026-04-21T10:48:42.099Z" }, - { url = "https://files.pythonhosted.org/packages/9c/62/89e07a1e7329d2cde3e3c6994ba0839a24977a2beda8be6005ea3d860b99/pyarrow-24.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:e4505fc6583f7b05ab854934896bcac8253b04ac1171a77dfb73efef92076d91", size = 27271748, upload-time = "2026-04-21T10:49:42.532Z" }, - { url = "https://files.pythonhosted.org/packages/17/1a/cff3a59f80b5b1658549d46611b67163f65e0664431c076ad728bf9d5af4/pyarrow-24.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:1a4e45017efbf115032e4475ee876d525e0e36c742214fbe405332480ecd6275", size = 35238554, upload-time = "2026-04-21T10:48:48.526Z" }, - { url = "https://files.pythonhosted.org/packages/a8/99/cce0f42a327bfef2c420fb6078a3eb834826e5d6697bf3009fe11d2ad051/pyarrow-24.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:7986f1fa71cee060ad00758bcc79d3a93bab8559bf978fab9e53472a2e25a17b", size = 36782301, upload-time = "2026-04-21T10:48:55.181Z" }, - { url = "https://files.pythonhosted.org/packages/2a/66/8e560d5ff6793ca29aca213c53eec0dd482dd46cb93b2819e5aab52e4252/pyarrow-24.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:d3e0b61e8efb24ed38898e5cdc5fffa9124be480008d401a1f8071500494ae42", size = 45721929, upload-time = "2026-04-21T10:49:03.676Z" }, - { url = "https://files.pythonhosted.org/packages/27/0c/a26e25505d030716e078d9f16eb74973cbf0b33b672884e9f9da1c83b871/pyarrow-24.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:55a3bc1e3df3b5567b7d27ef551b2283f0c68a5e86f1cd56abc569da4f31335b", size = 48825365, upload-time = "2026-04-21T10:49:11.714Z" }, - { url = "https://files.pythonhosted.org/packages/5f/eb/771f9ecb0c65e73fe9dccdd1717901b9594f08c4515d000c7c62df573811/pyarrow-24.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:641f795b361874ac9da5294f8f443dfdbee355cf2bd9e3b8d97aaac2306b9b37", size = 49451819, upload-time = "2026-04-21T10:49:21.474Z" }, - { url = "https://files.pythonhosted.org/packages/48/da/61ae89a88732f5a785646f3ec6125dbb640fa98a540eb2b9889caa561403/pyarrow-24.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8adc8e6ce5fccf5dc707046ae4914fd537def529709cc0d285d37a7f9cd442ca", size = 51909252, upload-time = "2026-04-21T10:49:31.164Z" }, - { url = "https://files.pythonhosted.org/packages/cb/1a/8dd5cafab7b66573fa91c03d06d213356ad4edd71813aa75e08ce2b3a844/pyarrow-24.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:9b18371ad2f44044b81a8d23bc2d8a9b6a6226dca775e8e16cfee640473d6c5d", size = 27388127, upload-time = "2026-04-21T10:49:37.334Z" }, - { url = "https://files.pythonhosted.org/packages/ad/80/d022a34ff05d2cbedd8ccf841fc1f532ecfa9eb5ed1711b56d0e0ea71fc9/pyarrow-24.0.0-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:1cc9057f0319e26333b357e17f3c2c022f1a83739b48a88b25bfd5fa2dc18838", size = 35007997, upload-time = "2026-04-21T10:49:48.796Z" }, - { url = "https://files.pythonhosted.org/packages/1a/ff/f01485fda6f4e5d441afb8dd5e7681e4db18826c1e271852f5d3957d6a80/pyarrow-24.0.0-cp314-cp314-macosx_12_0_x86_64.whl", hash = "sha256:e6f1278ee4785b6db21229374a1c9e54ec7c549de5d1efc9630b6207de7e170b", size = 36678720, upload-time = "2026-04-21T10:49:55.858Z" }, - { url = "https://files.pythonhosted.org/packages/9e/c2/2d2d5fea814237923f71b36495211f20b43a1576f9a4d6da7e751a64ec6f/pyarrow-24.0.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:adbbedc55506cbdabb830890444fb856bfb0060c46c6f8026c6c2f2cf86ae795", size = 45741852, upload-time = "2026-04-21T10:50:04.624Z" }, - { url = "https://files.pythonhosted.org/packages/8e/3a/28ba9c1c1ebdbb5f1b94dfebb46f207e52e6a554b7fe4132540fde29a3a0/pyarrow-24.0.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:ae8a1145af31d903fa9bb166824d7abe9b4681a000b0159c9fb99c11bc11ad26", size = 48889852, upload-time = "2026-04-21T10:50:12.293Z" }, - { url = "https://files.pythonhosted.org/packages/df/51/4a389acfd31dca009f8fb82d7f510bb4130f2b3a8e18cf00194d0687d8ac/pyarrow-24.0.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d7027eba1df3b2069e2e8d80f644fa0918b68c46432af3d088ddd390d063ecde", size = 49445207, upload-time = "2026-04-21T10:50:20.677Z" }, - { url = "https://files.pythonhosted.org/packages/19/4b/0bab2b23d2ae901b1b9a03c0efd4b2d070256f8ce3fc43f6e58c167b2081/pyarrow-24.0.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e56a1ffe9bf7b727432b89104cc0849c21582949dd7bdcb34f17b2001a351a76", size = 51954117, upload-time = "2026-04-21T10:50:29.14Z" }, - { url = "https://files.pythonhosted.org/packages/29/88/f4e9145da0417b3d2c12035a8492b35ff4a3dbc653e614fcfb51d9dedb38/pyarrow-24.0.0-cp314-cp314-win_amd64.whl", hash = "sha256:38be1808cdd068605b787e6ca9119b27eb275a0234e50212c3492331680c3b1e", size = 28001155, upload-time = "2026-04-21T10:51:22.337Z" }, - { url = "https://files.pythonhosted.org/packages/79/4f/46a49a63f43526da895b1a45bbb51d5baf8e4d77159f8528fc3e5490007f/pyarrow-24.0.0-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:418e48ce50a45a6a6c73c454677203a9c75c966cb1e92ca3370959185f197a05", size = 35250387, upload-time = "2026-04-21T10:50:35.552Z" }, - { url = "https://files.pythonhosted.org/packages/a0/da/d5e0cd5ef00796922404806d5f00325cdadc3441ce2c13fe7115f2df9a64/pyarrow-24.0.0-cp314-cp314t-macosx_12_0_x86_64.whl", hash = "sha256:2f16197705a230a78270cdd4ea8a1d57e86b2fdcbc34a1f6aebc72e65c986f9a", size = 36797102, upload-time = "2026-04-21T10:50:42.417Z" }, - { url = "https://files.pythonhosted.org/packages/34/c7/5904145b0a593a05236c882933d439b5720f0a145381179063722fbfc123/pyarrow-24.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:fb24ac194bfc5e86839d7dcd52092ee31e5fe6733fe11f5e3b06ef0812b20072", size = 45745118, upload-time = "2026-04-21T10:50:49.324Z" }, - { url = "https://files.pythonhosted.org/packages/13/d3/cca42fe166d1c6e4d5b80e530b7949104d10e17508a90ae202dac205ce2a/pyarrow-24.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:9700ebd9a51f5895ce75ff4ac4b3c47a7d4b42bc618be8e713e5d56bacf5f931", size = 48844765, upload-time = "2026-04-21T10:50:55.579Z" }, - { url = "https://files.pythonhosted.org/packages/b0/49/942c3b79878ba928324d1e17c274ed84581db8c0a749b24bcf4cbdf15bd3/pyarrow-24.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d8ddd2768da81d3ee08cfea9b597f4abb4e8e1dc8ae7e204b608d23a0d3ab699", size = 49471890, upload-time = "2026-04-21T10:51:02.439Z" }, - { url = "https://files.pythonhosted.org/packages/76/97/ff71431000a75d84135a1ace5ca4ba11726a231a8007bbb320a4c54075d5/pyarrow-24.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:61a3d7eaa97a14768b542f3d284dc6400dd2470d9f080708b13cd46b6ae18136", size = 51932250, upload-time = "2026-04-21T10:51:10.576Z" }, - { url = "https://files.pythonhosted.org/packages/51/be/6f79d55816d5c22557cf27533543d5d70dfe692adfbee4b99f2760674f38/pyarrow-24.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:c91d00057f23b8d353039520dc3a6c09d8608164c692e9f59a175a42b2ae0c19", size = 28131282, upload-time = "2026-04-21T10:51:16.815Z" }, + { name = "polars-runtime-32" }, ] - -[[package]] -name = "pycodestyle" -version = "2.14.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/11/e0/abfd2a0d2efe47670df87f3e3a0e2edda42f055053c85361f19c0e2c1ca8/pycodestyle-2.14.0.tar.gz", hash = "sha256:c4b5b517d278089ff9d0abdec919cd97262a3367449ea1c8b49b91529167b783", size = 39472, upload-time = "2025-06-20T18:49:48.75Z" } +sdist = { url = "https://files.pythonhosted.org/packages/27/99/fe77f10a13a778705ef05b499fc708c9a0b0a3680d9eb6bc6e1b6a6b9914/polars-1.42.1.tar.gz", hash = "sha256:2fe94f3059334650bd850ae19a9c165dcd5d9cb12cd95ea04de2201662e70e8a", size = 741532, upload-time = "2026-06-30T04:57:51.504Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d7/27/a58ddaf8c588a3ef080db9d0b7e0b97215cee3a45df74f3a94dbbf5c893a/pycodestyle-2.14.0-py2.py3-none-any.whl", hash = "sha256:dd6bf7cb4ee77f8e016f9c8e74a35ddd9f67e1d5fd4184d86c3b98e07099f42d", size = 31594, upload-time = "2025-06-20T18:49:47.491Z" }, + { url = "https://files.pythonhosted.org/packages/be/6a/edd939cc6fa04b6415aaa9bf19720fc74ead81234b3d38542e0005816d4d/polars-1.42.1-py3-none-any.whl", hash = "sha256:3c0c65cdfa21a621650c4bdcbbccf93964d052fd766c3e70e84a55d961c259fd", size = 837622, upload-time = "2026-06-30T04:56:34.686Z" }, ] [[package]] -name = "pycparser" -version = "3.0" +name = "polars-runtime-32" +version = "1.42.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/59/15bcc4dac380c6d63efa5446d8317f22671cbd6c9dadd576bd17a334c45a/polars_runtime_32-1.42.1.tar.gz", hash = "sha256:4d4809e1c1b9a6611f6944f27b24abea902b5159e6b6fa262fd716e947af5afd", size = 3045460, upload-time = "2026-06-30T04:57:52.866Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, + { url = "https://files.pythonhosted.org/packages/62/29/16ff6e4e91d71e530d3581f45e342a9cc35072ac6b31dcbc2fa33de2569e/polars_runtime_32-1.42.1-cp310-abi3-macosx_10_12_x86_64.whl", hash = "sha256:bbdc26d68ee5b23b0ce227fa0599220aa35b77c826b6b0a6b2d8e7f6c1c36974", size = 53117325, upload-time = "2026-06-30T04:56:37.972Z" }, + { url = "https://files.pythonhosted.org/packages/04/8e/4f8296fcfd1347f1351342fecf13bf2430d7efbae2f1f45964ec7930a99e/polars_runtime_32-1.42.1-cp310-abi3-macosx_11_0_arm64.whl", hash = "sha256:f6c0288be940b607dc4a7476c01e67fb6bbee93f5f1dd42c64970274c71008ba", size = 47446251, upload-time = "2026-06-30T04:56:41.459Z" }, + { url = "https://files.pythonhosted.org/packages/88/2e/0d66a7deadc453b890c3391034ca8ab4b05d0beaebbb92a7d65199fba61b/polars_runtime_32-1.42.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635d9dbcae2302ae223afb395d5cd220bffa61a53d0ab6871d17c8bc830101cf", size = 51359402, upload-time = "2026-06-30T04:56:44.595Z" }, + { url = "https://files.pythonhosted.org/packages/5d/10/ffb85fa380bc9c9000dc35f40f44954dde49023018501c54faab94b3a39e/polars_runtime_32-1.42.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d059e8e53cc114ff82f9bd791fd341dc53534a2c745e6f6aa37594c3a93f01fe", size = 57302723, upload-time = "2026-06-30T04:56:47.609Z" }, + { url = "https://files.pythonhosted.org/packages/c2/63/ca50adc62e44224ca5c622a842ba6f35ee87d1d40ef0df7ea2ed6c6edb08/polars_runtime_32-1.42.1-cp310-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f91f0b13588324905682809d270e1de5f1990c908721c8527657d77a044c9919", size = 51515673, upload-time = "2026-06-30T04:56:50.88Z" }, + { url = "https://files.pythonhosted.org/packages/63/c3/08fbbf38deaa17bf34a601d327cb7451074098673c78b7c1a8538dde9794/polars_runtime_32-1.42.1-cp310-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:8b8bf972d99d48aaaa2582e2bce966a6f43bc815bd8725d15f5cab9e2fb15d17", size = 55217259, upload-time = "2026-06-30T04:56:53.834Z" }, + { url = "https://files.pythonhosted.org/packages/d1/0e/51db89361668fe077a835fc579277f824ba526e7daf7b94d23d25439e0d0/polars_runtime_32-1.42.1-cp310-abi3-win_amd64.whl", hash = "sha256:e9364c26da389a8b7339e4d29e20a3d12af730247e6ed3b7804bddce2477f428", size = 52715432, upload-time = "2026-06-30T04:56:57.109Z" }, + { url = "https://files.pythonhosted.org/packages/76/c5/2fb8592d691bd114de25d9c84300b23541dca7060eac11d7b4bed0327786/polars_runtime_32-1.42.1-cp310-abi3-win_arm64.whl", hash = "sha256:7051226e6b42ffc395a7a9190377cd28649fbfb991b8f85c6271f4e1cfb736fb", size = 46718300, upload-time = "2026-06-30T04:56:59.855Z" }, ] [[package]] @@ -2114,43 +821,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/4b/2d/69abac8f838090bbecd5df894befb2c2619e7996a98ddb949db9f3b93225/pydantic_core-2.46.4-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:d51026d73fcfd93610abc7b27789c26b313920fcfb20e27462d74a7f8b06e983", size = 2193071, upload-time = "2026-05-06T13:38:08.682Z" }, ] -[[package]] -name = "pydantic-settings" -version = "2.14.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pydantic" }, - { name = "python-dotenv" }, - { name = "typing-inspection" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/5c/b5/8f48e906c3e0205276e8bd8cb7512217a87b2685304d64be27cad5b3019f/pydantic_settings-2.14.2.tar.gz", hash = "sha256:c19dd64b19097f1de80184f0cc7b0272a13ae6e170cbf240a3e27e381ed14a5f", size = 237700, upload-time = "2026-06-19T13:44:56.324Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/77/c1/6e422f34e569cf8e18df68d1939c81c099d2b61e4f7d9621c8a77560799c/pydantic_settings-2.14.2-py3-none-any.whl", hash = "sha256:a20c97b37910b6550d5ea50fbcc2d4187defe58cd57070b73863d069419c9440", size = 61715, upload-time = "2026-06-19T13:44:55.02Z" }, -] - -[[package]] -name = "pydeck" -version = "0.9.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "jinja2" }, - { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, - { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/eb/df/4e9e7f20f8034a37c6571c93809f6d22388c39978c98d174d656c1a18fd2/pydeck-0.9.2.tar.gz", hash = "sha256:c10d9035e81ead6385264cac8d19402471f6866a15ca1f7df1400f52142bcf87", size = 5849672, upload-time = "2026-04-16T18:30:30.089Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/88/24/b30ee7d723100fd822de1bb4c0adea62f3419884a75a536f35f355d1e7c0/pydeck-0.9.2-py2.py3-none-any.whl", hash = "sha256:8213dfeacc5f6bfe6825f61c8ee34e3850e8a31fc43924379ec98edb34a75b25", size = 11305615, upload-time = "2026-04-16T18:30:28.133Z" }, -] - -[[package]] -name = "pyflakes" -version = "3.4.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/45/dc/fd034dc20b4b264b3d015808458391acbf9df40b1e54750ef175d39180b1/pyflakes-3.4.0.tar.gz", hash = "sha256:b24f96fafb7d2ab0ec5075b7350b3d2d2218eab42003821c06344973d3ea2f58", size = 64669, upload-time = "2025-06-20T18:45:27.834Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c2/2f/81d580a0fb83baeb066698975cb14a618bdbed7720678566f1b046a95fe8/pyflakes-3.4.0-py2.py3-none-any.whl", hash = "sha256:f742a7dbd0d9cb9ea41e9a24a918996e8170c799fa528688d40dd582c8265f4f", size = 63551, upload-time = "2025-06-20T18:45:26.937Z" }, -] - [[package]] name = "pygments" version = "2.20.0" @@ -2160,33 +830,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, ] -[[package]] -name = "pyjwt" -version = "2.13.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/3b/81/58d0ac84e1ef3a3843791d6954d94c0b33d526c75eeb1efbce9d0a4c4077/pyjwt-2.13.0.tar.gz", hash = "sha256:41571c89ca91598c79e8ef18a2d07367d4810fbbd6f637794879baf1b7703423", size = 107515, upload-time = "2026-05-21T19:54:36.618Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a3/5e/ecf12fdb62546d64385c158514e9b2b671f7832108ef2ecd2020ce0af2d1/pyjwt-2.13.0-py3-none-any.whl", hash = "sha256:66adcc2aff09b3f1bbd95fc1e1577df8ac8723c978552fd43304c8a290ac5728", size = 31274, upload-time = "2026-05-21T19:54:35.362Z" }, -] - -[package.optional-dependencies] -crypto = [ - { name = "cryptography" }, -] - -[[package]] -name = "pymdown-extensions" -version = "11.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markdown" }, - { name = "pyyaml" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/47/67/f1e79672a5f91985577c7984c9709ca110e4fd37fe7fd167b60422e6ccc2/pymdown_extensions-11.0.tar.gz", hash = "sha256:8269cef0247f9e2d0a62fcea10860aba05c1cbab5470fd4b63230b96434dc589", size = 857049, upload-time = "2026-06-23T02:27:45.146Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/af/b6/1ae53367e28b9cffa3be7574e13fbe4589694272fd47710fbdbafd3d63c6/pymdown_extensions-11.0-py3-none-any.whl", hash = "sha256:fbc4acb641814fa9d17521bbd21a5240ef739a662f11c06330c4b78c93e954d6", size = 269415, upload-time = "2026-06-23T02:27:43.826Z" }, -] - [[package]] name = "pyparsing" version = "3.3.2" @@ -2212,33 +855,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/24/25/1de2678b631f5a49215c6c96fff41ba892b0a34df68d6d80292b1b48aa7f/pytest-9.1.1-py3-none-any.whl", hash = "sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c", size = 386536, upload-time = "2026-06-19T10:58:31.347Z" }, ] -[[package]] -name = "pytest-asyncio" -version = "1.4.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pytest" }, - { name = "typing-extensions", marker = "python_full_version < '3.13'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/43/7c/d36d04db312ecf4298932ef77e6e4a9e8ad017906e24e34f0b0c361a2473/pytest_asyncio-1.4.0.tar.gz", hash = "sha256:c6c0d2259945122819f171a32ecea2c349ead889ee28176caaf492143424be42", size = 58514, upload-time = "2026-05-26T09:56:04.083Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/03/e2/08a497ef684b88559c9cc5f4ad53a37e7b99e727094a86d6ea32536d5d3c/pytest_asyncio-1.4.0-py3-none-any.whl", hash = "sha256:933ca923a23075a87fb7070c0ec272a6848489824d887c85c812670932835aa1", size = 16930, upload-time = "2026-05-26T09:56:02.576Z" }, -] - -[[package]] -name = "pytest-cov" -version = "7.1.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "coverage", extra = ["toml"] }, - { name = "pluggy" }, - { name = "pytest" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b1/51/a849f96e117386044471c8ec2bd6cfebacda285da9525c9106aeb28da671/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2", size = 55592, upload-time = "2026-03-21T20:11:16.284Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9d/7a/d968e294073affff457b041c2be9868a40c1c71f4a35fcc1e45e5493067b/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678", size = 22876, upload-time = "2026-03-21T20:11:14.438Z" }, -] - [[package]] name = "python-dateutil" version = "2.9.0.post0" @@ -2252,502 +868,25 @@ wheels = [ ] [[package]] -name = "python-dotenv" -version = "1.2.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" }, -] - -[[package]] -name = "python-multipart" -version = "0.0.32" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5b/42/55c32bb9b12693c092ad250a0e82edb5b31ddeda6eb772de5f308b3804ad/python_multipart-0.0.32.tar.gz", hash = "sha256:be54b7f3fa167bb83e4fcd936b887b708f4e57fe75911c02aebf53efaf8d938e", size = 46881, upload-time = "2026-06-04T16:18:58.647Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e1/04/e8135ebd1ad02c56ec633277529b2602ff99ff634be76cdba5744cf554fd/python_multipart-0.0.32-py3-none-any.whl", hash = "sha256:ff6d3f776f16878c894e52e107296ffc890e913c611b1a4ec6c44e2821fe2e23", size = 30042, upload-time = "2026-06-04T16:18:57.319Z" }, -] - -[[package]] -name = "pytokens" -version = "0.4.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b6/34/b4e015b99031667a7b960f888889c5bd34ef585c85e1cb56a594b92836ac/pytokens-0.4.1.tar.gz", hash = "sha256:292052fe80923aae2260c073f822ceba21f3872ced9a68bb7953b348e561179a", size = 23015, upload-time = "2026-01-30T01:03:45.924Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3d/92/790ebe03f07b57e53b10884c329b9a1a308648fc083a6d4a39a10a28c8fc/pytokens-0.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d70e77c55ae8380c91c0c18dea05951482e263982911fc7410b1ffd1dadd3440", size = 160864, upload-time = "2026-01-30T01:02:57.882Z" }, - { url = "https://files.pythonhosted.org/packages/13/25/a4f555281d975bfdd1eba731450e2fe3a95870274da73fb12c40aeae7625/pytokens-0.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a58d057208cb9075c144950d789511220b07636dd2e4708d5645d24de666bdc", size = 248565, upload-time = "2026-01-30T01:02:59.912Z" }, - { url = "https://files.pythonhosted.org/packages/17/50/bc0394b4ad5b1601be22fa43652173d47e4c9efbf0044c62e9a59b747c56/pytokens-0.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b49750419d300e2b5a3813cf229d4e5a4c728dae470bcc89867a9ad6f25a722d", size = 260824, upload-time = "2026-01-30T01:03:01.471Z" }, - { url = "https://files.pythonhosted.org/packages/4e/54/3e04f9d92a4be4fc6c80016bc396b923d2a6933ae94b5f557c939c460ee0/pytokens-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d9907d61f15bf7261d7e775bd5d7ee4d2930e04424bab1972591918497623a16", size = 264075, upload-time = "2026-01-30T01:03:04.143Z" }, - { url = "https://files.pythonhosted.org/packages/d1/1b/44b0326cb5470a4375f37988aea5d61b5cc52407143303015ebee94abfd6/pytokens-0.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:ee44d0f85b803321710f9239f335aafe16553b39106384cef8e6de40cb4ef2f6", size = 103323, upload-time = "2026-01-30T01:03:05.412Z" }, - { url = "https://files.pythonhosted.org/packages/41/5d/e44573011401fb82e9d51e97f1290ceb377800fb4eed650b96f4753b499c/pytokens-0.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:140709331e846b728475786df8aeb27d24f48cbcf7bcd449f8de75cae7a45083", size = 160663, upload-time = "2026-01-30T01:03:06.473Z" }, - { url = "https://files.pythonhosted.org/packages/f0/e6/5bbc3019f8e6f21d09c41f8b8654536117e5e211a85d89212d59cbdab381/pytokens-0.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6d6c4268598f762bc8e91f5dbf2ab2f61f7b95bdc07953b602db879b3c8c18e1", size = 255626, upload-time = "2026-01-30T01:03:08.177Z" }, - { url = "https://files.pythonhosted.org/packages/bf/3c/2d5297d82286f6f3d92770289fd439956b201c0a4fc7e72efb9b2293758e/pytokens-0.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:24afde1f53d95348b5a0eb19488661147285ca4dd7ed752bbc3e1c6242a304d1", size = 269779, upload-time = "2026-01-30T01:03:09.756Z" }, - { url = "https://files.pythonhosted.org/packages/20/01/7436e9ad693cebda0551203e0bf28f7669976c60ad07d6402098208476de/pytokens-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5ad948d085ed6c16413eb5fec6b3e02fa00dc29a2534f088d3302c47eb59adf9", size = 268076, upload-time = "2026-01-30T01:03:10.957Z" }, - { url = "https://files.pythonhosted.org/packages/2e/df/533c82a3c752ba13ae7ef238b7f8cdd272cf1475f03c63ac6cf3fcfb00b6/pytokens-0.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:3f901fe783e06e48e8cbdc82d631fca8f118333798193e026a50ce1b3757ea68", size = 103552, upload-time = "2026-01-30T01:03:12.066Z" }, - { url = "https://files.pythonhosted.org/packages/cb/dc/08b1a080372afda3cceb4f3c0a7ba2bde9d6a5241f1edb02a22a019ee147/pytokens-0.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8bdb9d0ce90cbf99c525e75a2fa415144fd570a1ba987380190e8b786bc6ef9b", size = 160720, upload-time = "2026-01-30T01:03:13.843Z" }, - { url = "https://files.pythonhosted.org/packages/64/0c/41ea22205da480837a700e395507e6a24425151dfb7ead73343d6e2d7ffe/pytokens-0.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5502408cab1cb18e128570f8d598981c68a50d0cbd7c61312a90507cd3a1276f", size = 254204, upload-time = "2026-01-30T01:03:14.886Z" }, - { url = "https://files.pythonhosted.org/packages/e0/d2/afe5c7f8607018beb99971489dbb846508f1b8f351fcefc225fcf4b2adc0/pytokens-0.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:29d1d8fb1030af4d231789959f21821ab6325e463f0503a61d204343c9b355d1", size = 268423, upload-time = "2026-01-30T01:03:15.936Z" }, - { url = "https://files.pythonhosted.org/packages/68/d4/00ffdbd370410c04e9591da9220a68dc1693ef7499173eb3e30d06e05ed1/pytokens-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:970b08dd6b86058b6dc07efe9e98414f5102974716232d10f32ff39701e841c4", size = 266859, upload-time = "2026-01-30T01:03:17.458Z" }, - { url = "https://files.pythonhosted.org/packages/a7/c9/c3161313b4ca0c601eeefabd3d3b576edaa9afdefd32da97210700e47652/pytokens-0.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:9bd7d7f544d362576be74f9d5901a22f317efc20046efe2034dced238cbbfe78", size = 103520, upload-time = "2026-01-30T01:03:18.652Z" }, - { url = "https://files.pythonhosted.org/packages/8f/a7/b470f672e6fc5fee0a01d9e75005a0e617e162381974213a945fcd274843/pytokens-0.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4a14d5f5fc78ce85e426aa159489e2d5961acf0e47575e08f35584009178e321", size = 160821, upload-time = "2026-01-30T01:03:19.684Z" }, - { url = "https://files.pythonhosted.org/packages/80/98/e83a36fe8d170c911f864bfded690d2542bfcfacb9c649d11a9e6eb9dc41/pytokens-0.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97f50fd18543be72da51dd505e2ed20d2228c74e0464e4262e4899797803d7fa", size = 254263, upload-time = "2026-01-30T01:03:20.834Z" }, - { url = "https://files.pythonhosted.org/packages/0f/95/70d7041273890f9f97a24234c00b746e8da86df462620194cef1d411ddeb/pytokens-0.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc74c035f9bfca0255c1af77ddd2d6ae8419012805453e4b0e7513e17904545d", size = 268071, upload-time = "2026-01-30T01:03:21.888Z" }, - { url = "https://files.pythonhosted.org/packages/da/79/76e6d09ae19c99404656d7db9c35dfd20f2086f3eb6ecb496b5b31163bad/pytokens-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f66a6bbe741bd431f6d741e617e0f39ec7257ca1f89089593479347cc4d13324", size = 271716, upload-time = "2026-01-30T01:03:23.633Z" }, - { url = "https://files.pythonhosted.org/packages/79/37/482e55fa1602e0a7ff012661d8c946bafdc05e480ea5a32f4f7e336d4aa9/pytokens-0.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:b35d7e5ad269804f6697727702da3c517bb8a5228afa450ab0fa787732055fc9", size = 104539, upload-time = "2026-01-30T01:03:24.788Z" }, - { url = "https://files.pythonhosted.org/packages/30/e8/20e7db907c23f3d63b0be3b8a4fd1927f6da2395f5bcc7f72242bb963dfe/pytokens-0.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:8fcb9ba3709ff77e77f1c7022ff11d13553f3c30299a9fe246a166903e9091eb", size = 168474, upload-time = "2026-01-30T01:03:26.428Z" }, - { url = "https://files.pythonhosted.org/packages/d6/81/88a95ee9fafdd8f5f3452107748fd04c24930d500b9aba9738f3ade642cc/pytokens-0.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:79fc6b8699564e1f9b521582c35435f1bd32dd06822322ec44afdeba666d8cb3", size = 290473, upload-time = "2026-01-30T01:03:27.415Z" }, - { url = "https://files.pythonhosted.org/packages/cf/35/3aa899645e29b6375b4aed9f8d21df219e7c958c4c186b465e42ee0a06bf/pytokens-0.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d31b97b3de0f61571a124a00ffe9a81fb9939146c122c11060725bd5aea79975", size = 303485, upload-time = "2026-01-30T01:03:28.558Z" }, - { url = "https://files.pythonhosted.org/packages/52/a0/07907b6ff512674d9b201859f7d212298c44933633c946703a20c25e9d81/pytokens-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:967cf6e3fd4adf7de8fc73cd3043754ae79c36475c1c11d514fc72cf5490094a", size = 306698, upload-time = "2026-01-30T01:03:29.653Z" }, - { url = "https://files.pythonhosted.org/packages/39/2a/cbbf9250020a4a8dd53ba83a46c097b69e5eb49dd14e708f496f548c6612/pytokens-0.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:584c80c24b078eec1e227079d56dc22ff755e0ba8654d8383b2c549107528918", size = 116287, upload-time = "2026-01-30T01:03:30.912Z" }, - { url = "https://files.pythonhosted.org/packages/c6/78/397db326746f0a342855b81216ae1f0a32965deccfd7c830a2dbc66d2483/pytokens-0.4.1-py3-none-any.whl", hash = "sha256:26cef14744a8385f35d0e095dc8b3a7583f6c953c2e3d269c7f82484bf5ad2de", size = 13729, upload-time = "2026-01-30T01:03:45.029Z" }, -] - -[[package]] -name = "pywin32" -version = "312" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1f/f5/10a6e845a00fc5e7afd0a988b744f403d4d57162a28d160a093c4d9322f0/pywin32-312-cp311-cp311-win32.whl", hash = "sha256:17948aeadbdb091f0ced6ef0841620794e68327b94ee415571c1203594b7215c", size = 6362659, upload-time = "2026-06-04T07:49:21.349Z" }, - { url = "https://files.pythonhosted.org/packages/35/c4/dcd2d62b5944b6d5db53413a5899016ccd57ffcb7278f3f81655d25d2027/pywin32-312-cp311-cp311-win_amd64.whl", hash = "sha256:d11417d84412f859b722fad0841b3614459ed0047f7542d8362e77884f6b6e8a", size = 6928825, upload-time = "2026-06-04T07:49:23.934Z" }, - { url = "https://files.pythonhosted.org/packages/b7/56/3cbb433fe4501cdba2eb9040f56a4e1a8243faa4186b25295564d1a7a79d/pywin32-312-cp311-cp311-win_arm64.whl", hash = "sha256:b2200a054ca6d6625c4842fc56a4976a4b47f96b73dbe5538c3f813a80359f47", size = 6721875, upload-time = "2026-06-04T07:49:26.416Z" }, - { url = "https://files.pythonhosted.org/packages/83/ff/32aa7d2ed0ab12b323aaa64f9b75e6ad4f8fd09f9ccfc28c79414d46838d/pywin32-312-cp312-cp312-win32.whl", hash = "sha256:dab4f65ac9c4e48400a2a0530c46c3c579cd5905ecd11b80692373915269208b", size = 6371877, upload-time = "2026-06-04T07:49:28.836Z" }, - { url = "https://files.pythonhosted.org/packages/03/d9/77040d3b43df3f3be32ea289433d660d2727f5ba327bc73be835127d9d60/pywin32-312-cp312-cp312-win_amd64.whl", hash = "sha256:b457f6d628a47e8a7346ce22acb7e1a46a4a78b52e1d17e1af56871bd19a93bc", size = 6914841, upload-time = "2026-06-04T07:49:31.85Z" }, - { url = "https://files.pythonhosted.org/packages/e3/cc/7b1ec671775756020a0ee7f4feeaf3c568f0ab86bd3900088cf986937a92/pywin32-312-cp312-cp312-win_arm64.whl", hash = "sha256:6017c58e12f6809fbb0555b75df144c2922a9ffd18e4b9b5afa863b6c1a9d950", size = 6727901, upload-time = "2026-06-04T07:49:34.244Z" }, - { url = "https://files.pythonhosted.org/packages/2d/41/12fbfd7f36ed2146d8bc9de96c2741296bf0d490b98508496cff322e274c/pywin32-312-cp313-cp313-win32.whl", hash = "sha256:7a27df850933d16a8eabfbaeb73d52b273e2da667f80d70b01a89d1f6828d02c", size = 6370184, upload-time = "2026-06-04T07:49:36.253Z" }, - { url = "https://files.pythonhosted.org/packages/ba/db/36a78e3403099d31d9746d13fdcde5accc43c1155f375a34d15983a479a7/pywin32-312-cp313-cp313-win_amd64.whl", hash = "sha256:c53e878d15a1c44788082bfe712a905433473aa38f86375b7cf8b45e3acbaaf9", size = 6914298, upload-time = "2026-06-04T07:49:38.876Z" }, - { url = "https://files.pythonhosted.org/packages/84/37/c1697194092b76de9ed47ca124323f02c57ffc8a45c06f88a3d5acaf01eb/pywin32-312-cp313-cp313-win_arm64.whl", hash = "sha256:59aba5d5940842075343a5ddc6b11f1cdf0d1567fe745290359dfbcc7c2eb831", size = 6727640, upload-time = "2026-06-04T07:49:41.083Z" }, - { url = "https://files.pythonhosted.org/packages/fc/2b/1f3cded5822fd49c02f40544cbb5f58c7cfd6b1694869fd476cb6170ee97/pywin32-312-cp314-cp314-win32.whl", hash = "sha256:a77a90fbb6881238d2ca9c6fd797b25817f3768fe78d214a90137ff055a75f5b", size = 6468928, upload-time = "2026-06-04T07:49:43.188Z" }, - { url = "https://files.pythonhosted.org/packages/21/82/3bf86d2e2808902013132e1ce905a7da0da53790f3836c64bf44d55e24f3/pywin32-312-cp314-cp314-win_amd64.whl", hash = "sha256:a4dd3a848290ef724347b19f301045831d8e802fa4464f491b98b1e0a081432e", size = 7024157, upload-time = "2026-06-04T07:49:45.34Z" }, - { url = "https://files.pythonhosted.org/packages/a4/0e/73f6d6800b4f27655abd9e9f6aaeaefcddb2b946e4674efa2bab184a7f7b/pywin32-312-cp314-cp314-win_arm64.whl", hash = "sha256:9fce94568364e0155e6dfb781ac5d95903be8baf28670632beab1b523f300daa", size = 6839598, upload-time = "2026-06-04T07:49:47.613Z" }, - { url = "https://files.pythonhosted.org/packages/eb/61/caa39686032d2ebdd04ff0ab5cbe163126c0066d98e00c9018646e42393b/pywin32-312-cp315-cp315-win32.whl", hash = "sha256:5c1fbe4a937a73ae9297384a3da38518cbc694c68ad8a809b2e19acd350f03ed", size = 6471159, upload-time = "2026-06-04T07:49:50.035Z" }, - { url = "https://files.pythonhosted.org/packages/0f/cd/7e1de64a4a6f69c04214169657ccab0d93a670ea50e35eb8f489d7378249/pywin32-312-cp315-cp315-win_amd64.whl", hash = "sha256:c2f03a0f73f804a13c2735b99392b0cd426bb4f2c4d0178e5ac966a0f21618d5", size = 7025293, upload-time = "2026-06-04T07:49:54.857Z" }, - { url = "https://files.pythonhosted.org/packages/23/ed/4532e9388e65fa16b46776ef47ad631a64eda1631884488af707666350ed/pywin32-312-cp315-cp315-win_arm64.whl", hash = "sha256:a8597d28f267b39074aef51fa593530082b39cbe5a074226096857b1fed2dfb9", size = 6840337, upload-time = "2026-06-04T07:49:57.531Z" }, -] - -[[package]] -name = "pyyaml" -version = "6.0.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:44edc647873928551a01e7a563d7452ccdebee747728c1080d881d68af7b997e", size = 185826, upload-time = "2025-09-25T21:31:58.655Z" }, - { url = "https://files.pythonhosted.org/packages/16/19/13de8e4377ed53079ee996e1ab0a9c33ec2faf808a4647b7b4c0d46dd239/pyyaml-6.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:652cb6edd41e718550aad172851962662ff2681490a8a711af6a4d288dd96824", size = 175577, upload-time = "2025-09-25T21:32:00.088Z" }, - { url = "https://files.pythonhosted.org/packages/0c/62/d2eb46264d4b157dae1275b573017abec435397aa59cbcdab6fc978a8af4/pyyaml-6.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:10892704fc220243f5305762e276552a0395f7beb4dbf9b14ec8fd43b57f126c", size = 775556, upload-time = "2025-09-25T21:32:01.31Z" }, - { url = "https://files.pythonhosted.org/packages/10/cb/16c3f2cf3266edd25aaa00d6c4350381c8b012ed6f5276675b9eba8d9ff4/pyyaml-6.0.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:850774a7879607d3a6f50d36d04f00ee69e7fc816450e5f7e58d7f17f1ae5c00", size = 882114, upload-time = "2025-09-25T21:32:03.376Z" }, - { url = "https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b8bb0864c5a28024fac8a632c443c87c5aa6f215c0b126c449ae1a150412f31d", size = 806638, upload-time = "2025-09-25T21:32:04.553Z" }, - { url = "https://files.pythonhosted.org/packages/dd/6f/529b0f316a9fd167281a6c3826b5583e6192dba792dd55e3203d3f8e655a/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d37d57ad971609cf3c53ba6a7e365e40660e3be0e5175fa9f2365a379d6095a", size = 767463, upload-time = "2025-09-25T21:32:06.152Z" }, - { url = "https://files.pythonhosted.org/packages/f2/6a/b627b4e0c1dd03718543519ffb2f1deea4a1e6d42fbab8021936a4d22589/pyyaml-6.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:37503bfbfc9d2c40b344d06b2199cf0e96e97957ab1c1b546fd4f87e53e5d3e4", size = 794986, upload-time = "2025-09-25T21:32:07.367Z" }, - { url = "https://files.pythonhosted.org/packages/45/91/47a6e1c42d9ee337c4839208f30d9f09caa9f720ec7582917b264defc875/pyyaml-6.0.3-cp311-cp311-win32.whl", hash = "sha256:8098f252adfa6c80ab48096053f512f2321f0b998f98150cea9bd23d83e1467b", size = 142543, upload-time = "2025-09-25T21:32:08.95Z" }, - { url = "https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:9f3bfb4965eb874431221a3ff3fdcddc7e74e3b07799e0e84ca4a0f867d449bf", size = 158763, upload-time = "2025-09-25T21:32:09.96Z" }, - { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, - { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, - { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, - { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, - { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, - { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, - { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, - { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, - { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, - { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, - { url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" }, - { url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" }, - { url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" }, - { url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" }, - { url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" }, - { url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" }, - { url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" }, - { url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" }, - { url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" }, - { url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" }, - { url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" }, - { url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" }, - { url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" }, - { url = "https://files.pythonhosted.org/packages/02/9e/e5e9b168be58564121efb3de6859c452fccde0ab093d8438905899a3a483/pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788", size = 836355, upload-time = "2025-09-25T21:32:39.178Z" }, - { url = "https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5", size = 794175, upload-time = "2025-09-25T21:32:40.865Z" }, - { url = "https://files.pythonhosted.org/packages/dd/3f/5989debef34dc6397317802b527dbbafb2b4760878a53d4166579111411e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764", size = 755228, upload-time = "2025-09-25T21:32:42.084Z" }, - { url = "https://files.pythonhosted.org/packages/d7/ce/af88a49043cd2e265be63d083fc75b27b6ed062f5f9fd6cdc223ad62f03e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35", size = 789194, upload-time = "2025-09-25T21:32:43.362Z" }, - { url = "https://files.pythonhosted.org/packages/23/20/bb6982b26a40bb43951265ba29d4c246ef0ff59c9fdcdf0ed04e0687de4d/pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac", size = 156429, upload-time = "2025-09-25T21:32:57.844Z" }, - { url = "https://files.pythonhosted.org/packages/f4/f4/a4541072bb9422c8a883ab55255f918fa378ecf083f5b85e87fc2b4eda1b/pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3", size = 143912, upload-time = "2025-09-25T21:32:59.247Z" }, - { url = "https://files.pythonhosted.org/packages/7c/f9/07dd09ae774e4616edf6cda684ee78f97777bdd15847253637a6f052a62f/pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3", size = 189108, upload-time = "2025-09-25T21:32:44.377Z" }, - { url = "https://files.pythonhosted.org/packages/4e/78/8d08c9fb7ce09ad8c38ad533c1191cf27f7ae1effe5bb9400a46d9437fcf/pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba", size = 183641, upload-time = "2025-09-25T21:32:45.407Z" }, - { url = "https://files.pythonhosted.org/packages/7b/5b/3babb19104a46945cf816d047db2788bcaf8c94527a805610b0289a01c6b/pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c", size = 831901, upload-time = "2025-09-25T21:32:48.83Z" }, - { url = "https://files.pythonhosted.org/packages/8b/cc/dff0684d8dc44da4d22a13f35f073d558c268780ce3c6ba1b87055bb0b87/pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702", size = 861132, upload-time = "2025-09-25T21:32:50.149Z" }, - { url = "https://files.pythonhosted.org/packages/b1/5e/f77dc6b9036943e285ba76b49e118d9ea929885becb0a29ba8a7c75e29fe/pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c", size = 839261, upload-time = "2025-09-25T21:32:51.808Z" }, - { url = "https://files.pythonhosted.org/packages/ce/88/a9db1376aa2a228197c58b37302f284b5617f56a5d959fd1763fb1675ce6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065", size = 805272, upload-time = "2025-09-25T21:32:52.941Z" }, - { url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" }, - { url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" }, - { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" }, -] - -[[package]] -name = "pyyaml-env-tag" -version = "1.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pyyaml" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/eb/2e/79c822141bfd05a853236b504869ebc6b70159afc570e1d5a20641782eaa/pyyaml_env_tag-1.1.tar.gz", hash = "sha256:2eb38b75a2d21ee0475d6d97ec19c63287a7e140231e4214969d0eac923cd7ff", size = 5737, upload-time = "2025-05-13T15:24:01.64Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl", hash = "sha256:17109e1a528561e32f026364712fee1264bc2ea6715120891174ed1b980d2e04", size = 4722, upload-time = "2025-05-13T15:23:59.629Z" }, -] - -[[package]] -name = "referencing" -version = "0.37.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "attrs" }, - { name = "rpds-py" }, - { name = "typing-extensions", marker = "python_full_version < '3.13'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl", hash = "sha256:381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231", size = 26766, upload-time = "2025-10-13T15:30:47.625Z" }, -] - -[[package]] -name = "requests" -version = "2.34.2" +name = "rich" +version = "15.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "certifi" }, - { name = "charset-normalizer" }, - { name = "idna" }, - { name = "urllib3" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ac/c3/e2a2b89f2d3e2179abd6d00ebd70bff6273f37fb3e0cc209f48b39d00cbf/requests-2.34.2.tar.gz", hash = "sha256:f288924cae4e29463698d6d60bc6a4da69c89185ad1e0bcc4104f584e960b9ed", size = 142856, upload-time = "2026-05-14T19:25:27.735Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/f4/c67b0b3f1b9245e8d266f0f112c500d50e5b4e83cb6f3b71b6528104182a/requests-2.34.2-py3-none-any.whl", hash = "sha256:2a0d60c172f83ac6ab31e4554906c0f3b3588d37b5cb939b1c061f4907e278e0", size = 73075, upload-time = "2026-05-14T19:25:26.443Z" }, -] - -[[package]] -name = "retrying" -version = "1.4.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c8/5a/b17e1e257d3e6f2e7758930e1256832c9ddd576f8631781e6a072914befa/retrying-1.4.2.tar.gz", hash = "sha256:d102e75d53d8d30b88562d45361d6c6c934da06fab31bd81c0420acb97a8ba39", size = 11411, upload-time = "2025-08-03T03:35:25.189Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/67/f3/6cd296376653270ac1b423bb30bd70942d9916b6978c6f40472d6ac038e7/retrying-1.4.2-py3-none-any.whl", hash = "sha256:bbc004aeb542a74f3569aeddf42a2516efefcdaff90df0eb38fbfbf19f179f59", size = 10859, upload-time = "2025-08-03T03:35:23.829Z" }, -] - -[[package]] -name = "rpds-py" -version = "2026.6.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/aa/2a/9618a122aeb2a169a28b03889a2995fe297588964333d4a7d67bdf46e147/rpds_py-2026.6.3.tar.gz", hash = "sha256:1cebd1337c242e4ec2293e541f712b2da849b29f48f0c293684b71c0632625d4", size = 64051, upload-time = "2026-06-30T07:17:53.009Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/94/1f/a2dca5ffdbf1d475ffc4e80e4d5d720ff3a00f691795910116960ee12511/rpds_py-2026.6.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:7b689145a1485c335569bd056464f3243a29af7ed3871c7be31ad624ba239bc7", size = 342174, upload-time = "2026-06-30T07:14:54.821Z" }, - { url = "https://files.pythonhosted.org/packages/4d/dc/323d08583c0832911768663d1944f0107fcd4088704858d84b5e06d105a0/rpds_py-2026.6.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:db08f45aecde626498fb3df07bcf6d2ec040af42e859a4f5040d79c200342911", size = 345513, upload-time = "2026-06-30T07:14:56.515Z" }, - { url = "https://files.pythonhosted.org/packages/0b/2a/e31989834d18d2f26ec1d2774c5b1eb3331df4ea8ada525175294c94b48a/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:acc992ab27b15f852c76755eb2ab7dce86585ddadba6fa5946e58556088845b4", size = 373783, upload-time = "2026-06-30T07:14:57.736Z" }, - { url = "https://files.pythonhosted.org/packages/87/fe/e80107ee3639585c9941c17d6a42cd65325022f656c023191fce78c324c8/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f88d653e7b3b779d71ae7454e20dcc9b6bae903f33c269db9f2be41bda3f261", size = 378316, upload-time = "2026-06-30T07:14:59.077Z" }, - { url = "https://files.pythonhosted.org/packages/22/6f/81e3adf81acfb6fa694de2a6e4e7d8863121e3e0799e0a7725e6cf5679c4/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e52655eaf81e32593abedaa4bfe33170c8cfedf3365ed9be6e11e07f148f0278", size = 499423, upload-time = "2026-06-30T07:15:00.488Z" }, - { url = "https://files.pythonhosted.org/packages/2d/9a/41263969df0ce3d9af2a96d5005a288200af1989aed3354bfceb5fc0b21f/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dfcc8b909769d19db55c7cc9541eb64b9b774b1057ffffb4f1048070475bb9f9", size = 386077, upload-time = "2026-06-30T07:15:01.911Z" }, - { url = "https://files.pythonhosted.org/packages/5e/19/7e98f468bd50346faff5b10e5297374b443bfdddacc8e9fbc65984539597/rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c1255b302953c86a486b81d330d5ee1d5bd937691ce271b6be0ef0e299eaab7", size = 371315, upload-time = "2026-06-30T07:15:03.317Z" }, - { url = "https://files.pythonhosted.org/packages/99/3c/2b973b4d371906a134b03decfea7f5d9835a2c6d263454392e15b64b5b18/rpds_py-2026.6.3-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:8d2294a31386bfa251d8c8a39472beee17db67d4f1a6eabea665d35c9a4461c3", size = 383502, upload-time = "2026-06-30T07:15:04.627Z" }, - { url = "https://files.pythonhosted.org/packages/98/2a/12e2799500af0a307bca76b63361c51f9fe479223561489c29eea1f2ee41/rpds_py-2026.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f8f23ead891a3b762f35ab3b04623da7056545b48aa60d59957e6789914545da", size = 402673, upload-time = "2026-06-30T07:15:05.856Z" }, - { url = "https://files.pythonhosted.org/packages/2d/e3/21e5872d165fe08be4f229e3d5ee9d90019c0bf0e5538de60dbd54009450/rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:421aba32367055614287a4292b6a17f1939c9452299f7a0209c117e990b646d4", size = 549964, upload-time = "2026-06-30T07:15:07.159Z" }, - { url = "https://files.pythonhosted.org/packages/1a/d0/5ee0fe36844297de8123bee27bc12078c1a7416ad9f1b8a8ca18d6b0c0ac/rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1e5822dfc2f0d4ab7e745eaa6d85945069329beeccef965af3f3bb26058fcab6", size = 615446, upload-time = "2026-06-30T07:15:08.531Z" }, - { url = "https://files.pythonhosted.org/packages/b1/80/1ea5873cb683f2fbe5f21b23ea1f6d179ead19f3c5b249b7eb5dca568ef2/rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:83e35b57523816c8613fd0776b40cd8bb9f596b37ddd2692eb4a6bb5ab2f8c93", size = 576975, upload-time = "2026-06-30T07:15:09.97Z" }, - { url = "https://files.pythonhosted.org/packages/c9/e1/90ef639217a5ddb15b7f4f61b1c33911fd044ad03c311bafdd2bcab85582/rpds_py-2026.6.3-cp311-cp311-win32.whl", hash = "sha256:de3eceba0b683bcbb1ab93da016d0270df1f9ae7be716b40214c5dafac6ea45a", size = 204453, upload-time = "2026-06-30T07:15:11.324Z" }, - { url = "https://files.pythonhosted.org/packages/f2/b7/b7a1695d7af36f521fb11e80d6d3adbd744f73b921859bd3c2a2c0dc706f/rpds_py-2026.6.3-cp311-cp311-win_amd64.whl", hash = "sha256:2c54a076ca4d370980ab57bc0e31df57bbe8d41340436a90ef8b1219a3cbb127", size = 223219, upload-time = "2026-06-30T07:15:12.476Z" }, - { url = "https://files.pythonhosted.org/packages/d7/a2/145afacf796e4506062825941176ad9445c2dcf2b3b6a1f13d3030a15e19/rpds_py-2026.6.3-cp311-cp311-win_arm64.whl", hash = "sha256:168c733a7112e071bb7a66460e667edfcff06c017a3c523f7a8a8e08d0140804", size = 219137, upload-time = "2026-06-30T07:15:13.631Z" }, - { url = "https://files.pythonhosted.org/packages/5c/be/2e8974163072e7bab7df1a5acd54c4498e75e35d6d18b864d3a9d5dadc92/rpds_py-2026.6.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a0811d33247c3d6128a3001d763f2aa056bb3425204335400ac54f89eec3a0d0", size = 343691, upload-time = "2026-06-30T07:15:14.96Z" }, - { url = "https://files.pythonhosted.org/packages/a4/73/319dfa745dd668efe89309141ded489126461fcecd2b8f3a3cda185129b6/rpds_py-2026.6.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:538949e262e46caa31ac01bdb3c1e8f642622922cacbabbae6a8445d9dc33eaf", size = 338542, upload-time = "2026-06-30T07:15:16.267Z" }, - { url = "https://files.pythonhosted.org/packages/21/63/4239893be1c4d09b709b1a8f6be4188f0870084ff547f46606b8a75f1b03/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55927d532399c2c646100ff7feb48eaa940ad70f42cd68e1328f3ded9f81ca24", size = 368180, upload-time = "2026-06-30T07:15:17.62Z" }, - { url = "https://files.pythonhosted.org/packages/1c/ca/9c5de382225234ceb37b1844ebdb140db12b2a278bb9efe2fcd19f6c82ce/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f56f1695bc5c0871cbc33dc0130fcf503aab0c57dcc5a6700a4f49eba4f2652e", size = 375067, upload-time = "2026-06-30T07:15:18.952Z" }, - { url = "https://files.pythonhosted.org/packages/87/dc/863f69d1bf04ade34b7fe0d59b9fdf6f0135fe2d7cbca74f1d665589559d/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:270b293dae9058fc9fcedab50f13cebf46fb8ed1d1d54e0521a9da5d6b211975", size = 490509, upload-time = "2026-06-30T07:15:20.434Z" }, - { url = "https://files.pythonhosted.org/packages/ce/ef/eac16a12048b45ec7c7fa94f2be3438a5f26bf9cc8580b18a1cfd609b7f6/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:127565fead0a10943b282957bd5447804ff3160ad79f2ad2635e6d249e380680", size = 382754, upload-time = "2026-06-30T07:15:21.831Z" }, - { url = "https://files.pythonhosted.org/packages/04/8f/d2f3f532616be4d06c316ef119683e832bd3d41e112bf3a88f4151c95b17/rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecabd69db66de867690f9797f2f8fa27ba501bbc24540cbdbdc649cd15888ba6", size = 366189, upload-time = "2026-06-30T07:15:23.371Z" }, - { url = "https://files.pythonhosted.org/packages/e3/29/41a7b0e98a4b44cd676ab7598419623373eb43b20be68c084935c1a8cf88/rpds_py-2026.6.3-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:58eadac9cd119677b60e1cf8ac4052f35949d71b8a9e5556efccbe82533cf22a", size = 377750, upload-time = "2026-06-30T07:15:24.659Z" }, - { url = "https://files.pythonhosted.org/packages/2e/05/ecda0bec46f9a1565090bcdc941d023f6a25aff85fda28f89f8d19878152/rpds_py-2026.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7491ee23305ac3eb59e492b6945881f5cd77a6f731061a3f25b77fd40f9e99a4", size = 395576, upload-time = "2026-06-30T07:15:25.987Z" }, - { url = "https://files.pythonhosted.org/packages/68/a8/6ed52f03ee6cb854ce78785cc9a9a672eb880e83fd7224d471f667d151f1/rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2c99f7e8ccb3dd6e3e4bfeac657a7b208c9bac8075f4b078c02d7404c34107fa", size = 543807, upload-time = "2026-06-30T07:15:27.356Z" }, - { url = "https://files.pythonhosted.org/packages/8f/d6/156c0d3eea27ba09b92562ba2364ba124c0a061b199e17eac637cd25a5e2/rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:62698275682bf121181861295c9181e789030a2d516071f5b8f3c23c170cd0fc", size = 611187, upload-time = "2026-06-30T07:15:28.931Z" }, - { url = "https://files.pythonhosted.org/packages/f1/31/774212ed989c62f7f310220089f9b0a3fb8f40f5443d1727abd5d9f52bc9/rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a214c993455f99a89aaeadc9b21241900037adc9d97203e374d75513c5911822", size = 573030, upload-time = "2026-06-30T07:15:30.553Z" }, - { url = "https://files.pythonhosted.org/packages/c9/50/22f73127a41f1ce4f87fe39aadfb9a126345801c274aa93ae88456249327/rpds_py-2026.6.3-cp312-cp312-win32.whl", hash = "sha256:501f9f04a588d6a09179368c57071301445191767c64e4b52a6aa9871f1ef5ed", size = 202185, upload-time = "2026-06-30T07:15:32.027Z" }, - { url = "https://files.pythonhosted.org/packages/04/3a/f0ee4d4dde9d3b69dedf1b5f74e7a40017046d55052d173e418c6a94f960/rpds_py-2026.6.3-cp312-cp312-win_amd64.whl", hash = "sha256:2c958bf94822e9290a40aaf2a822d4bc5c88099093e3948ad6c571eca9272e5f", size = 220394, upload-time = "2026-06-30T07:15:33.359Z" }, - { url = "https://files.pythonhosted.org/packages/f3/83/3382fe37f809b59f02aac04dbc4e765b480b46ee0227ed516e3bdc4d3dfc/rpds_py-2026.6.3-cp312-cp312-win_arm64.whl", hash = "sha256:22bffe6042b9bcb0822bcd1955ec00e245daf17b4344e4ed8e9551b976b63e96", size = 215753, upload-time = "2026-06-30T07:15:34.778Z" }, - { url = "https://files.pythonhosted.org/packages/a4/9e/b818ee580026ec578138e961027a68820c40afeb1ec8f6819b54fb99e196/rpds_py-2026.6.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:3cfe765c1da0072636ca06628261e0ea05688e160d5c8a03e0217c3854037223", size = 343012, upload-time = "2026-06-30T07:15:36.005Z" }, - { url = "https://files.pythonhosted.org/packages/f3/6b/686d9dc4359a8f163cfbbf89ee0b4e586431de22fe8248edb63a8cf50d49/rpds_py-2026.6.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f4d78253f6996be4901669ad25319f842f740eccf4d58e3c7f3dd39e6dde1d8f", size = 338203, upload-time = "2026-06-30T07:15:37.462Z" }, - { url = "https://files.pythonhosted.org/packages/9e/9b/069aa329940f8207615e091f5eedbbd40e1e15eac68a0790fd05ccdf796c/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54f45a148e28767bf343d33a684693c70e451c6f4c0e9904709a723fafbdfc1f", size = 367984, upload-time = "2026-06-30T07:15:39.008Z" }, - { url = "https://files.pythonhosted.org/packages/14/db/34c203e4becff3703e4d3bc121842c00b8689197f398161203a880052f4e/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:842e7b070435622248c7a2c44ae53fa1440e073cc3023bc919fed570884097a7", size = 374815, upload-time = "2026-06-30T07:15:40.253Z" }, - { url = "https://files.pythonhosted.org/packages/ee/7d/8071067d2cc453d916ad836e828c943f575e8a44612537759002a1e07381/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8020133a74bd81b4572dd8e4be028a6b1ebcd70e6726edc3918008c08bee6ee6", size = 490545, upload-time = "2026-06-30T07:15:41.729Z" }, - { url = "https://files.pythonhosted.org/packages/a3/42/da06c5aa8f0484ff07f270787434204d9f4535e2f8c3b51ed402267e63c3/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cdc7e35386f3847df728fbcb5e887e2d79c19e2fa1eba9e51b6621d23e3243af", size = 382828, upload-time = "2026-06-30T07:15:43.327Z" }, - { url = "https://files.pythonhosted.org/packages/57/d7/fe978efc2ae50abe48eb7464668ea99f53c010c60aeebb7b35ad27f23661/rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acac386b453c2516111b50985d60ce46e7fadb5ea71ae7b25f4c946935bf27cf", size = 365678, upload-time = "2026-06-30T07:15:44.992Z" }, - { url = "https://files.pythonhosted.org/packages/69/9d/1d8922e1990b2a6eb532b6ff53d3e73d2b3bbffc84116c75826bee73dfc6/rpds_py-2026.6.3-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:425560c6fa0415f27261727bb20bd097568485e5eb0c121f1949417d1c516885", size = 377811, upload-time = "2026-06-30T07:15:46.523Z" }, - { url = "https://files.pythonhosted.org/packages/b1/3d/198dceafb4fb034a6a47347e1b0735d34e0bd4a50be4e898d408ee66cb14/rpds_py-2026.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a550fb4950a06dde3beb4721f5ad4b25bf4513784665b0a8522c792e2bd822a4", size = 395382, upload-time = "2026-06-30T07:15:47.955Z" }, - { url = "https://files.pythonhosted.org/packages/1f/f1/13968e49655d40b6b19d8b9140296bbc6f1d86b3f0f6c346cf9f1adddf4b/rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4f4bca01b63096f606e095734dd56e74e175f94cfbf24ff3d63281cec61f7bb7", size = 543832, upload-time = "2026-06-30T07:15:49.33Z" }, - { url = "https://files.pythonhosted.org/packages/ac/ab/289bcb1b90bd3e40a2900c561fa0e2087345ecbb094f0b870f2345142b7c/rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ccffae9a092a00deb7efd545fe5e2c33c33b88e7c054337e9a74c179347d0b7d", size = 611011, upload-time = "2026-06-30T07:15:50.847Z" }, - { url = "https://files.pythonhosted.org/packages/1e/16/5043105e679436ccfbc8e5e0dd2d663ed18a8b8113515fd06a5e5d77c83e/rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1cf01971c4f2c5553b772a542e4aaf191789cd331bc2cd4ff0e6e65ba49e1e97", size = 572431, upload-time = "2026-06-30T07:15:52.394Z" }, - { url = "https://files.pythonhosted.org/packages/85/ed/adab103321c0a6565d5ae1c2998349bc3ee175b82ccc5ae8fc04cc413075/rpds_py-2026.6.3-cp313-cp313-win32.whl", hash = "sha256:8c3d1e9c15b9d51ca0391e13da1a25a0a4df3c58a37c9dc368e0736cf7f69df0", size = 201710, upload-time = "2026-06-30T07:15:53.894Z" }, - { url = "https://files.pythonhosted.org/packages/7b/ed/a03b09668e74e5dabbf2e211f6468e1820c0552f7b0500082da31841bf7b/rpds_py-2026.6.3-cp313-cp313-win_amd64.whl", hash = "sha256:9250a9a0a6fd4648b3f868da8d91a4c52b5811a62df58e753d50ae4454a36f80", size = 219454, upload-time = "2026-06-30T07:15:55.25Z" }, - { url = "https://files.pythonhosted.org/packages/27/17/b8642c12930b71bc2b25831f6708ccf0f75abcd11883932ec9ce54ba3a78/rpds_py-2026.6.3-cp313-cp313-win_arm64.whl", hash = "sha256:900a67df3fd1660b035a4761c4ce73c382ea6b35f90f9863c36c6fd8bf8b09bb", size = 215063, upload-time = "2026-06-30T07:15:56.573Z" }, - { url = "https://files.pythonhosted.org/packages/b6/36/7fbe9dcdaf857fb3f63c2a2284b62492d95f5e8334e947e5fb6e7f68c9be/rpds_py-2026.6.3-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:931908d9fc855d8f74783377822be318edb6dcb19e47169dc038f9a1bf60b06e", size = 344510, upload-time = "2026-06-30T07:15:57.921Z" }, - { url = "https://files.pythonhosted.org/packages/ba/54/f785cc3d3f60839ca57a5af4927a9f347b07b2799c373fc20f7949f87c7e/rpds_py-2026.6.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:d7469697dce35be237db177d42e2a2ee26e6dcc5fc052078a6fefabd288c6edd", size = 339495, upload-time = "2026-06-30T07:15:59.238Z" }, - { url = "https://files.pythonhosted.org/packages/63/ef/d4cdaf309e6b095b43597103cf8c0b951d6cca2acce68c474f75ec12e0c7/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bcfbcf66006befb9fd2aeaa9e01feaf881b4dc330a02ba07d2322b1c11be7b5d", size = 369454, upload-time = "2026-06-30T07:16:01.021Z" }, - { url = "https://files.pythonhosted.org/packages/96/4a/9559a68b7ee15db09d7981212e8c2e219d2a1d6d4faa0391d813c3496a36/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:847927daf4cffbd4e90e42bc890069897101edd015f956cb8721b3473372edda", size = 374583, upload-time = "2026-06-30T07:16:02.287Z" }, - { url = "https://files.pythonhosted.org/packages/ef/75/8964aa7d2c6e8ac43eba8eb6e6b0fdda1f46d39f2fc3e6aa9f2cb17f485d/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aca6c1ef08a82bfe327cc156da694660f599923e2e6665b6d81c9c2d0ac9ffc8", size = 492919, upload-time = "2026-06-30T07:16:03.723Z" }, - { url = "https://files.pythonhosted.org/packages/8f/97/6908094ac804115e65aedfd90f1b5fee4eebebd3f6c4cfc5419939267565/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ae50181a047c871561212bb97f7932a2d45fb53e947bd9b57ebad85b529cbc53", size = 383725, upload-time = "2026-06-30T07:16:05.305Z" }, - { url = "https://files.pythonhosted.org/packages/d1/9c/0d1fdc2e7aba23e290d603bc494e97bd205bae262ce33c6b32a69768ed5e/rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc319e5a1de4b6913aac94bf6a2f9e847371e0a140a43dd4991db1a09bc2d504", size = 367255, upload-time = "2026-06-30T07:16:07.086Z" }, - { url = "https://files.pythonhosted.org/packages/c4/fe/f0209ca4a9ed074bc8acb44dfd0e81c3122e94c9689f5645b7973a866719/rpds_py-2026.6.3-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:e4316bf32babbed84e691e352faf967ce2f0f024174a8643c37c94a1080374fc", size = 379060, upload-time = "2026-06-30T07:16:08.525Z" }, - { url = "https://files.pythonhosted.org/packages/c6/8d/f1cc54c616b9d8897de8738aac148d20afca93f68187475fe194d09a71b9/rpds_py-2026.6.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8c6e5a2f750cc71c3e3b11d71661f21d6f9bc6cebc6564b1466417a1ec03ec77", size = 395960, upload-time = "2026-06-30T07:16:09.989Z" }, - { url = "https://files.pythonhosted.org/packages/fb/04/aafff00f73aeca2945f734f1d483c64ab8f472d0864ab02377fd8e89c3b2/rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:4470ce197d4090875cf6affbf1f853338387428df97c4fb7b7106317b8214698", size = 545356, upload-time = "2026-06-30T07:16:11.816Z" }, - { url = "https://files.pythonhosted.org/packages/fd/cc/e229663b9e4ddac5a4acbe9085dd80a71af2a5d356b8b39d6bff233f24b0/rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ea964164cc9afa72d4d9b23cc28dafae93693c0a53e0b42acbff15b22c3f9ddd", size = 612319, upload-time = "2026-06-30T07:16:13.586Z" }, - { url = "https://files.pythonhosted.org/packages/e3/7a/8a0e6d3e6cd066af108b71b43122c3fe158dd9eb86acac626593a2582eb1/rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:639c8929aa0afe81be836b04de888460d6bed38b9c54cfc18da8f6bfabf5af5d", size = 573508, upload-time = "2026-06-30T07:16:15.23Z" }, - { url = "https://files.pythonhosted.org/packages/87/03/2a69ab618a789cf6cf85c86bb844c62d090e700ab1a2aa676b3741b6c516/rpds_py-2026.6.3-cp314-cp314-win32.whl", hash = "sha256:882076c00c0a608b131187055ddc5ae29f2e7eaf870d6168980420d58528a5c8", size = 202504, upload-time = "2026-06-30T07:16:16.893Z" }, - { url = "https://files.pythonhosted.org/packages/85/62/a3892ba945f4e24c78f352e5de3c7620d8479f73f211406a97263d13c7d2/rpds_py-2026.6.3-cp314-cp314-win_amd64.whl", hash = "sha256:0be972be84cfcaf46c8c6edf690ca0f154ac17babf1f6a955a51579b34ad2dc5", size = 220380, upload-time = "2026-06-30T07:16:18.108Z" }, - { url = "https://files.pythonhosted.org/packages/3d/e7/c2bd44dc831931815ad11ebb5f430b5a0a4d3caa9de837107876c30c3432/rpds_py-2026.6.3-cp314-cp314-win_arm64.whl", hash = "sha256:2a9c6f195058cb45335e8cc3802745c603d716eb96bc9625950c1aac71c0c703", size = 215976, upload-time = "2026-06-30T07:16:19.654Z" }, - { url = "https://files.pythonhosted.org/packages/79/9c/fff7b74bce9a091ec9a012a03f9ff5f69364eaf9451060dfc4486da2ffdd/rpds_py-2026.6.3-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:f90938e92afda60266da758ee7d363447f7f0138c9559f9e1811629580582d90", size = 346840, upload-time = "2026-06-30T07:16:21.268Z" }, - { url = "https://files.pythonhosted.org/packages/e9/44/77bcb1168b33704908295533d27f10eb811e9e3e193e8993dc99572211d3/rpds_py-2026.6.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ec829541c45bca16e61c7ae50c20501f213605beb75d1aba91a6ee37fbbb56a4", size = 340282, upload-time = "2026-06-30T07:16:22.875Z" }, - { url = "https://files.pythonhosted.org/packages/87/3c/7a9081c7c9e645b39efe19e4ffbeccd80add246327cd9b888aecffd72317/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afd70d95892096cdb26f15a00c45907b17817577aa8d1c76b2dcc2788391f9e9", size = 370403, upload-time = "2026-06-30T07:16:24.415Z" }, - { url = "https://files.pythonhosted.org/packages/f7/69/af47021eb7dad6ff3396cb001c08f0f3c4d06c20253f75be6421a59fe6b7/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29dfa0533a5d4c94d4dfa1b694fcb56c9c63aad8330ffdd816fd225d0a7a162f", size = 376055, upload-time = "2026-06-30T07:16:26.111Z" }, - { url = "https://files.pythonhosted.org/packages/81/fc/a3bcf517084396a6dd258c592567a3c011ba4557f2fde23dceaf26e74f2e/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:af05d726809bff6b141be124d4c7ce998f9c9c7f30edb1f46c07aa103d540b41", size = 494419, upload-time = "2026-06-30T07:16:27.596Z" }, - { url = "https://files.pythonhosted.org/packages/c9/eb/13d529d1788135425c7bf207f8463458ca5d92e43f3f701365b83e9dffc1/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9826217f048f620d9a712672818bf231442c1b35d96b227a07eabd11b4bb6945", size = 384848, upload-time = "2026-06-30T07:16:29.183Z" }, - { url = "https://files.pythonhosted.org/packages/8e/f4/b7ac49f30013aba8f7b9566b1dd07e81de95e708c1374b7bacc5b9bc5c9c/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:536bceea4fa4acf7e1c61da2b5786304367c816c8895be71b8f537c480b0ea1f", size = 371369, upload-time = "2026-06-30T07:16:30.912Z" }, - { url = "https://files.pythonhosted.org/packages/31/86/6260bafa622f788b07ddec0e52d810305c8b9b0b8c27f58a2ab04bf62b4f/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:bc0011654b91cc4fb2ae701bec0a0ba1e552c0714247fa7af6c59e0ccfa3a4e1", size = 379673, upload-time = "2026-06-30T07:16:32.486Z" }, - { url = "https://files.pythonhosted.org/packages/19/c3/03f1ee79a047b48daeca157c89a18509cde22b6b951d642b9b0af1be660a/rpds_py-2026.6.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:539d75de9e0d536c84ff18dfeb805398e58227001ce09231a26a08b9aed1ee0e", size = 397500, upload-time = "2026-06-30T07:16:34.471Z" }, - { url = "https://files.pythonhosted.org/packages/f0/95/8ed0cd8c377dca12aea498f119fe639fc474d1461545c39d2b5872eb1c0f/rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:166cf54d9f44fc6ceb53c7860258dde44a81406646de79f8ed3234fca3b6e538", size = 545978, upload-time = "2026-06-30T07:16:36.45Z" }, - { url = "https://files.pythonhosted.org/packages/d3/f2/0eb57f0eaa83f8fc152a7e03de968ab77e1f00732bebc892b190c6eebde7/rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:d34c20167764fbcf927194d532dd7e0c56772f0a5f943fa5ef9e9afbba8fb9db", size = 613350, upload-time = "2026-06-30T07:16:38.213Z" }, - { url = "https://files.pythonhosted.org/packages/5b/de/e0674bdbc3ef7634989b3f854c3f34bc1f587d36e5bfdc5c378d57034619/rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ea7bb13b7c9a29791f87a0387ba7d3ad3a6d783d827e4d3f27b40a0ff44495e2", size = 576486, upload-time = "2026-06-30T07:16:39.797Z" }, - { url = "https://files.pythonhosted.org/packages/f2/f6/21101359743cd136ada781e8210a85769578422ba460672eea0e29739200/rpds_py-2026.6.3-cp314-cp314t-win32.whl", hash = "sha256:6de4744d05bd1aa1be4ed7ea1189e3979196808008113bbbf899a460966b925e", size = 201068, upload-time = "2026-06-30T07:16:41.316Z" }, - { url = "https://files.pythonhosted.org/packages/a6/b2/9574d4d44f7760c2aa32d92a0a4f41698e33f5b204a0bf5c9758f52c79d5/rpds_py-2026.6.3-cp314-cp314t-win_amd64.whl", hash = "sha256:c7b9a2f8f4d8e90af72571d3d495deebdd7e3c75451f5b41719aee166e940fc2", size = 220600, upload-time = "2026-06-30T07:16:43.091Z" }, - { url = "https://files.pythonhosted.org/packages/08/ae/f23a2697e6ee6340a578b0f136be6483657bef0c6f9497b752bb5c0964bb/rpds_py-2026.6.3-cp315-cp315-macosx_10_12_x86_64.whl", hash = "sha256:e059c5dde6452b44424bd1834557556c226b57781dee1227af23518459722b13", size = 344726, upload-time = "2026-06-30T07:16:44.5Z" }, - { url = "https://files.pythonhosted.org/packages/c3/63/e7b3a1a5358dd32c930a1062d8e15b67fd6e8922e81df9e91706d66ee5c8/rpds_py-2026.6.3-cp315-cp315-macosx_11_0_arm64.whl", hash = "sha256:2f7c26fbc5acd2522b95d4177fe4710ffd8e9b20529e703ffbf8db4d93903f05", size = 339587, upload-time = "2026-06-30T07:16:46.255Z" }, - { url = "https://files.pythonhosted.org/packages/ec/64/10a85681916ca55fffb91b0a211f84e34297c109243484dd6394660a8a7c/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3086b538543802f84c843911242db20447de00d8752dd0efc936dbcf02218ba", size = 369585, upload-time = "2026-06-30T07:16:48.101Z" }, - { url = "https://files.pythonhosted.org/packages/76/c2/baf95c7c38823e12ba34407c5f5767a89e5cf2233895e56f608167ae9493/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8f2e5c5ee828d42cb11760761c0af6507927bec42d0ad5458f97c9203b054617", size = 375479, upload-time = "2026-06-30T07:16:49.93Z" }, - { url = "https://files.pythonhosted.org/packages/6a/94/0aad06c72d65101e11d33528d438cda99a39ce0da99466e156158f2541d3/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed0c1e5d10cdc7135537988c74a0188da68e2f3c30813ba3744ab1e42e0480f9", size = 492418, upload-time = "2026-06-30T07:16:51.641Z" }, - { url = "https://files.pythonhosted.org/packages/b5/17/de3f5a479a1f056535d7489819639d8cd591ea6281d700390b43b1abd745/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c2642a7603ec0b16ed77da4555db3b4b472341904873788327c0b0d7b95f1bb", size = 384123, upload-time = "2026-06-30T07:16:53.622Z" }, - { url = "https://files.pythonhosted.org/packages/46/7d/bf09bd1b145bb2671c03e1e6d1ab8651858d90d8c7dfeadd85a37a934fd8/rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e4320744c1ffdd95a603def63344bfab2d33edeab301c5007e7de9f9f5b3885", size = 367351, upload-time = "2026-06-30T07:16:55.241Z" }, - { url = "https://files.pythonhosted.org/packages/a3/ea/1bb734f314b8be319149ddee80b18bd41372bdcfbdf88d28131c0cd37719/rpds_py-2026.6.3-cp315-cp315-manylinux_2_31_riscv64.whl", hash = "sha256:a9f4645593036b81bbdb36b9c8e0ea0d1c3fee968c4d59db0344c14087ef143a", size = 378827, upload-time = "2026-06-30T07:16:56.841Z" }, - { url = "https://files.pythonhosted.org/packages/4b/93/d9611e5b25e26df9a3649813ed66193ace9347a7c7fc4ab7cf70e94851c0/rpds_py-2026.6.3-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e55d236be29255554da47abe5c577637db7c24a02b8b46f0ca9524c855801868", size = 395966, upload-time = "2026-06-30T07:16:58.557Z" }, - { url = "https://files.pythonhosted.org/packages/c3/cb/99d77e16e5534ae1d90629bbe419ba6ee170833a6a85e3aa1cc41726fbbc/rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_aarch64.whl", hash = "sha256:24e9c5386e16669b674a69c156c8eeefcb578f3b3397b713b08e6d60f3c7b187", size = 545680, upload-time = "2026-06-30T07:17:00.164Z" }, - { url = "https://files.pythonhosted.org/packages/59/15/11a29755f790cef7a2f755e8e14f4f0c33f39489e1893a632a2eee59672b/rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_i686.whl", hash = "sha256:c60924535c75f1566b6eb75b5c31a48a43fef04fa2d0d201acbad8a9969c6107", size = 611853, upload-time = "2026-06-30T07:17:01.962Z" }, - { url = "https://files.pythonhosted.org/packages/68/86/0c27547e21644da938fb530f7e1a8148dd24d02db07e7a5f2567a17ce710/rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_x86_64.whl", hash = "sha256:38a2fea2787428f811719ceb9114cb78964a3138838320c29ac39526c79c16ba", size = 573715, upload-time = "2026-06-30T07:17:03.693Z" }, - { url = "https://files.pythonhosted.org/packages/29/71/4d8fcf700931815594bce892255bbd973b94efaf0fc1932b0590df18d886/rpds_py-2026.6.3-cp315-cp315-win32.whl", hash = "sha256:d483fe17f01ad64b7bf7cc38fcefff1ca9fb83f8c2b2542b68f97ffe0611b369", size = 202864, upload-time = "2026-06-30T07:17:05.746Z" }, - { url = "https://files.pythonhosted.org/packages/eb/62/b577562de0edbb55b2be85ce5fd09c33e386b9b13eee09833af4240fd5c4/rpds_py-2026.6.3-cp315-cp315-win_amd64.whl", hash = "sha256:67e3a721ffc5d8d2210d3671872298c4a84e4b8035cfe42ffd7cde35d772b146", size = 220430, upload-time = "2026-06-30T07:17:07.471Z" }, - { url = "https://files.pythonhosted.org/packages/c8/95/d6d0b2509825141eef60669a5739eec88dbc6a48053d6c92993a5704defe/rpds_py-2026.6.3-cp315-cp315-win_arm64.whl", hash = "sha256:6e84adbcf4bf841aed8116a8264b9f50b4cb3e7bd89b516122e616ac56ca269e", size = 215877, upload-time = "2026-06-30T07:17:09.008Z" }, - { url = "https://files.pythonhosted.org/packages/b7/bf/f3ea278f0afd615c1d0f19cb69043a41526e2bb600c2b536eb192218eb27/rpds_py-2026.6.3-cp315-cp315t-macosx_10_12_x86_64.whl", hash = "sha256:ae6dd8f10bd17aad820876d24caec9efdafd80a318d16c0a48edb5e136902c6b", size = 346933, upload-time = "2026-06-30T07:17:10.762Z" }, - { url = "https://files.pythonhosted.org/packages/9d/29/9907bdf1c5346763cf10b7f6852aad86652168c259def904cbe0082c5864/rpds_py-2026.6.3-cp315-cp315t-macosx_11_0_arm64.whl", hash = "sha256:bdbd97738551fca3917c1bd7188bec1920bb520104f28e7e1007f9ceb17b7690", size = 340274, upload-time = "2026-06-30T07:17:12.266Z" }, - { url = "https://files.pythonhosted.org/packages/6f/2c/8e03767b5778ef25cebf74a7a91a2c3806f8eced4c92cb7406bbe060756d/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b95977e7211527ab0ba576e286d023389fbeeb32a6b7b771665d333c60e5342", size = 370763, upload-time = "2026-06-30T07:17:14.107Z" }, - { url = "https://files.pythonhosted.org/packages/2e/e1/df2a7e1ba2efd796af26194250b8d42c821b46592311595162af9ef0528d/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d15fde0e6fb0d88a60d221204873743e5d9f0b7d29165e62cd86d0413ad74ba6", size = 376467, upload-time = "2026-06-30T07:17:15.76Z" }, - { url = "https://files.pythonhosted.org/packages/6b/de/8a0814d1946af29cb068fb259aa8622f856df1d0bab58429448726b537f5/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a136d453475ac0fcbda502ef1e6504bd28d6d904700915d278deeab0d00fe140", size = 496689, upload-time = "2026-06-30T07:17:17.308Z" }, - { url = "https://files.pythonhosted.org/packages/df/f3/f19e0c852ba13694f5a79f3b719331051573cb5693feacf8a88ffffc3a71/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f826877d462181e5eb1c26a0026b8d0cab05d99844ecb6d8bf3627a2ca0c0442", size = 385340, upload-time = "2026-06-30T07:17:18.928Z" }, - { url = "https://files.pythonhosted.org/packages/e2/ae/7ec3a9d2d4351f99e37bcb06b6b6f954512646bfdbf9742e1de727865daf/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79486287de1730dbaff3dbd124d0ca4d2ef7f9d29bf2544f1f93c09b5bcbbd12", size = 372179, upload-time = "2026-06-30T07:17:20.539Z" }, - { url = "https://files.pythonhosted.org/packages/d3/ac/9cee911dff2aaa9a5a8354f6610bf2e6a616de9197c5fff4f54f82585f1e/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_31_riscv64.whl", hash = "sha256:808345f53cb952433ca2816f1604ff3515608a81784954f38d4452acfe8e61d5", size = 379993, upload-time = "2026-06-30T07:17:22.212Z" }, - { url = "https://files.pythonhosted.org/packages/83/6b/7c2a07ba88d1e9a936612f7a5d067467ed03d971d5a06f7d309dff044a7e/rpds_py-2026.6.3-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1967debc37f64f2c4dc90a7f563aec558b471966e12adcac4e1c4240496b6ebf", size = 398909, upload-time = "2026-06-30T07:17:23.66Z" }, - { url = "https://files.pythonhosted.org/packages/97/0b/776ffcb66783637b0031f6d58d6fb55913c8b5abf00aeecd46bf933fb477/rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_aarch64.whl", hash = "sha256:f0840b5b17057f7fd918b76183a4b5a0635f43e14eb2ce60dce1d4ee4707ea00", size = 546584, upload-time = "2026-06-30T07:17:25.264Z" }, - { url = "https://files.pythonhosted.org/packages/55/33/ba3bc04d7092bd553c9b2b195624992d2cc4f3de1f380b7b93cbee67bd79/rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_i686.whl", hash = "sha256:faa679d19a6696fd54259ad321251ad77a13e70e03dd834daa762a44fb6196ef", size = 614357, upload-time = "2026-06-30T07:17:26.888Z" }, - { url = "https://files.pythonhosted.org/packages/8b/71/14edf065f04630b1a8472f7653cad03f6c478bcf95ea0e6aed55451e33ea/rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_x86_64.whl", hash = "sha256:23a439f31ccbeff1574e24889128821d1f7917470e830cf6544dced1c662262a", size = 576533, upload-time = "2026-06-30T07:17:28.546Z" }, - { url = "https://files.pythonhosted.org/packages/ba/76/65002b08596c389105720a8c0d22298b8dc25a4baf89b2ce431343c8b1de/rpds_py-2026.6.3-cp315-cp315t-win32.whl", hash = "sha256:913ca42ccad3f8cc6e292b587ae8ae49c8c823e5dce51a736252fc7c7cdfa577", size = 201204, upload-time = "2026-06-30T07:17:30.193Z" }, - { url = "https://files.pythonhosted.org/packages/8c/97/d855d6b3c322d1f27e26f5241c42016b56cf01377ea8ed348285f54652f0/rpds_py-2026.6.3-cp315-cp315t-win_amd64.whl", hash = "sha256:ae3d4fe8c0b9213624fdce7279d70e3b148b682ca20719ebd193a23ebfa47324", size = 220719, upload-time = "2026-06-30T07:17:31.788Z" }, - { url = "https://files.pythonhosted.org/packages/b4/9c/f0d19ac587fd0e4ab6b72cda355e9c5a6166b01ef7e064e437aef8eb9fef/rpds_py-2026.6.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:4cf2d36a2357e4d07bb5a4f98801265327b48256867816cfd2ceb001e9754a8f", size = 349791, upload-time = "2026-06-30T07:17:33.315Z" }, - { url = "https://files.pythonhosted.org/packages/38/c7/1d49d204c9fd2ee6c537601dc4c1ba921e03363ca576bfab94a00254ac9a/rpds_py-2026.6.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:30c6dc199b24a5e3e81d50da0f00858c5bbdb2617a750395687f4339c5818171", size = 352842, upload-time = "2026-06-30T07:17:34.897Z" }, - { url = "https://files.pythonhosted.org/packages/ac/e5/c0b5dc93cd0d4c06ce1f438907649514e2ea077bcd911e3154a51e96c38e/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9891e594296ab9dada6551c8e7b387b2721f27a67eecd528412e8906247a7b90", size = 382094, upload-time = "2026-06-30T07:17:36.514Z" }, - { url = "https://files.pythonhosted.org/packages/0d/54/ec0e907b4ca8d541112db352409bd15f871c9b243e0c92c9b5a46ae96f01/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b5c2dc92304aa48a4a60443b548bb12f12e119d4b72f314015e67b9e1be97fca", size = 388662, upload-time = "2026-06-30T07:17:38.235Z" }, - { url = "https://files.pythonhosted.org/packages/d3/f4/921c22a4fd0f1c1ac13a3996ffbf0aa67951e2c8ad0d1d9574938a2932e8/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:127e08c0642d880cf32ca47ec2a4a77b901f7e2dd1ad9762adb13955d72ffcc9", size = 504896, upload-time = "2026-06-30T07:17:39.689Z" }, - { url = "https://files.pythonhosted.org/packages/0b/1b/a114b972cefa1ab1cdb3c7bb177cd3844a12826c507c722d3a73516dbbaf/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8bb68f03f395eb793220b45c097bd4d8c32944393da0fad8b999efac0868fc8c", size = 391545, upload-time = "2026-06-30T07:17:41.336Z" }, - { url = "https://files.pythonhosted.org/packages/4e/98/af9b3db77d47fcbe6c8c1f36e2c2147ec70292819e99c325f871584a1c11/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3450b693fde92133e9f51060568a4c31fcca76d5e53bbd611e689ca446517e9", size = 380059, upload-time = "2026-06-30T07:17:42.857Z" }, - { url = "https://files.pythonhosted.org/packages/c9/ba/0efd8668b97c1d26a61566386c636a7a7a09829e474fdf807caa15a2c844/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:5e8d07bddee435a2ff6f1920e18feff28d0bc4533e42f4bf6927fbd073312c41", size = 393235, upload-time = "2026-06-30T07:17:44.637Z" }, - { url = "https://files.pythonhosted.org/packages/62/90/8c139ee9690f73b0829f32647de6f40d826f8f443af6fa72644f96351aac/rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3a83ae6c67b7676b9878378547ca8e93ed77a580037bcbcd1d32f739e1e6089c", size = 413008, upload-time = "2026-06-30T07:17:46.225Z" }, - { url = "https://files.pythonhosted.org/packages/9c/97/0043896fdd7828ce09a1d9a8b06433714d0960fc4ff3fc4aa72b666b764e/rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2bfd04c19ddbd6640de0b51894d764bd2758854d5b75bd102d2ef10cb9c293a9", size = 558118, upload-time = "2026-06-30T07:17:47.759Z" }, - { url = "https://files.pythonhosted.org/packages/f6/40/02355f0e134f783a8f9814c4680a1bd311d37671577a5964ea838573ff37/rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:ca6546b66be9dc4738b1b043d5ebd5488c66c578c5ff0fd0e8065313fe3afb76", size = 623138, upload-time = "2026-06-30T07:17:49.355Z" }, - { url = "https://files.pythonhosted.org/packages/10/85/48f0abdcef5cce4e034c7a5b0ceeceba0b01bf0d942824f4bb720afe2dec/rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:8e65860d238379ed982fd9ba690579b5e95af2f4840f99c772816dbe573cb826", size = 586486, upload-time = "2026-06-30T07:17:51.141Z" }, -] - -[[package]] -name = "scipy" -version = "1.17.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.12' and sys_platform == 'win32'", - "python_full_version < '3.12' and sys_platform == 'emscripten'", - "python_full_version < '3.12' and sys_platform != 'emscripten' and sys_platform != 'win32'", -] -dependencies = [ - { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/df/75/b4ce781849931fef6fd529afa6b63711d5a733065722d0c3e2724af9e40a/scipy-1.17.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:1f95b894f13729334fb990162e911c9e5dc1ab390c58aa6cbecb389c5b5e28ec", size = 31613675, upload-time = "2026-02-23T00:16:00.13Z" }, - { url = "https://files.pythonhosted.org/packages/f7/58/bccc2861b305abdd1b8663d6130c0b3d7cc22e8d86663edbc8401bfd40d4/scipy-1.17.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:e18f12c6b0bc5a592ed23d3f7b891f68fd7f8241d69b7883769eb5d5dfb52696", size = 28162057, upload-time = "2026-02-23T00:16:09.456Z" }, - { url = "https://files.pythonhosted.org/packages/6d/ee/18146b7757ed4976276b9c9819108adbc73c5aad636e5353e20746b73069/scipy-1.17.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a3472cfbca0a54177d0faa68f697d8ba4c80bbdc19908c3465556d9f7efce9ee", size = 20334032, upload-time = "2026-02-23T00:16:17.358Z" }, - { url = "https://files.pythonhosted.org/packages/ec/e6/cef1cf3557f0c54954198554a10016b6a03b2ec9e22a4e1df734936bd99c/scipy-1.17.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:766e0dc5a616d026a3a1cffa379af959671729083882f50307e18175797b3dfd", size = 22709533, upload-time = "2026-02-23T00:16:25.791Z" }, - { url = "https://files.pythonhosted.org/packages/4d/60/8804678875fc59362b0fb759ab3ecce1f09c10a735680318ac30da8cd76b/scipy-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:744b2bf3640d907b79f3fd7874efe432d1cf171ee721243e350f55234b4cec4c", size = 33062057, upload-time = "2026-02-23T00:16:36.931Z" }, - { url = "https://files.pythonhosted.org/packages/09/7d/af933f0f6e0767995b4e2d705a0665e454d1c19402aa7e895de3951ebb04/scipy-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43af8d1f3bea642559019edfe64e9b11192a8978efbd1539d7bc2aaa23d92de4", size = 35349300, upload-time = "2026-02-23T00:16:49.108Z" }, - { url = "https://files.pythonhosted.org/packages/b4/3d/7ccbbdcbb54c8fdc20d3b6930137c782a163fa626f0aef920349873421ba/scipy-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cd96a1898c0a47be4520327e01f874acfd61fb48a9420f8aa9f6483412ffa444", size = 35127333, upload-time = "2026-02-23T00:17:01.293Z" }, - { url = "https://files.pythonhosted.org/packages/e8/19/f926cb11c42b15ba08e3a71e376d816ac08614f769b4f47e06c3580c836a/scipy-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4eb6c25dd62ee8d5edf68a8e1c171dd71c292fdae95d8aeb3dd7d7de4c364082", size = 37741314, upload-time = "2026-02-23T00:17:12.576Z" }, - { url = "https://files.pythonhosted.org/packages/95/da/0d1df507cf574b3f224ccc3d45244c9a1d732c81dcb26b1e8a766ae271a8/scipy-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:d30e57c72013c2a4fe441c2fcb8e77b14e152ad48b5464858e07e2ad9fbfceff", size = 36607512, upload-time = "2026-02-23T00:17:23.424Z" }, - { url = "https://files.pythonhosted.org/packages/68/7f/bdd79ceaad24b671543ffe0ef61ed8e659440eb683b66f033454dcee90eb/scipy-1.17.1-cp311-cp311-win_arm64.whl", hash = "sha256:9ecb4efb1cd6e8c4afea0daa91a87fbddbce1b99d2895d151596716c0b2e859d", size = 24599248, upload-time = "2026-02-23T00:17:34.561Z" }, - { url = "https://files.pythonhosted.org/packages/35/48/b992b488d6f299dbe3f11a20b24d3dda3d46f1a635ede1c46b5b17a7b163/scipy-1.17.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8", size = 31610954, upload-time = "2026-02-23T00:17:49.855Z" }, - { url = "https://files.pythonhosted.org/packages/b2/02/cf107b01494c19dc100f1d0b7ac3cc08666e96ba2d64db7626066cee895e/scipy-1.17.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76", size = 28172662, upload-time = "2026-02-23T00:18:01.64Z" }, - { url = "https://files.pythonhosted.org/packages/cf/a9/599c28631bad314d219cf9ffd40e985b24d603fc8a2f4ccc5ae8419a535b/scipy-1.17.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086", size = 20344366, upload-time = "2026-02-23T00:18:12.015Z" }, - { url = "https://files.pythonhosted.org/packages/35/f5/906eda513271c8deb5af284e5ef0206d17a96239af79f9fa0aebfe0e36b4/scipy-1.17.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b", size = 22704017, upload-time = "2026-02-23T00:18:21.502Z" }, - { url = "https://files.pythonhosted.org/packages/da/34/16f10e3042d2f1d6b66e0428308ab52224b6a23049cb2f5c1756f713815f/scipy-1.17.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21", size = 32927842, upload-time = "2026-02-23T00:18:35.367Z" }, - { url = "https://files.pythonhosted.org/packages/01/8e/1e35281b8ab6d5d72ebe9911edcdffa3f36b04ed9d51dec6dd140396e220/scipy-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458", size = 35235890, upload-time = "2026-02-23T00:18:49.188Z" }, - { url = "https://files.pythonhosted.org/packages/c5/5c/9d7f4c88bea6e0d5a4f1bc0506a53a00e9fcb198de372bfe4d3652cef482/scipy-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb", size = 35003557, upload-time = "2026-02-23T00:18:54.74Z" }, - { url = "https://files.pythonhosted.org/packages/65/94/7698add8f276dbab7a9de9fb6b0e02fc13ee61d51c7c3f85ac28b65e1239/scipy-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea", size = 37625856, upload-time = "2026-02-23T00:19:00.307Z" }, - { url = "https://files.pythonhosted.org/packages/a2/84/dc08d77fbf3d87d3ee27f6a0c6dcce1de5829a64f2eae85a0ecc1f0daa73/scipy-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87", size = 36549682, upload-time = "2026-02-23T00:19:07.67Z" }, - { url = "https://files.pythonhosted.org/packages/bc/98/fe9ae9ffb3b54b62559f52dedaebe204b408db8109a8c66fdd04869e6424/scipy-1.17.1-cp312-cp312-win_arm64.whl", hash = "sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3", size = 24547340, upload-time = "2026-02-23T00:19:12.024Z" }, - { url = "https://files.pythonhosted.org/packages/76/27/07ee1b57b65e92645f219b37148a7e7928b82e2b5dbeccecb4dff7c64f0b/scipy-1.17.1-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c", size = 31590199, upload-time = "2026-02-23T00:19:17.192Z" }, - { url = "https://files.pythonhosted.org/packages/ec/ae/db19f8ab842e9b724bf5dbb7db29302a91f1e55bc4d04b1025d6d605a2c5/scipy-1.17.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f", size = 28154001, upload-time = "2026-02-23T00:19:22.241Z" }, - { url = "https://files.pythonhosted.org/packages/5b/58/3ce96251560107b381cbd6e8413c483bbb1228a6b919fa8652b0d4090e7f/scipy-1.17.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d", size = 20325719, upload-time = "2026-02-23T00:19:26.329Z" }, - { url = "https://files.pythonhosted.org/packages/b2/83/15087d945e0e4d48ce2377498abf5ad171ae013232ae31d06f336e64c999/scipy-1.17.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b", size = 22683595, upload-time = "2026-02-23T00:19:30.304Z" }, - { url = "https://files.pythonhosted.org/packages/b4/e0/e58fbde4a1a594c8be8114eb4aac1a55bcd6587047efc18a61eb1f5c0d30/scipy-1.17.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6", size = 32896429, upload-time = "2026-02-23T00:19:35.536Z" }, - { url = "https://files.pythonhosted.org/packages/f5/5f/f17563f28ff03c7b6799c50d01d5d856a1d55f2676f537ca8d28c7f627cd/scipy-1.17.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464", size = 35203952, upload-time = "2026-02-23T00:19:42.259Z" }, - { url = "https://files.pythonhosted.org/packages/8d/a5/9afd17de24f657fdfe4df9a3f1ea049b39aef7c06000c13db1530d81ccca/scipy-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950", size = 34979063, upload-time = "2026-02-23T00:19:47.547Z" }, - { url = "https://files.pythonhosted.org/packages/8b/13/88b1d2384b424bf7c924f2038c1c409f8d88bb2a8d49d097861dd64a57b2/scipy-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369", size = 37598449, upload-time = "2026-02-23T00:19:53.238Z" }, - { url = "https://files.pythonhosted.org/packages/35/e5/d6d0e51fc888f692a35134336866341c08655d92614f492c6860dc45bb2c/scipy-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448", size = 36510943, upload-time = "2026-02-23T00:20:50.89Z" }, - { url = "https://files.pythonhosted.org/packages/2a/fd/3be73c564e2a01e690e19cc618811540ba5354c67c8680dce3281123fb79/scipy-1.17.1-cp313-cp313-win_arm64.whl", hash = "sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87", size = 24545621, upload-time = "2026-02-23T00:20:55.871Z" }, - { url = "https://files.pythonhosted.org/packages/6f/6b/17787db8b8114933a66f9dcc479a8272e4b4da75fe03b0c282f7b0ade8cd/scipy-1.17.1-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a", size = 31936708, upload-time = "2026-02-23T00:19:58.694Z" }, - { url = "https://files.pythonhosted.org/packages/38/2e/524405c2b6392765ab1e2b722a41d5da33dc5c7b7278184a8ad29b6cb206/scipy-1.17.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0", size = 28570135, upload-time = "2026-02-23T00:20:03.934Z" }, - { url = "https://files.pythonhosted.org/packages/fd/c3/5bd7199f4ea8556c0c8e39f04ccb014ac37d1468e6cfa6a95c6b3562b76e/scipy-1.17.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce", size = 20741977, upload-time = "2026-02-23T00:20:07.935Z" }, - { url = "https://files.pythonhosted.org/packages/d9/b8/8ccd9b766ad14c78386599708eb745f6b44f08400a5fd0ade7cf89b6fc93/scipy-1.17.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6", size = 23029601, upload-time = "2026-02-23T00:20:12.161Z" }, - { url = "https://files.pythonhosted.org/packages/6d/a0/3cb6f4d2fb3e17428ad2880333cac878909ad1a89f678527b5328b93c1d4/scipy-1.17.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e", size = 33019667, upload-time = "2026-02-23T00:20:17.208Z" }, - { url = "https://files.pythonhosted.org/packages/f3/c3/2d834a5ac7bf3a0c806ad1508efc02dda3c8c61472a56132d7894c312dea/scipy-1.17.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475", size = 35264159, upload-time = "2026-02-23T00:20:23.087Z" }, - { url = "https://files.pythonhosted.org/packages/4d/77/d3ed4becfdbd217c52062fafe35a72388d1bd82c2d0ba5ca19d6fcc93e11/scipy-1.17.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50", size = 35102771, upload-time = "2026-02-23T00:20:28.636Z" }, - { url = "https://files.pythonhosted.org/packages/bd/12/d19da97efde68ca1ee5538bb261d5d2c062f0c055575128f11a2730e3ac1/scipy-1.17.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca", size = 37665910, upload-time = "2026-02-23T00:20:34.743Z" }, - { url = "https://files.pythonhosted.org/packages/06/1c/1172a88d507a4baaf72c5a09bb6c018fe2ae0ab622e5830b703a46cc9e44/scipy-1.17.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c", size = 36562980, upload-time = "2026-02-23T00:20:40.575Z" }, - { url = "https://files.pythonhosted.org/packages/70/b0/eb757336e5a76dfa7911f63252e3b7d1de00935d7705cf772db5b45ec238/scipy-1.17.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49", size = 24856543, upload-time = "2026-02-23T00:20:45.313Z" }, - { url = "https://files.pythonhosted.org/packages/cf/83/333afb452af6f0fd70414dc04f898647ee1423979ce02efa75c3b0f2c28e/scipy-1.17.1-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:a48a72c77a310327f6a3a920092fa2b8fd03d7deaa60f093038f22d98e096717", size = 31584510, upload-time = "2026-02-23T00:21:01.015Z" }, - { url = "https://files.pythonhosted.org/packages/ed/a6/d05a85fd51daeb2e4ea71d102f15b34fedca8e931af02594193ae4fd25f7/scipy-1.17.1-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:45abad819184f07240d8a696117a7aacd39787af9e0b719d00285549ed19a1e9", size = 28170131, upload-time = "2026-02-23T00:21:05.888Z" }, - { url = "https://files.pythonhosted.org/packages/db/7b/8624a203326675d7746a254083a187398090a179335b2e4a20e2ddc46e83/scipy-1.17.1-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:3fd1fcdab3ea951b610dc4cef356d416d5802991e7e32b5254828d342f7b7e0b", size = 20342032, upload-time = "2026-02-23T00:21:09.904Z" }, - { url = "https://files.pythonhosted.org/packages/c9/35/2c342897c00775d688d8ff3987aced3426858fd89d5a0e26e020b660b301/scipy-1.17.1-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7bdf2da170b67fdf10bca777614b1c7d96ae3ca5794fd9587dce41eb2966e866", size = 22678766, upload-time = "2026-02-23T00:21:14.313Z" }, - { url = "https://files.pythonhosted.org/packages/ef/f2/7cdb8eb308a1a6ae1e19f945913c82c23c0c442a462a46480ce487fdc0ac/scipy-1.17.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:adb2642e060a6549c343603a3851ba76ef0b74cc8c079a9a58121c7ec9fe2350", size = 32957007, upload-time = "2026-02-23T00:21:19.663Z" }, - { url = "https://files.pythonhosted.org/packages/0b/2e/7eea398450457ecb54e18e9d10110993fa65561c4f3add5e8eccd2b9cd41/scipy-1.17.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:eee2cfda04c00a857206a4330f0c5e3e56535494e30ca445eb19ec624ae75118", size = 35221333, upload-time = "2026-02-23T00:21:25.278Z" }, - { url = "https://files.pythonhosted.org/packages/d9/77/5b8509d03b77f093a0d52e606d3c4f79e8b06d1d38c441dacb1e26cacf46/scipy-1.17.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d2650c1fb97e184d12d8ba010493ee7b322864f7d3d00d3f9bb97d9c21de4068", size = 35042066, upload-time = "2026-02-23T00:21:31.358Z" }, - { url = "https://files.pythonhosted.org/packages/f9/df/18f80fb99df40b4070328d5ae5c596f2f00fffb50167e31439e932f29e7d/scipy-1.17.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:08b900519463543aa604a06bec02461558a6e1cef8fdbb8098f77a48a83c8118", size = 37612763, upload-time = "2026-02-23T00:21:37.247Z" }, - { url = "https://files.pythonhosted.org/packages/4b/39/f0e8ea762a764a9dc52aa7dabcfad51a354819de1f0d4652b6a1122424d6/scipy-1.17.1-cp314-cp314-win_amd64.whl", hash = "sha256:3877ac408e14da24a6196de0ddcace62092bfc12a83823e92e49e40747e52c19", size = 37290984, upload-time = "2026-02-23T00:22:35.023Z" }, - { url = "https://files.pythonhosted.org/packages/7c/56/fe201e3b0f93d1a8bcf75d3379affd228a63d7e2d80ab45467a74b494947/scipy-1.17.1-cp314-cp314-win_arm64.whl", hash = "sha256:f8885db0bc2bffa59d5c1b72fad7a6a92d3e80e7257f967dd81abb553a90d293", size = 25192877, upload-time = "2026-02-23T00:22:39.798Z" }, - { url = "https://files.pythonhosted.org/packages/96/ad/f8c414e121f82e02d76f310f16db9899c4fcde36710329502a6b2a3c0392/scipy-1.17.1-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:1cc682cea2ae55524432f3cdff9e9a3be743d52a7443d0cba9017c23c87ae2f6", size = 31949750, upload-time = "2026-02-23T00:21:42.289Z" }, - { url = "https://files.pythonhosted.org/packages/7c/b0/c741e8865d61b67c81e255f4f0a832846c064e426636cd7de84e74d209be/scipy-1.17.1-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:2040ad4d1795a0ae89bfc7e8429677f365d45aa9fd5e4587cf1ea737f927b4a1", size = 28585858, upload-time = "2026-02-23T00:21:47.706Z" }, - { url = "https://files.pythonhosted.org/packages/ed/1b/3985219c6177866628fa7c2595bfd23f193ceebbe472c98a08824b9466ff/scipy-1.17.1-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:131f5aaea57602008f9822e2115029b55d4b5f7c070287699fe45c661d051e39", size = 20757723, upload-time = "2026-02-23T00:21:52.039Z" }, - { url = "https://files.pythonhosted.org/packages/c0/19/2a04aa25050d656d6f7b9e7b685cc83d6957fb101665bfd9369ca6534563/scipy-1.17.1-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9cdc1a2fcfd5c52cfb3045feb399f7b3ce822abdde3a193a6b9a60b3cb5854ca", size = 23043098, upload-time = "2026-02-23T00:21:56.185Z" }, - { url = "https://files.pythonhosted.org/packages/86/f1/3383beb9b5d0dbddd030335bf8a8b32d4317185efe495374f134d8be6cce/scipy-1.17.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e3dcd57ab780c741fde8dc68619de988b966db759a3c3152e8e9142c26295ad", size = 33030397, upload-time = "2026-02-23T00:22:01.404Z" }, - { url = "https://files.pythonhosted.org/packages/41/68/8f21e8a65a5a03f25a79165ec9d2b28c00e66dc80546cf5eb803aeeff35b/scipy-1.17.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a9956e4d4f4a301ebf6cde39850333a6b6110799d470dbbb1e25326ac447f52a", size = 35281163, upload-time = "2026-02-23T00:22:07.024Z" }, - { url = "https://files.pythonhosted.org/packages/84/8d/c8a5e19479554007a5632ed7529e665c315ae7492b4f946b0deb39870e39/scipy-1.17.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:a4328d245944d09fd639771de275701ccadf5f781ba0ff092ad141e017eccda4", size = 35116291, upload-time = "2026-02-23T00:22:12.585Z" }, - { url = "https://files.pythonhosted.org/packages/52/52/e57eceff0e342a1f50e274264ed47497b59e6a4e3118808ee58ddda7b74a/scipy-1.17.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a77cbd07b940d326d39a1d1b37817e2ee4d79cb30e7338f3d0cddffae70fcaa2", size = 37682317, upload-time = "2026-02-23T00:22:18.513Z" }, - { url = "https://files.pythonhosted.org/packages/11/2f/b29eafe4a3fbc3d6de9662b36e028d5f039e72d345e05c250e121a230dd4/scipy-1.17.1-cp314-cp314t-win_amd64.whl", hash = "sha256:eb092099205ef62cd1782b006658db09e2fed75bffcae7cc0d44052d8aa0f484", size = 37345327, upload-time = "2026-02-23T00:22:24.442Z" }, - { url = "https://files.pythonhosted.org/packages/07/39/338d9219c4e87f3e708f18857ecd24d22a0c3094752393319553096b98af/scipy-1.17.1-cp314-cp314t-win_arm64.whl", hash = "sha256:200e1050faffacc162be6a486a984a0497866ec54149a01270adc8a59b7c7d21", size = 25489165, upload-time = "2026-02-23T00:22:29.563Z" }, -] - -[[package]] -name = "scipy" -version = "1.18.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", -] -dependencies = [ - { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "markdown-it-py" }, + { name = "pygments" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a7/25/c2700dfaf6442b4effaa91af24ebce5dc9d31bb4a69706313aae70d72cd0/scipy-1.18.0.tar.gz", hash = "sha256:67b2ad2ad54c72ca6d04975a9b2df8c3638c34ddd5b28738e94fc2b57929d378", size = 30774447, upload-time = "2026-06-19T15:01:43.456Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6a/19/ca10ead60b0acc80b2b833c2c4a4f2ff753d0f58b811f70d911c7e94a25c/scipy-1.18.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:7bd21faaf5a1a3b2eff922d02db5f191b99a6518db9078a8fb23169f6d22259a", size = 31056519, upload-time = "2026-06-19T14:59:45.203Z" }, - { url = "https://files.pythonhosted.org/packages/96/72/1e6442a00cd2924d361aa1b642ab6373ec35c6fabf311a760be9f76e0f13/scipy-1.18.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:265915e79107de9f946b855e50d7470d5893ec3f54b342e1aa6201cbdcd8bb6b", size = 28681889, upload-time = "2026-06-19T14:59:48.103Z" }, - { url = "https://files.pythonhosted.org/packages/9b/2d/11dd93d21e147a73ba22bd75c0b9208d3a2e0ec76d53170ce7d9029b1015/scipy-1.18.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9ab7b758be6940954a713ee466e2043e9f6e2ed965c1fce5c91039f4be3d90a9", size = 20423580, upload-time = "2026-06-19T14:59:50.665Z" }, - { url = "https://files.pythonhosted.org/packages/9c/01/93552f75e0d2a7dd115a45e59209c51e8d514daff02fc887d2623be06fe1/scipy-1.18.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:97b6cddaaee0a779ef6b5ca83c9604b27cc16b2b8fc22c142652df8793319fb8", size = 23054441, upload-time = "2026-06-19T14:59:53.564Z" }, - { url = "https://files.pythonhosted.org/packages/3c/23/21f5e703643d66f21faa6b4c73195bfcad70c55efcb4f1ab327cd7c4101a/scipy-1.18.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:52a96e21517c7292375c0e27dd796a811f03fcea5fd4d108fdfea8145dcf17ab", size = 33968720, upload-time = "2026-06-19T14:59:56.415Z" }, - { url = "https://files.pythonhosted.org/packages/dd/aa/1b939f6c67ed68635bb538e6752d3dacc02f66535182e939a89581a44e9c/scipy-1.18.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f55797419e16e7f30cf88ffb3113ce0467f00cfe3f70d5c281730b21769bfc2", size = 35287115, upload-time = "2026-06-19T14:59:59.411Z" }, - { url = "https://files.pythonhosted.org/packages/b6/ff/eec46be7e9234208f801062b53e1983085eddebd693f6c9bfb03b459830d/scipy-1.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ad033410e2e0672ffdc1042110cef20e1c46f8fd0616cee1d44d8d58fad8fc11", size = 35577989, upload-time = "2026-06-19T15:00:02.235Z" }, - { url = "https://files.pythonhosted.org/packages/84/ca/210d4759c7210bb7d269437421959b39a33434e2776b60c5cb8a763bb30a/scipy-1.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4a55985d54c769c872e64b7f4c8a81cc30ef700cc04296abbbf3705439c126de", size = 37421717, upload-time = "2026-06-19T15:00:05.102Z" }, - { url = "https://files.pythonhosted.org/packages/2b/54/9a9edb45345bd6744da5ddfb6628e5d5185920494c6a67ec45b6381004cb/scipy-1.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:71ccc8faa2dd16ac310233203474a8b5cb67f10dedd54a3116d34943f4b19132", size = 36597428, upload-time = "2026-06-19T15:00:08.112Z" }, - { url = "https://files.pythonhosted.org/packages/99/0e/33f32a2a58987e26aec0f7df252cbbad1e90ae77bdbc76f40dd4ed0cf0ea/scipy-1.18.0-cp312-cp312-win_arm64.whl", hash = "sha256:d88363fd9d8fbd3511bd273f1a49efb2a540773ddf92a91d57498ce7dd7f3e76", size = 24351481, upload-time = "2026-06-19T15:00:11.103Z" }, - { url = "https://files.pythonhosted.org/packages/05/52/9c0136c2de7ae0779b7b366447766cec6d9f0702c56bb8ffeb04c8fd3af4/scipy-1.18.0-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:09143f676d157d9f546d663504ef9c1becb819824f1afc018814176411942446", size = 31036107, upload-time = "2026-06-19T15:00:14.03Z" }, - { url = "https://files.pythonhosted.org/packages/02/73/0291a64843270f4efb86cdcf2ee0f2048631b65ec6b405398b2b4dbf11bf/scipy-1.18.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:5efe260f69417b97ddae455bfb5a95e8359f7f66ad7fa9522a60feb66f169520", size = 28663303, upload-time = "2026-06-19T15:00:16.819Z" }, - { url = "https://files.pythonhosted.org/packages/d3/0f/10ffa0b697a572f4e0d48b92a88895d366422f019f723e7e14a84c050dac/scipy-1.18.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:68363b7eaacd8b5dd426df56d782cc156468ac79a127a1b87ca597d6e2e82197", size = 20404960, upload-time = "2026-06-19T15:00:19.635Z" }, - { url = "https://files.pythonhosted.org/packages/7e/d2/e896cea21ba8edd6c81d4c55b1ffcc717e79698dcbebf9641b4cfb4c6622/scipy-1.18.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:c5557d8be5da8e41353fcd4d21491fdbab83b062fc579e94dc09a7c8ab4f669b", size = 23034074, upload-time = "2026-06-19T15:00:22.107Z" }, - { url = "https://files.pythonhosted.org/packages/ea/b2/e83ea34279a52c03374477c74006256ec78df65fc877baa4617d6de1d202/scipy-1.18.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0d13bca67c096d89fb95ced0d8921807300fce0275643aef9533cc63a0773468", size = 33942038, upload-time = "2026-06-19T15:00:24.964Z" }, - { url = "https://files.pythonhosted.org/packages/f6/af/e8fe5fb136f51e2b01678b92cb4106d10d8cd68ec147ead2e7cb0ac75398/scipy-1.18.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a46f9273dbd0eb1cefba61c9b8648b4dfe3cbc14a080176f9a73e44b8336dc7f", size = 35266390, upload-time = "2026-06-19T15:00:28.059Z" }, - { url = "https://files.pythonhosted.org/packages/3a/49/2c5cbb907b56695fc67517811d1db234dfd83381a84814ec220aded2794d/scipy-1.18.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5aba46108853ddfc77906b6557aac839d2b52e900c1d72a1180adaaab58d265f", size = 35551324, upload-time = "2026-06-19T15:00:31.014Z" }, - { url = "https://files.pythonhosted.org/packages/bb/73/eda39f7a2d306ff0ffc574afd13c0bbb6d10a603d9a413998ee269487a80/scipy-1.18.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b6f758e35f12757b5d95c00bc6de2438e229c2664b7a92e96f205959d9f2dfa4", size = 37404785, upload-time = "2026-06-19T15:00:34.072Z" }, - { url = "https://files.pythonhosted.org/packages/b7/d2/ae881ee28d014f38e0ccbfd974a06a919ba9af34f1f74bf42b5301891d63/scipy-1.18.0-cp313-cp313-win_amd64.whl", hash = "sha256:1afac4a847207c7ff8efd321734a50b06d0280b3b2a2c0fc2f413101747ad7c7", size = 36554943, upload-time = "2026-06-19T15:00:36.903Z" }, - { url = "https://files.pythonhosted.org/packages/70/3a/21154e2d54eb3639c6bf4dbae2e531c68356bfe95990daa30df33b30d556/scipy-1.18.0-cp313-cp313-win_arm64.whl", hash = "sha256:c5dbddf60e58c2312316d097271a8e73d40eaf2eabfa4d95ed7d3695bbf2ce7b", size = 24350911, upload-time = "2026-06-19T15:00:40.062Z" }, - { url = "https://files.pythonhosted.org/packages/78/b5/915a19b3de2f7430062b509653563db1633ddbb6f021b06731521115d4e2/scipy-1.18.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:4c256ee70c0d1a8a2ace807e199ccd4e3f57037433842abb3fb36bc17eaa9578", size = 31036253, upload-time = "2026-06-19T15:00:43.216Z" }, - { url = "https://files.pythonhosted.org/packages/d7/88/b72def7262e150d16be13fca37a96481138d624e700340bc3362a7588929/scipy-1.18.0-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:2ef3abc54a4ffc53765374b0d5728532dfdd2585ed23f6b11c206a1f0b1b9af8", size = 28673758, upload-time = "2026-06-19T15:00:46.663Z" }, - { url = "https://files.pythonhosted.org/packages/91/02/2e636a61a525632c373cf6a9c24442a3ffb79e364d38e98b32042964ac32/scipy-1.18.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:f2a6af57bd9e4a75d70e4117e78a1bbee84f79ae3fbb6d0111005d6ebcc4cb8d", size = 20415514, upload-time = "2026-06-19T15:00:49.399Z" }, - { url = "https://files.pythonhosted.org/packages/c9/b6/2135974442f6aba159d9d39d774a1c8cb19947016725d69fecc685df45bf/scipy-1.18.0-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:3f1ac564d3bf6c03d861d2cd87a1bea0da2887136f7fb1bf519c05a8971452d6", size = 23034398, upload-time = "2026-06-19T15:00:51.941Z" }, - { url = "https://files.pythonhosted.org/packages/f6/e6/ba89ec5abf6ee9257c0d1ec985573f3ae32742c24bc03e016388a40b1b15/scipy-1.18.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40395a5fcd1abee49a5c7aaa98c29db393eedc835138560a588c47ec16156690", size = 33998032, upload-time = "2026-06-19T15:00:54.838Z" }, - { url = "https://files.pythonhosted.org/packages/7f/c4/bc41eb19b0fd0db868f4132920879019318d80cc522ad8f2bca4611af808/scipy-1.18.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8ca01e8ae69f1b18e9a58d91afead31be3cef0dd905a10249dac559ee15460a0", size = 35283333, upload-time = "2026-06-19T15:00:58.152Z" }, - { url = "https://files.pythonhosted.org/packages/53/a4/cbdeef6eb3830a8462a9d4ada814de5fc984345cc9ecf17cbec51a036f1e/scipy-1.18.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7a7f3b01647384dbc3a711e8c6778e0aabbe93959249fef5c7393396bcac0867", size = 35610216, upload-time = "2026-06-19T15:01:01.155Z" }, - { url = "https://files.pythonhosted.org/packages/80/4d/b2b82502b65f661d1b789c1665dcdf315d5f12194e06fc0b37946294ebae/scipy-1.18.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6aa94e78ec192a30063a5e72e561c28af769dc311190b24fe91774eff1969709", size = 37418960, upload-time = "2026-06-19T15:01:04.155Z" }, - { url = "https://files.pythonhosted.org/packages/93/3e/902d836831474b0ab5a37d16404f7bc5fafd9efba632890e271ba952635f/scipy-1.18.0-cp314-cp314-win_amd64.whl", hash = "sha256:2d8bbdc6c817f5b4006a54d799d4f5bab6f910193cbb9a1ff310833d4d270f61", size = 37288845, upload-time = "2026-06-19T15:01:07.822Z" }, - { url = "https://files.pythonhosted.org/packages/b6/43/8d73b337a3bdb14daa0314f0434210747c02d79d729ce1777574a817dcf6/scipy-1.18.0-cp314-cp314-win_arm64.whl", hash = "sha256:18e9575f1569b2c54174e6159d32942e03731177f63dce7975f0a0c88d102f5b", size = 24988971, upload-time = "2026-06-19T15:01:11.076Z" }, - { url = "https://files.pythonhosted.org/packages/b4/b4/f11918b0508a2787031a0499a03fbe3546f3bb5ca05d01038c45b278c09a/scipy-1.18.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:f351e0dd702687d12a402b867a1b4146a256923e1c38317cbc472f6372b94707", size = 31399325, upload-time = "2026-06-19T15:01:13.723Z" }, - { url = "https://files.pythonhosted.org/packages/7b/d1/1f287b57c0ff0ee5185dff3946d92c8017d39b0e431f0ae79a3ff1859512/scipy-1.18.0-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:7c7a51b33ce387193c97f228320cf8e87361daa1bba750638677729598b3e677", size = 29092110, upload-time = "2026-06-19T15:01:16.908Z" }, - { url = "https://files.pythonhosted.org/packages/ff/1a/7b74eb6c392fdcb27d414c0e7558a6d0231eb3b6d73571f479bb81ea8794/scipy-1.18.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:84031d7b052a54fae2f8632e0ec802073d385476eb9a63079bce6e23ef9283d4", size = 20833811, upload-time = "2026-06-19T15:01:20.488Z" }, - { url = "https://files.pythonhosted.org/packages/7c/ad/f3941716320a7b9cb4d68734a903b45fe16eff5fb7da7e16f2e619304979/scipy-1.18.0-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:56abf29a7c067dde59be8b9a22d606a4ea1b2f2a4b756d9d903c62818f5dacce", size = 23396644, upload-time = "2026-06-19T15:01:23.364Z" }, - { url = "https://files.pythonhosted.org/packages/22/22/1446b62ffe07f9719b7d9b1b6a4e05a772833ae8f441fe4c22c34c9b250f/scipy-1.18.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ad44305cfa24b1ba5803cbbebf033590ccbac1aa5d612d727b785325ab408b0", size = 34079318, upload-time = "2026-06-19T15:01:26.002Z" }, - { url = "https://files.pythonhosted.org/packages/56/3b/b87da667098bb470fa30c7011b0ba351ee976dd395c78798c66e941665a3/scipy-1.18.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:945c1761b93f38d7f99ae81ae80c63e621471608c7eeead563f6df025585cd58", size = 35324320, upload-time = "2026-06-19T15:01:28.881Z" }, - { url = "https://files.pythonhosted.org/packages/f8/a1/c7932f91909759b0267f75fdea34e91309f96b895757534b76a90b6b4344/scipy-1.18.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1a4441f15d620578772a49e5ab48c0ee1f7a0220e387110283062729136b2553", size = 35699541, upload-time = "2026-06-19T15:01:31.968Z" }, - { url = "https://files.pythonhosted.org/packages/f7/86/5185061a1fcc41d18c5dc2463969b3a3964b31d9ac67b2fb05d4c7ff7670/scipy-1.18.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:9aac6192fac56bf2ca534389d24623f07b39ff83317d58287285e7fbd622ff76", size = 37472480, upload-time = "2026-06-19T15:01:35.136Z" }, - { url = "https://files.pythonhosted.org/packages/31/8e/f04c68e39919a010d34f2ee1367fd705b0a25a02f609d755f0bfbc0a15fc/scipy-1.18.0-cp314-cp314t-win_amd64.whl", hash = "sha256:e40baea28ae7f5475c779741e2d90b1247c78531207b49c7030e698ff81cee3f", size = 37365390, upload-time = "2026-06-19T15:01:38.091Z" }, - { url = "https://files.pythonhosted.org/packages/d5/19/969dc072906c84dd0a3b05dcf57ea750936087d7873549e408b35cfc3f97/scipy-1.18.0-cp314-cp314t-win_arm64.whl", hash = "sha256:368e0a705903c466aa5f08eefb39e6b1b6b2d659e7352a31fd9e2438365be0f8", size = 25279661, upload-time = "2026-06-19T15:01:40.817Z" }, + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, ] [[package]] -name = "selectolax" -version = "0.4.10" +name = "shellingham" +version = "1.5.4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/47/df/d19f9b47eb6c1aa0ddf95259c757c018c39682facb569e81c23e173bbf35/selectolax-0.4.10.tar.gz", hash = "sha256:89764b4d1e32d38e635dfb270a639fc707af4315b863fd161357a517321e5046", size = 4880217, upload-time = "2026-05-26T15:43:06.411Z" } +sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310, upload-time = "2023-10-24T04:13:40.426Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/63/34/cee18c79edc4268b679ff7af60c58918f2c8279de7715998c81ff4f39eff/selectolax-0.4.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b65ce508ed7f3951a2f36f807494c253d0ebe99d2b18ede149f9a97b99be7d7a", size = 2216148, upload-time = "2026-05-26T15:41:39.522Z" }, - { url = "https://files.pythonhosted.org/packages/8a/29/60ddd1570386ea2e13683848b7d21ffbd1d41c921cb88df20cd10fd6679d/selectolax-0.4.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c1bb382bd7009676716814ee81327015ab3d472aff0148fccbd20322d37af83d", size = 2270171, upload-time = "2026-05-26T15:41:40.929Z" }, - { url = "https://files.pythonhosted.org/packages/41/e7/7bef2f76dfd0d270899277d07d7418df82623f1985d570f73ad0a0b963a9/selectolax-0.4.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:48c238f4f2b4ebd3d94ec260363d2bbab7df2825b592a1f9b12d59a9a9e9ee9a", size = 2347593, upload-time = "2026-05-26T15:41:42.391Z" }, - { url = "https://files.pythonhosted.org/packages/5b/f5/fdb59ef99828ee43e2792507bd67f7d5dfd844dbb1ac6512698e16fa8add/selectolax-0.4.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:975bf1199c80965307168a05c4d88312a62b8151ac27216ed1248fbd175695bb", size = 2399514, upload-time = "2026-05-26T15:41:44.151Z" }, - { url = "https://files.pythonhosted.org/packages/6e/03/46ed77c44e877278723c31ce8fac7942a6909d46a4d50c87cd6d685b21ce/selectolax-0.4.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c74168deeb116a1271e74e7a157e329930b7f54e328b323ce00bf7089f39dc9", size = 2352416, upload-time = "2026-05-26T15:41:45.56Z" }, - { url = "https://files.pythonhosted.org/packages/c7/80/cb89e578a53cf51674c9083e3a9518a45bf5b8af56309cc1fa63cc007703/selectolax-0.4.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:547de570413e22ae5cbc8432d6224dd5a2d5bc66d1a50e34b705e5940d035caa", size = 2409794, upload-time = "2026-05-26T15:41:47.374Z" }, - { url = "https://files.pythonhosted.org/packages/06/af/5346ac7a2053a502687b136c836c0902d0570398e8f71d73182492a3863b/selectolax-0.4.10-cp311-cp311-win32.whl", hash = "sha256:e053064c5e00788a6bcc5427a753e41c058f29e4285bf84a3e663989b7218cdb", size = 1768531, upload-time = "2026-05-26T15:41:49.111Z" }, - { url = "https://files.pythonhosted.org/packages/81/8c/ae5b0f04d1e39bc212f3a3e1cf308a8c5f117f03cd3c089b6a04e8d8fbc7/selectolax-0.4.10-cp311-cp311-win_amd64.whl", hash = "sha256:db236a92e49b27369a98b9e8ac6c97e1534368d83281d097f3e50c2ba597f112", size = 1865401, upload-time = "2026-05-26T15:41:50.695Z" }, - { url = "https://files.pythonhosted.org/packages/cf/b5/7eb96a229cbdd7773c223c7ecfd0b0eead78b330218c6768179ab5daa2d1/selectolax-0.4.10-cp311-cp311-win_arm64.whl", hash = "sha256:746838a34df35ceff5f6154991b09aa6c27f044dc1fe9a4137f8c57e3e9f1203", size = 1816391, upload-time = "2026-05-26T15:41:52.135Z" }, - { url = "https://files.pythonhosted.org/packages/33/26/a7966a2e2667463717c71903851b4c8a434afd3b592e8528bc87efa1cb1e/selectolax-0.4.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c1933f53fe7410777b3373b9900010ae8d392a6d245f019d8f011d12f700e389", size = 2241715, upload-time = "2026-05-26T15:41:53.81Z" }, - { url = "https://files.pythonhosted.org/packages/76/55/0181dfa3cdec4c5db9868ca489fc50b5521a74c1847a0628db6e08bd3359/selectolax-0.4.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40babac4aea579edfb32b74acdacdb4c38bacb1ee3d1c4189f9665c52c67586f", size = 2292823, upload-time = "2026-05-26T15:41:55.692Z" }, - { url = "https://files.pythonhosted.org/packages/47/95/6d821c8de1bcc8be380c4f9efc6688a433796a5c18809b77219e9616a918/selectolax-0.4.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4d41b7e95ab0e025053efcba71267af12a6c12bc624e3bdf5dd83c6534f3d696", size = 2375082, upload-time = "2026-05-26T15:41:57.243Z" }, - { url = "https://files.pythonhosted.org/packages/2e/c5/23903b34869f6721c36a46b8231da202b7af729f6e28b54fbb06f59e5195/selectolax-0.4.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:98e41ac4a761c5d4589ce9c40866a80fa2c5d413ac6b3af9546b43a2b3a8da18", size = 2422073, upload-time = "2026-05-26T15:41:58.667Z" }, - { url = "https://files.pythonhosted.org/packages/23/f3/85f1ac82944254822d7bc8b20bae674d9bb4fb93fd3e101f6f807c7f075c/selectolax-0.4.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:425288d4f5b18cfb0049fd1d6f3bddfba319657b9547b0e2bd24103b4b69435e", size = 2379122, upload-time = "2026-05-26T15:42:00.089Z" }, - { url = "https://files.pythonhosted.org/packages/47/61/c4e8aa47d25245644cc0ce60ea2eb922f501ccea8f642ba01c5d551e8959/selectolax-0.4.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1ff2585eaf13ddc5c6614b10a7e47679b0c18a78821495e0c448364f8871592e", size = 2441931, upload-time = "2026-05-26T15:42:01.522Z" }, - { url = "https://files.pythonhosted.org/packages/67/73/05eda9364c5f1053f166648a1e69c546e53af0e01901a2f218b32c2a7010/selectolax-0.4.10-cp312-cp312-win32.whl", hash = "sha256:2428f04d2a48ba5f4c182f0d7234a7e38ac799b3358b3063f0ae41f754ee1c4a", size = 1763584, upload-time = "2026-05-26T15:42:03.055Z" }, - { url = "https://files.pythonhosted.org/packages/10/66/abcf20676cd05eeefef58f6644855216575ae3988b719e914d359ffa3104/selectolax-0.4.10-cp312-cp312-win_amd64.whl", hash = "sha256:c4b4b7c5d09a20539d369891332a107a869ee170453254048fbc18f893deb4f9", size = 1859909, upload-time = "2026-05-26T15:42:04.843Z" }, - { url = "https://files.pythonhosted.org/packages/fc/a5/6a84520df37873cbc08af4fd8a719a495d5971a7c370c2ed8512e8391935/selectolax-0.4.10-cp312-cp312-win_arm64.whl", hash = "sha256:98f93b92d23a8feb88efc7c8e692221456bae30dc551d86d376931491152b909", size = 1810017, upload-time = "2026-05-26T15:42:06.561Z" }, - { url = "https://files.pythonhosted.org/packages/37/88/f932da5e018dcec1fa4286414db4798afdd244fbf95a46ac79db018318e1/selectolax-0.4.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3236fc0fbea9e237ee963274ebae700e68b9d6784bf91e0b3693eda63b393fa2", size = 2241128, upload-time = "2026-05-26T15:42:08.34Z" }, - { url = "https://files.pythonhosted.org/packages/9a/10/0a2caaceda0c6cf226fe5e43f6d7b9134207cf61642bed651712c7599646/selectolax-0.4.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b43da45acece07f94e4b0d555e073f1a91314c98cb86d10860a1b291bc498976", size = 2291992, upload-time = "2026-05-26T15:42:09.723Z" }, - { url = "https://files.pythonhosted.org/packages/fb/d5/687dfb8c09110a5986a4f3f8e424b61c0f71716c5784077b76f02e4e81d7/selectolax-0.4.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a5c80477a3a93f0ee350d832c6fc764cd2df1299914a816bcd5ed4f0c9701b9b", size = 2374518, upload-time = "2026-05-26T15:42:11.201Z" }, - { url = "https://files.pythonhosted.org/packages/64/44/ac6011d2785f643baf3be4b8910e657e71427d37e41a15a513274b794425/selectolax-0.4.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:16055f712bd93507ce61ecac156bb7acf96b2e46c4d4d30c616e810f74f4da6e", size = 2421458, upload-time = "2026-05-26T15:42:12.656Z" }, - { url = "https://files.pythonhosted.org/packages/e6/fa/0cd29c8a629fe890a53ef2db9cf9282dffad9f4d0cf9a41553a87058f82c/selectolax-0.4.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d42566a7e649d4e5461e763a241f46542df2613876422e0530bc59999063f36d", size = 2378999, upload-time = "2026-05-26T15:42:14.011Z" }, - { url = "https://files.pythonhosted.org/packages/fd/d0/3f9ba04dba314c2f3237aca73e5b6c9578d693297bc0c91b2224d48b2455/selectolax-0.4.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6517b40e41ae5cc7756f92d88c59f178eb4a3683c7ce39c66bd5617587f628e5", size = 2441425, upload-time = "2026-05-26T15:42:15.66Z" }, - { url = "https://files.pythonhosted.org/packages/34/f3/83e49b1b8dd68d4844a85930a6d68cbf14636be222cda03229833b8326be/selectolax-0.4.10-cp313-cp313-win32.whl", hash = "sha256:7c596b424c55ae87003140f55e6aa6f88e060b645781fa69e947ef60691b2bde", size = 1763466, upload-time = "2026-05-26T15:42:17.674Z" }, - { url = "https://files.pythonhosted.org/packages/16/6b/e77507d5aa7d5724c94333fa229694e108c0a4ca88a1c39ea9ae9ed7afc3/selectolax-0.4.10-cp313-cp313-win_amd64.whl", hash = "sha256:1bb589f6ed0f1ec28784c2cd29de111a5b6f8129c3ecf0e71b9665e588667b97", size = 1861934, upload-time = "2026-05-26T15:42:19.194Z" }, - { url = "https://files.pythonhosted.org/packages/23/69/7e31bb9427fee2d7506d20da60257ec3f72c278c176dbf47b7e0c494d521/selectolax-0.4.10-cp313-cp313-win_arm64.whl", hash = "sha256:ec333fe02c4b7d8a03c0aa58c7c2265edd3312b1ef309f03efd020f595f6dae1", size = 1810021, upload-time = "2026-05-26T15:42:21.185Z" }, - { url = "https://files.pythonhosted.org/packages/5f/21/e48766fb5f921d4a84456a87135a0605d72678753b912be3fd25344f104d/selectolax-0.4.10-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:a95f67ed9d5947562e9268332cc7165660c7db0cd3faea959e13b6901b4d323f", size = 2256784, upload-time = "2026-05-26T15:42:22.946Z" }, - { url = "https://files.pythonhosted.org/packages/df/a5/121f398a2ff01a5947b5601ed16f99e29771dbc21b23b18c8f4527f99a40/selectolax-0.4.10-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:01c1354b158f8c87b72ab50a12b4b6d7b276150ded39210d1078d65d1e24ae0d", size = 2308754, upload-time = "2026-05-26T15:42:24.897Z" }, - { url = "https://files.pythonhosted.org/packages/5b/65/3cef0d30585e22c808bc09848e318ccf30b3d00a9123e66ec3d5eb5e5899/selectolax-0.4.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d60cabbf1899916a6389fa36f2908b1a76e00dd044f710ae3dd2d0b14919dfc7", size = 2374320, upload-time = "2026-05-26T15:42:26.771Z" }, - { url = "https://files.pythonhosted.org/packages/4c/63/99e3598c137d638ff67aba0b53d99649e560c04230c838776328be98fd64/selectolax-0.4.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ab8f95b196b2dfb2be3ea7274673d45bb251ec2e16a0e7a3c1fc21c1c20d0722", size = 2420463, upload-time = "2026-05-26T15:42:28.328Z" }, - { url = "https://files.pythonhosted.org/packages/b3/a9/c17ed28a06b6f9214845719c8fd73edfa21013cd03da31ce9a2d83951259/selectolax-0.4.10-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a96d59ba2a8ba01e4f732913816f5684d30d0646b7cd0fa17377fc9d1032cc0d", size = 2395397, upload-time = "2026-05-26T15:42:29.774Z" }, - { url = "https://files.pythonhosted.org/packages/14/60/b1bd8724aa041b233a32d9eba3135fd7d4f285b1f216c39b5ba7263680d4/selectolax-0.4.10-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:794a10f0c2cb9662ad85c5a970a72ca072057d68f7f0b3cf7b3230e5f2a8f221", size = 2458486, upload-time = "2026-05-26T15:42:31.592Z" }, - { url = "https://files.pythonhosted.org/packages/04/7d/a964ceb566a6042170bbb42bd4f22117a13afe15db285c0ab858477c5963/selectolax-0.4.10-cp314-cp314-win32.whl", hash = "sha256:5d5b5437ce7548e7bc0b7712114de07dd0e4f94a30b06c968a6344148621df50", size = 1875157, upload-time = "2026-05-26T15:42:32.959Z" }, - { url = "https://files.pythonhosted.org/packages/7b/e1/0a1f9004a48d1229d90ea42efcd9093688c3afc852c2d122245c499e5821/selectolax-0.4.10-cp314-cp314-win_amd64.whl", hash = "sha256:ab07fc342cf477c0320d22fac52917b824871caf5ab177a0fd94377a901ab657", size = 1970092, upload-time = "2026-05-26T15:42:34.325Z" }, - { url = "https://files.pythonhosted.org/packages/f4/71/1a1d8196ffa9fc84c64a66294ef1ecdbb9951c7a04b9bb6c6d224d776712/selectolax-0.4.10-cp314-cp314-win_arm64.whl", hash = "sha256:8b57c64690e3c86b5d07386e2e598f4d3b4990144b1d5717db7038d0b675a97e", size = 1920951, upload-time = "2026-05-26T15:42:35.627Z" }, - { url = "https://files.pythonhosted.org/packages/0a/9b/74df013d85601d21c5e79682576ead17abe660ffce39a6fb7c300494f829/selectolax-0.4.10-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:3c21749e3d252419581160f3a3e43c1ad95dd0f83a13fe0d8c8fe6256bf7bbe6", size = 2272452, upload-time = "2026-05-26T15:42:37.379Z" }, - { url = "https://files.pythonhosted.org/packages/9f/a4/c4f94d1ae0d3da58a3dc410d0c59a8e37429c74b38287a2ab0ed0480123d/selectolax-0.4.10-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:88475ef523fe5426d113e8319eeb741806a51cc025840f337661734c65cf1aa4", size = 2318066, upload-time = "2026-05-26T15:42:39.203Z" }, - { url = "https://files.pythonhosted.org/packages/b5/9e/f977b33c18e8957fca9fcbdf445e5501a7dd1afd57b3fc15d07de249e6fc/selectolax-0.4.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40ecd0ff315dffa4a55840107367b0a54f2cd35be66e700c619364e0cd087ace", size = 2379516, upload-time = "2026-05-26T15:42:40.8Z" }, - { url = "https://files.pythonhosted.org/packages/43/4a/3f086f729dd47423719e5101f64342bd637e4420b0dafb3e5df61a9b37c8/selectolax-0.4.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b3d199a73894368b83e5d744f64bddf80c22a37c160253a8e81c1a6000be607b", size = 2430207, upload-time = "2026-05-26T15:42:42.751Z" }, - { url = "https://files.pythonhosted.org/packages/84/9d/51a5283bb95c679448bc5d3e1da9a00ebd5e3ad983e2247d1a1190ef3ba6/selectolax-0.4.10-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:4b0e1ad8b3d3d11bc173d33bb0fcf9d3ef8c667f1f3debd31ac8e9e3880ee174", size = 2404374, upload-time = "2026-05-26T15:42:44.835Z" }, - { url = "https://files.pythonhosted.org/packages/b4/2b/39cc5599b5531423a4eb68510a395baf8ce8ba9c3655dd86e7b4bc6140ba/selectolax-0.4.10-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:373298d5c2e22a73740ba8f60a5813fd6bdb8fa2c0fd170841341ad0119bdf6b", size = 2466741, upload-time = "2026-05-26T15:42:46.492Z" }, - { url = "https://files.pythonhosted.org/packages/fb/7f/b20bb6b03b5cf8e9ff6d524796942291d9157ccfcdbf6bcc5fc322fd2d2b/selectolax-0.4.10-cp314-cp314t-win32.whl", hash = "sha256:67f826152635521e1751665e315f3be82d027fe79d6446bf8434e0f7069e55db", size = 1923995, upload-time = "2026-05-26T15:42:48.041Z" }, - { url = "https://files.pythonhosted.org/packages/5b/e5/8fbe188c6c2aa41e10bd83b46e0498b60ed36584f9ce0a7796ca7f7cd34e/selectolax-0.4.10-cp314-cp314t-win_amd64.whl", hash = "sha256:9c4c9afbd28b81892806e9699ecd323656e1eff7318c1245e80cd6bb78566a99", size = 2039696, upload-time = "2026-05-26T15:42:49.456Z" }, - { url = "https://files.pythonhosted.org/packages/1b/02/e511474facfd324529509626097f981986b7adc935fb4eb436c0812c540f/selectolax-0.4.10-cp314-cp314t-win_arm64.whl", hash = "sha256:68e1ef717b47f5cdcd1b151b2176d7184c38cb3772f8964509979840575203ef", size = 1944297, upload-time = "2026-05-26T15:42:50.906Z" }, -] - -[[package]] -name = "setuptools" -version = "82.0.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz", hash = "sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9", size = 1152316, upload-time = "2026-03-09T12:47:17.221Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, + { url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload-time = "2023-10-24T04:13:38.866Z" }, ] [[package]] @@ -2759,287 +898,67 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, ] -[[package]] -name = "smmap" -version = "5.0.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1f/ea/49c993d6dfdd7338c9b1000a0f36817ed7ec84577ae2e52f890d1a4ff909/smmap-5.0.3.tar.gz", hash = "sha256:4d9debb8b99007ae47165abc08670bd74cb74b5227dda7f643eccc4e9eb5642c", size = 22506, upload-time = "2026-03-09T03:43:26.1Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c1/d4/59e74daffcb57a07668852eeeb6035af9f32cbfd7a1d2511f17d2fe6a738/smmap-5.0.3-py3-none-any.whl", hash = "sha256:c106e05d5a61449cf6ba9a1e650227ecfb141590d2a98412103ff35d89fc7b2f", size = 24390, upload-time = "2026-03-09T03:43:24.361Z" }, -] - -[[package]] -name = "sse-starlette" -version = "3.4.5" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "anyio" }, - { name = "starlette" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/d2/1b/bc9e3e7a72dcdad7dc7888758f5d00f56f8909ed5cfdff822bd72bb4c520/sse_starlette-3.4.5.tar.gz", hash = "sha256:83072538bc211a2f68b7b0422226c4af3e9b62e106e07034664b832ca019842a", size = 35249, upload-time = "2026-06-20T17:36:58.322Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/78/75/c88d3f5dafd59c791da1ce27650d30bf5b70cbf1cbf01cd00e5f9e360915/sse_starlette-3.4.5-py3-none-any.whl", hash = "sha256:e71bad53323f65573c3864a6c3bd0c1eb6e5f092b2e48082b0c35927d19ca296", size = 16518, upload-time = "2026-06-20T17:36:56.729Z" }, -] - -[[package]] -name = "starlette" -version = "1.3.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "anyio" }, - { name = "typing-extensions", marker = "python_full_version < '3.13'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/eb/e3/7c1dc7381d9f8ab7d854328ebfa884e62cb3f3d8549ddfd37c7814f42afa/starlette-1.3.1.tar.gz", hash = "sha256:05d0213193f2fbaae60e2ecb593b4add4262ad4e46536b54abe36f11a71724e0", size = 2703240, upload-time = "2026-06-12T09:23:11.602Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/bb/2799cc2ede3ed41131f8975621e7213dfc7ef4acbbaadfa440f32500c370/starlette-1.3.1-py3-none-any.whl", hash = "sha256:c7372aae11c3c3f26a42df7bd626cec2f47d03483d261d369516a615a53714c6", size = 73632, upload-time = "2026-06-12T09:23:10.017Z" }, -] - -[[package]] -name = "streamlit" -version = "1.58.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "altair" }, - { name = "anyio" }, - { name = "blinker" }, - { name = "cachetools" }, - { name = "click" }, - { name = "gitpython" }, - { name = "httptools" }, - { name = "itsdangerous" }, - { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, - { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, - { name = "packaging" }, - { name = "pandas" }, - { name = "pillow" }, - { name = "protobuf" }, - { name = "pyarrow" }, - { name = "pydeck" }, - { name = "python-multipart" }, - { name = "requests" }, - { name = "starlette" }, - { name = "tenacity" }, - { name = "toml" }, - { name = "typing-extensions" }, - { name = "uvicorn" }, - { name = "watchdog", marker = "sys_platform != 'darwin'" }, - { name = "websockets" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/91/74/20dac6d6200d6ec0e1c230fb8eeb6a1a423645eacb76e8d802adfc246456/streamlit-1.58.0.tar.gz", hash = "sha256:78a22e7085b053af7ce544442bf4b670771e68c509ba1bdaa056ba0708f49c3d", size = 8721149, upload-time = "2026-05-28T18:02:44.606Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/df/84/14c36a92fb24f8e1cea452f53b0744b5da69d52cdd2fe22e71e6fbf765d5/streamlit-1.58.0-py3-none-any.whl", hash = "sha256:4ca8a7afc5bd16a5f176ccf4be1e34e8121cad0240becd127fb58a103ea3178d", size = 9219185, upload-time = "2026-05-28T18:02:41.993Z" }, -] - -[[package]] -name = "strenum" -version = "0.4.15" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/85/ad/430fb60d90e1d112a62ff57bdd1f286ec73a2a0331272febfddd21f330e1/StrEnum-0.4.15.tar.gz", hash = "sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff", size = 23384, upload-time = "2023-06-29T22:02:58.399Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/81/69/297302c5f5f59c862faa31e6cb9a4cd74721cd1e052b38e464c5b402df8b/StrEnum-0.4.15-py3-none-any.whl", hash = "sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659", size = 8851, upload-time = "2023-06-29T22:02:56.947Z" }, -] - -[[package]] -name = "supervisor" -version = "4.3.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a9/b5/37e7a3706de436a8a2d75334711dad1afb4ddffab09f25e31d89e467542f/supervisor-4.3.0.tar.gz", hash = "sha256:4a2bf149adf42997e1bb44b70c43b613275ec9852c3edacca86a9166b27e945e", size = 468912, upload-time = "2025-08-23T18:25:02.418Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0e/65/5e726c372da8a5e35022a94388b12252710aad0c2351699c3d76ae8dba78/supervisor-4.3.0-py2.py3-none-any.whl", hash = "sha256:0bcb763fddafba410f35cbde226aa7f8514b9fb82eb05a0c85f6588d1c13f8db", size = 320736, upload-time = "2025-08-23T18:25:00.767Z" }, -] - -[[package]] -name = "tenacity" -version = "9.1.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/47/c6/ee486fd809e357697ee8a44d3d69222b344920433d3b6666ccd9b374630c/tenacity-9.1.4.tar.gz", hash = "sha256:adb31d4c263f2bd041081ab33b498309a57c77f9acf2db65aadf0898179cf93a", size = 49413, upload-time = "2026-02-07T10:45:33.841Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d7/c1/eb8f9debc45d3b7918a32ab756658a0904732f75e555402972246b0b8e71/tenacity-9.1.4-py3-none-any.whl", hash = "sha256:6095a360c919085f28c6527de529e76a06ad89b23659fa881ae0649b867a9d55", size = 28926, upload-time = "2026-02-07T10:45:32.24Z" }, -] - -[[package]] -name = "toml" -version = "0.10.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/be/ba/1f744cdc819428fc6b5084ec34d9b30660f6f9daaf70eead706e3203ec3c/toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f", size = 22253, upload-time = "2020-11-01T01:40:22.204Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", size = 16588, upload-time = "2020-11-01T01:40:20.672Z" }, -] - -[[package]] -name = "tomli" -version = "2.4.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/22/de/48c59722572767841493b26183a0d1cc411d54fd759c5607c4590b6563a6/tomli-2.4.1.tar.gz", hash = "sha256:7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f", size = 17543, upload-time = "2026-03-25T20:22:03.828Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f4/11/db3d5885d8528263d8adc260bb2d28ebf1270b96e98f0e0268d32b8d9900/tomli-2.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f8f0fc26ec2cc2b965b7a3b87cd19c5c6b8c5e5f436b984e85f486d652285c30", size = 154704, upload-time = "2026-03-25T20:21:10.473Z" }, - { url = "https://files.pythonhosted.org/packages/6d/f7/675db52c7e46064a9aa928885a9b20f4124ecb9bc2e1ce74c9106648d202/tomli-2.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ab97e64ccda8756376892c53a72bd1f964e519c77236368527f758fbc36a53a", size = 149454, upload-time = "2026-03-25T20:21:12.036Z" }, - { url = "https://files.pythonhosted.org/packages/61/71/81c50943cf953efa35bce7646caab3cf457a7d8c030b27cfb40d7235f9ee/tomli-2.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96481a5786729fd470164b47cdb3e0e58062a496f455ee41b4403be77cb5a076", size = 237561, upload-time = "2026-03-25T20:21:13.098Z" }, - { url = "https://files.pythonhosted.org/packages/48/c1/f41d9cb618acccca7df82aaf682f9b49013c9397212cb9f53219e3abac37/tomli-2.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5a881ab208c0baf688221f8cecc5401bd291d67e38a1ac884d6736cbcd8247e9", size = 243824, upload-time = "2026-03-25T20:21:14.569Z" }, - { url = "https://files.pythonhosted.org/packages/22/e4/5a816ecdd1f8ca51fb756ef684b90f2780afc52fc67f987e3c61d800a46d/tomli-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47149d5bd38761ac8be13a84864bf0b7b70bc051806bc3669ab1cbc56216b23c", size = 242227, upload-time = "2026-03-25T20:21:15.712Z" }, - { url = "https://files.pythonhosted.org/packages/6b/49/2b2a0ef529aa6eec245d25f0c703e020a73955ad7edf73e7f54ddc608aa5/tomli-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ec9bfaf3ad2df51ace80688143a6a4ebc09a248f6ff781a9945e51937008fcbc", size = 247859, upload-time = "2026-03-25T20:21:17.001Z" }, - { url = "https://files.pythonhosted.org/packages/83/bd/6c1a630eaca337e1e78c5903104f831bda934c426f9231429396ce3c3467/tomli-2.4.1-cp311-cp311-win32.whl", hash = "sha256:ff2983983d34813c1aeb0fa89091e76c3a22889ee83ab27c5eeb45100560c049", size = 97204, upload-time = "2026-03-25T20:21:18.079Z" }, - { url = "https://files.pythonhosted.org/packages/42/59/71461df1a885647e10b6bb7802d0b8e66480c61f3f43079e0dcd315b3954/tomli-2.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:5ee18d9ebdb417e384b58fe414e8d6af9f4e7a0ae761519fb50f721de398dd4e", size = 108084, upload-time = "2026-03-25T20:21:18.978Z" }, - { url = "https://files.pythonhosted.org/packages/b8/83/dceca96142499c069475b790e7913b1044c1a4337e700751f48ed723f883/tomli-2.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:c2541745709bad0264b7d4705ad453b76ccd191e64aa6f0fc66b69a293a45ece", size = 95285, upload-time = "2026-03-25T20:21:20.309Z" }, - { url = "https://files.pythonhosted.org/packages/c1/ba/42f134a3fe2b370f555f44b1d72feebb94debcab01676bf918d0cb70e9aa/tomli-2.4.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c742f741d58a28940ce01d58f0ab2ea3ced8b12402f162f4d534dfe18ba1cd6a", size = 155924, upload-time = "2026-03-25T20:21:21.626Z" }, - { url = "https://files.pythonhosted.org/packages/dc/c7/62d7a17c26487ade21c5422b646110f2162f1fcc95980ef7f63e73c68f14/tomli-2.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7f86fd587c4ed9dd76f318225e7d9b29cfc5a9d43de44e5754db8d1128487085", size = 150018, upload-time = "2026-03-25T20:21:23.002Z" }, - { url = "https://files.pythonhosted.org/packages/5c/05/79d13d7c15f13bdef410bdd49a6485b1c37d28968314eabee452c22a7fda/tomli-2.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ff18e6a727ee0ab0388507b89d1bc6a22b138d1e2fa56d1ad494586d61d2eae9", size = 244948, upload-time = "2026-03-25T20:21:24.04Z" }, - { url = "https://files.pythonhosted.org/packages/10/90/d62ce007a1c80d0b2c93e02cab211224756240884751b94ca72df8a875ca/tomli-2.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:136443dbd7e1dee43c68ac2694fde36b2849865fa258d39bf822c10e8068eac5", size = 253341, upload-time = "2026-03-25T20:21:25.177Z" }, - { url = "https://files.pythonhosted.org/packages/1a/7e/caf6496d60152ad4ed09282c1885cca4eea150bfd007da84aea07bcc0a3e/tomli-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5e262d41726bc187e69af7825504c933b6794dc3fbd5945e41a79bb14c31f585", size = 248159, upload-time = "2026-03-25T20:21:26.364Z" }, - { url = "https://files.pythonhosted.org/packages/99/e7/c6f69c3120de34bbd882c6fba7975f3d7a746e9218e56ab46a1bc4b42552/tomli-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5cb41aa38891e073ee49d55fbc7839cfdb2bc0e600add13874d048c94aadddd1", size = 253290, upload-time = "2026-03-25T20:21:27.46Z" }, - { url = "https://files.pythonhosted.org/packages/d6/2f/4a3c322f22c5c66c4b836ec58211641a4067364f5dcdd7b974b4c5da300c/tomli-2.4.1-cp312-cp312-win32.whl", hash = "sha256:da25dc3563bff5965356133435b757a795a17b17d01dbc0f42fb32447ddfd917", size = 98141, upload-time = "2026-03-25T20:21:28.492Z" }, - { url = "https://files.pythonhosted.org/packages/24/22/4daacd05391b92c55759d55eaee21e1dfaea86ce5c571f10083360adf534/tomli-2.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:52c8ef851d9a240f11a88c003eacb03c31fc1c9c4ec64a99a0f922b93874fda9", size = 108847, upload-time = "2026-03-25T20:21:29.386Z" }, - { url = "https://files.pythonhosted.org/packages/68/fd/70e768887666ddd9e9f5d85129e84910f2db2796f9096aa02b721a53098d/tomli-2.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:f758f1b9299d059cc3f6546ae2af89670cb1c4d48ea29c3cacc4fe7de3058257", size = 95088, upload-time = "2026-03-25T20:21:30.677Z" }, - { url = "https://files.pythonhosted.org/packages/07/06/b823a7e818c756d9a7123ba2cda7d07bc2dd32835648d1a7b7b7a05d848d/tomli-2.4.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:36d2bd2ad5fb9eaddba5226aa02c8ec3fa4f192631e347b3ed28186d43be6b54", size = 155866, upload-time = "2026-03-25T20:21:31.65Z" }, - { url = "https://files.pythonhosted.org/packages/14/6f/12645cf7f08e1a20c7eb8c297c6f11d31c1b50f316a7e7e1e1de6e2e7b7e/tomli-2.4.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:eb0dc4e38e6a1fd579e5d50369aa2e10acfc9cace504579b2faabb478e76941a", size = 149887, upload-time = "2026-03-25T20:21:33.028Z" }, - { url = "https://files.pythonhosted.org/packages/5c/e0/90637574e5e7212c09099c67ad349b04ec4d6020324539297b634a0192b0/tomli-2.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c7f2c7f2b9ca6bdeef8f0fa897f8e05085923eb091721675170254cbc5b02897", size = 243704, upload-time = "2026-03-25T20:21:34.51Z" }, - { url = "https://files.pythonhosted.org/packages/10/8f/d3ddb16c5a4befdf31a23307f72828686ab2096f068eaf56631e136c1fdd/tomli-2.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f3c6818a1a86dd6dca7ddcaaf76947d5ba31aecc28cb1b67009a5877c9a64f3f", size = 251628, upload-time = "2026-03-25T20:21:36.012Z" }, - { url = "https://files.pythonhosted.org/packages/e3/f1/dbeeb9116715abee2485bf0a12d07a8f31af94d71608c171c45f64c0469d/tomli-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d312ef37c91508b0ab2cee7da26ec0b3ed2f03ce12bd87a588d771ae15dcf82d", size = 247180, upload-time = "2026-03-25T20:21:37.136Z" }, - { url = "https://files.pythonhosted.org/packages/d3/74/16336ffd19ed4da28a70959f92f506233bd7cfc2332b20bdb01591e8b1d1/tomli-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:51529d40e3ca50046d7606fa99ce3956a617f9b36380da3b7f0dd3dd28e68cb5", size = 251674, upload-time = "2026-03-25T20:21:38.298Z" }, - { url = "https://files.pythonhosted.org/packages/16/f9/229fa3434c590ddf6c0aa9af64d3af4b752540686cace29e6281e3458469/tomli-2.4.1-cp313-cp313-win32.whl", hash = "sha256:2190f2e9dd7508d2a90ded5ed369255980a1bcdd58e52f7fe24b8162bf9fedbd", size = 97976, upload-time = "2026-03-25T20:21:39.316Z" }, - { url = "https://files.pythonhosted.org/packages/6a/1e/71dfd96bcc1c775420cb8befe7a9d35f2e5b1309798f009dca17b7708c1e/tomli-2.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:8d65a2fbf9d2f8352685bc1364177ee3923d6baf5e7f43ea4959d7d8bc326a36", size = 108755, upload-time = "2026-03-25T20:21:40.248Z" }, - { url = "https://files.pythonhosted.org/packages/83/7a/d34f422a021d62420b78f5c538e5b102f62bea616d1d75a13f0a88acb04a/tomli-2.4.1-cp313-cp313-win_arm64.whl", hash = "sha256:4b605484e43cdc43f0954ddae319fb75f04cc10dd80d830540060ee7cd0243cd", size = 95265, upload-time = "2026-03-25T20:21:41.219Z" }, - { url = "https://files.pythonhosted.org/packages/3c/fb/9a5c8d27dbab540869f7c1f8eb0abb3244189ce780ba9cd73f3770662072/tomli-2.4.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:fd0409a3653af6c147209d267a0e4243f0ae46b011aa978b1080359fddc9b6cf", size = 155726, upload-time = "2026-03-25T20:21:42.23Z" }, - { url = "https://files.pythonhosted.org/packages/62/05/d2f816630cc771ad836af54f5001f47a6f611d2d39535364f148b6a92d6b/tomli-2.4.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:a120733b01c45e9a0c34aeef92bf0cf1d56cfe81ed9d47d562f9ed591a9828ac", size = 149859, upload-time = "2026-03-25T20:21:43.386Z" }, - { url = "https://files.pythonhosted.org/packages/ce/48/66341bdb858ad9bd0ceab5a86f90eddab127cf8b046418009f2125630ecb/tomli-2.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:559db847dc486944896521f68d8190be1c9e719fced785720d2216fe7022b662", size = 244713, upload-time = "2026-03-25T20:21:44.474Z" }, - { url = "https://files.pythonhosted.org/packages/df/6d/c5fad00d82b3c7a3ab6189bd4b10e60466f22cfe8a08a9394185c8a8111c/tomli-2.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01f520d4f53ef97964a240a035ec2a869fe1a37dde002b57ebc4417a27ccd853", size = 252084, upload-time = "2026-03-25T20:21:45.62Z" }, - { url = "https://files.pythonhosted.org/packages/00/71/3a69e86f3eafe8c7a59d008d245888051005bd657760e96d5fbfb0b740c2/tomli-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7f94b27a62cfad8496c8d2513e1a222dd446f095fca8987fceef261225538a15", size = 247973, upload-time = "2026-03-25T20:21:46.937Z" }, - { url = "https://files.pythonhosted.org/packages/67/50/361e986652847fec4bd5e4a0208752fbe64689c603c7ae5ea7cb16b1c0ca/tomli-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:ede3e6487c5ef5d28634ba3f31f989030ad6af71edfb0055cbbd14189ff240ba", size = 256223, upload-time = "2026-03-25T20:21:48.467Z" }, - { url = "https://files.pythonhosted.org/packages/8c/9a/b4173689a9203472e5467217e0154b00e260621caa227b6fa01feab16998/tomli-2.4.1-cp314-cp314-win32.whl", hash = "sha256:3d48a93ee1c9b79c04bb38772ee1b64dcf18ff43085896ea460ca8dec96f35f6", size = 98973, upload-time = "2026-03-25T20:21:49.526Z" }, - { url = "https://files.pythonhosted.org/packages/14/58/640ac93bf230cd27d002462c9af0d837779f8773bc03dee06b5835208214/tomli-2.4.1-cp314-cp314-win_amd64.whl", hash = "sha256:88dceee75c2c63af144e456745e10101eb67361050196b0b6af5d717254dddf7", size = 109082, upload-time = "2026-03-25T20:21:50.506Z" }, - { url = "https://files.pythonhosted.org/packages/d5/2f/702d5e05b227401c1068f0d386d79a589bb12bf64c3d2c72ce0631e3bc49/tomli-2.4.1-cp314-cp314-win_arm64.whl", hash = "sha256:b8c198f8c1805dc42708689ed6864951fd2494f924149d3e4bce7710f8eb5232", size = 96490, upload-time = "2026-03-25T20:21:51.474Z" }, - { url = "https://files.pythonhosted.org/packages/45/4b/b877b05c8ba62927d9865dd980e34a755de541eb65fffba52b4cc495d4d2/tomli-2.4.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:d4d8fe59808a54658fcc0160ecfb1b30f9089906c50b23bcb4c69eddc19ec2b4", size = 164263, upload-time = "2026-03-25T20:21:52.543Z" }, - { url = "https://files.pythonhosted.org/packages/24/79/6ab420d37a270b89f7195dec5448f79400d9e9c1826df982f3f8e97b24fd/tomli-2.4.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7008df2e7655c495dd12d2a4ad038ff878d4ca4b81fccaf82b714e07eae4402c", size = 160736, upload-time = "2026-03-25T20:21:53.674Z" }, - { url = "https://files.pythonhosted.org/packages/02/e0/3630057d8eb170310785723ed5adcdfb7d50cb7e6455f85ba8a3deed642b/tomli-2.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1d8591993e228b0c930c4bb0db464bdad97b3289fb981255d6c9a41aedc84b2d", size = 270717, upload-time = "2026-03-25T20:21:55.129Z" }, - { url = "https://files.pythonhosted.org/packages/7a/b4/1613716072e544d1a7891f548d8f9ec6ce2faf42ca65acae01d76ea06bb0/tomli-2.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:734e20b57ba95624ecf1841e72b53f6e186355e216e5412de414e3c51e5e3c41", size = 278461, upload-time = "2026-03-25T20:21:56.228Z" }, - { url = "https://files.pythonhosted.org/packages/05/38/30f541baf6a3f6df77b3df16b01ba319221389e2da59427e221ef417ac0c/tomli-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8a650c2dbafa08d42e51ba0b62740dae4ecb9338eefa093aa5c78ceb546fcd5c", size = 274855, upload-time = "2026-03-25T20:21:57.653Z" }, - { url = "https://files.pythonhosted.org/packages/77/a3/ec9dd4fd2c38e98de34223b995a3b34813e6bdadf86c75314c928350ed14/tomli-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:504aa796fe0569bb43171066009ead363de03675276d2d121ac1a4572397870f", size = 283144, upload-time = "2026-03-25T20:21:59.089Z" }, - { url = "https://files.pythonhosted.org/packages/ef/be/605a6261cac79fba2ec0c9827e986e00323a1945700969b8ee0b30d85453/tomli-2.4.1-cp314-cp314t-win32.whl", hash = "sha256:b1d22e6e9387bf4739fbe23bfa80e93f6b0373a7f1b96c6227c32bef95a4d7a8", size = 108683, upload-time = "2026-03-25T20:22:00.214Z" }, - { url = "https://files.pythonhosted.org/packages/12/64/da524626d3b9cc40c168a13da8335fe1c51be12c0a63685cc6db7308daae/tomli-2.4.1-cp314-cp314t-win_amd64.whl", hash = "sha256:2c1c351919aca02858f740c6d33adea0c5deea37f9ecca1cc1ef9e884a619d26", size = 121196, upload-time = "2026-03-25T20:22:01.169Z" }, - { url = "https://files.pythonhosted.org/packages/5a/cd/e80b62269fc78fc36c9af5a6b89c835baa8af28ff5ad28c7028d60860320/tomli-2.4.1-cp314-cp314t-win_arm64.whl", hash = "sha256:eab21f45c7f66c13f2a9e0e1535309cee140182a9cdae1e041d02e47291e8396", size = 100393, upload-time = "2026-03-25T20:22:02.137Z" }, - { url = "https://files.pythonhosted.org/packages/7b/61/cceae43728b7de99d9b847560c262873a1f6c98202171fd5ed62640b494b/tomli-2.4.1-py3-none-any.whl", hash = "sha256:0d85819802132122da43cb86656f8d1f8c6587d54ae7dcaf30e90533028b49fe", size = 14583, upload-time = "2026-03-25T20:22:03.012Z" }, -] - [[package]] name = "trendify" source = { editable = "." } dependencies = [ - { name = "dash" }, - { name = "filelock" }, - { name = "flask" }, - { name = "grafana-api" }, - { name = "jinja2" }, { name = "matplotlib" }, { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, { name = "numpydantic" }, - { name = "pandas" }, { name = "plotly" }, + { name = "polars" }, { name = "pydantic" }, - { name = "scipy", version = "1.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, - { name = "scipy", version = "1.18.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, - { name = "streamlit" }, - { name = "strenum" }, - { name = "supervisor" }, - { name = "waitress" }, + { name = "rich" }, + { name = "typer" }, ] [package.dev-dependencies] dev = [ - { name = "black" }, - { name = "flake8" }, - { name = "griffe-pydantic" }, - { name = "hatchling" }, - { name = "isort" }, - { name = "markdown-callouts" }, - { name = "markdown-include" }, - { name = "mdx-gh-links" }, - { name = "mike" }, - { name = "mkdocs" }, - { name = "mkdocs-autorefs" }, - { name = "mkdocs-click" }, - { name = "mkdocs-exclude" }, - { name = "mkdocs-gen-files" }, - { name = "mkdocs-glightbox" }, - { name = "mkdocs-literate-nav" }, - { name = "mkdocs-material" }, - { name = "mkdocs-redirects" }, - { name = "mkdocs-section-index" }, - { name = "mkdocs-snippets" }, - { name = "mkdocstrings" }, - { name = "mkdocstrings-python" }, - { name = "pymdown-extensions" }, + { name = "mkinit" }, { name = "pytest" }, - { name = "pytest-asyncio" }, - { name = "pytest-cov" }, ] [package.metadata] requires-dist = [ - { name = "dash", specifier = ">=4.3.0" }, - { name = "filelock", specifier = ">=3.29.4" }, - { name = "flask", specifier = ">=3.1.3" }, - { name = "grafana-api", specifier = ">=1.0.3" }, - { name = "jinja2", specifier = ">=3.1.6" }, { name = "matplotlib", specifier = ">=3.11.0" }, { name = "numpy", specifier = ">=2.4.6" }, { name = "numpydantic", specifier = ">=1.10.0" }, - { name = "pandas", specifier = ">=3.0.3" }, { name = "plotly", specifier = ">=6.8.0" }, + { name = "polars", specifier = ">=1.42.1" }, { name = "pydantic", specifier = ">=2.13.4" }, - { name = "scipy", specifier = ">=1.17.1" }, - { name = "streamlit", specifier = ">=1.58.0" }, - { name = "strenum", specifier = ">=0.4.15" }, - { name = "supervisor", specifier = ">=4.3.0" }, - { name = "waitress", specifier = ">=3.0.2" }, + { name = "rich", specifier = ">=15.0.0" }, + { name = "typer", specifier = ">=0.26.8" }, ] [package.metadata.requires-dev] dev = [ - { name = "black", specifier = ">=26.5.1" }, - { name = "flake8", specifier = ">=7.3.0" }, - { name = "griffe-pydantic", specifier = ">=1.3.1" }, - { name = "hatchling", specifier = ">=1.30.1" }, - { name = "isort", specifier = ">=8.0.1" }, - { name = "markdown-callouts", specifier = ">=0.4.0" }, - { name = "markdown-include", specifier = ">=0.8.1" }, - { name = "mdx-gh-links", specifier = ">=0.4" }, - { name = "mike", specifier = ">=2.2.0" }, - { name = "mkdocs", specifier = ">=1.6.1" }, - { name = "mkdocs-autorefs", specifier = ">=1.4.4" }, - { name = "mkdocs-click", specifier = ">=0.9.0" }, - { name = "mkdocs-exclude", specifier = ">=1.0.2" }, - { name = "mkdocs-gen-files", specifier = ">=0.6.1" }, - { name = "mkdocs-glightbox", specifier = ">=0.5.2" }, - { name = "mkdocs-literate-nav", specifier = ">=0.6.3" }, - { name = "mkdocs-material", specifier = ">=9.7.6" }, - { name = "mkdocs-redirects", specifier = ">=1.2.3" }, - { name = "mkdocs-section-index", specifier = ">=0.3.12" }, - { name = "mkdocs-snippets", specifier = ">=1.3.2" }, - { name = "mkdocstrings", specifier = ">=1.0.4" }, - { name = "mkdocstrings-python", specifier = ">=2.0.5" }, - { name = "pymdown-extensions", specifier = ">=11.0" }, + { name = "mkinit", specifier = ">=1.2.0" }, { name = "pytest", specifier = ">=9.1.1" }, - { name = "pytest-asyncio", specifier = ">=1.4.0" }, - { name = "pytest-cov", specifier = ">=7.1.0" }, ] [[package]] -name = "trove-classifiers" -version = "2026.6.1.19" +name = "typer" +version = "0.26.8" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c2/e3/7ca82ee24c82d344584abd5b8637b3bd056f2900226e8d82fc22f1184b92/trove_classifiers-2026.6.1.19.tar.gz", hash = "sha256:c5132b4b61a829d11cfbd2d72e97f20a45ed6edb95e45c5efdeb5e00836b2745", size = 17059, upload-time = "2026-06-01T19:41:34.649Z" } +dependencies = [ + { name = "annotated-doc" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "rich" }, + { name = "shellingham" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/f7/68adc395201b20b872d68e975386832e8005ffeacedd43a1d837a32815be/typer-0.26.8.tar.gz", hash = "sha256:c244a6bd558886fe3f8780efb6bdd28bb9aff005a94eedebaa5cb32926fe2f7e", size = 202097, upload-time = "2026-06-26T09:22:45.705Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7c/a4/81502f486f01db95bc8320646a8a12511f5e556cb63d5e224d91816605c4/trove_classifiers-2026.6.1.19-py3-none-any.whl", hash = "sha256:ab4c4ec93cc4a4e7815fa759906e05e6bb3f2fbd92ea0f897288c6a43efd15b3", size = 14211, upload-time = "2026-06-01T19:41:33.434Z" }, + { url = "https://files.pythonhosted.org/packages/80/87/b9fd69c92c6102a066e1b86a35243f53e70bd4c709f2a26d9f4fee4f4dc0/typer-0.26.8-py3-none-any.whl", hash = "sha256:3512ca79ac5c11113414b36e80281b872884477722440691c89d1112e321a49c", size = 122564, upload-time = "2026-06-26T09:22:44.72Z" }, ] [[package]] name = "typing-extensions" -version = "4.15.0" +version = "4.16.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/cc/6253133b5bb138fc3306cebfbda2c520f545d36b5be2c7255cc528bb45d6/typing_extensions-4.16.0.tar.gz", hash = "sha256:dc983d19a509c94dba722ee6abd33940f7c05a89e243c47e907eb4db6f1a43e5", size = 113555, upload-time = "2026-07-02T08:40:05.92Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, + { url = "https://files.pythonhosted.org/packages/49/d3/b8441a820a491ddfc024b0b0cf0393375b75ea13866d9c66727e54c2fc80/typing_extensions-4.16.0-py3-none-any.whl", hash = "sha256:481caa481374e813c1b176ada14e97f1f67a4539ce9cfeb3f350d78d6370c2e8", size = 45571, upload-time = "2026-07-02T08:40:04.659Z" }, ] [[package]] @@ -3055,157 +974,10 @@ wheels = [ ] [[package]] -name = "tzdata" -version = "2026.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ba/19/1b9b0e29f30c6d35cb345486df41110984ea67ae69dddbc0e8a100999493/tzdata-2026.2.tar.gz", hash = "sha256:9173fde7d80d9018e02a662e168e5a2d04f87c41ea174b139fbef642eda62d10", size = 198254, upload-time = "2026-04-24T15:22:08.651Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ce/e4/dccd7f47c4b64213ac01ef921a1337ee6e30e8c6466046018326977efd95/tzdata-2026.2-py2.py3-none-any.whl", hash = "sha256:bbe9af844f658da81a5f95019480da3a89415801f6cc966806612cc7169bffe7", size = 349321, upload-time = "2026-04-24T15:22:05.876Z" }, -] - -[[package]] -name = "urllib3" -version = "2.7.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/53/0c/06f8b233b8fd13b9e5ee11424ef85419ba0d8ba0b3138bf360be2ff56953/urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c", size = 433602, upload-time = "2026-05-07T16:13:18.596Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7f/3e/5db95bcf282c52709639744ca2a8b149baccf648e39c8cc87553df9eae0c/urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897", size = 131087, upload-time = "2026-05-07T16:13:17.151Z" }, -] - -[[package]] -name = "uvicorn" -version = "0.49.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "click" }, - { name = "h11" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c4/1f/fa18009dea8469069cca78a4e877a008ab78f08b064bfc9ab891579077ff/uvicorn-0.49.0.tar.gz", hash = "sha256:ebf4271aa580d9de97f93192d4595176df6e91f9aae919ca73e4fc07df1e66a3", size = 91284, upload-time = "2026-06-03T22:01:30.448Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/88/fa/e1388bbcf24ef3274f45c0c1c7b501fd14971037c1b6ee23610553307497/uvicorn-0.49.0-py3-none-any.whl", hash = "sha256:ba3d14c3ee7e41c6c654c46c9eb489d33213cdd30aa1696eab1374337c13f68f", size = 71376, upload-time = "2026-06-03T22:01:29.037Z" }, -] - -[[package]] -name = "verspec" -version = "0.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e7/44/8126f9f0c44319b2efc65feaad589cadef4d77ece200ae3c9133d58464d0/verspec-0.1.0.tar.gz", hash = "sha256:c4504ca697b2056cdb4bfa7121461f5a0e81809255b41c03dda4ba823637c01e", size = 27123, upload-time = "2020-11-30T02:24:09.646Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/ce/3b6fee91c85626eaf769d617f1be9d2e15c1cca027bbdeb2e0d751469355/verspec-0.1.0-py3-none-any.whl", hash = "sha256:741877d5633cc9464c45a469ae2a31e801e6dbbaa85b9675d481cda100f11c31", size = 19640, upload-time = "2020-11-30T02:24:08.387Z" }, -] - -[[package]] -name = "waitress" -version = "3.0.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bf/cb/04ddb054f45faa306a230769e868c28b8065ea196891f09004ebace5b184/waitress-3.0.2.tar.gz", hash = "sha256:682aaaf2af0c44ada4abfb70ded36393f0e307f4ab9456a215ce0020baefc31f", size = 179901, upload-time = "2024-11-16T20:02:35.195Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8d/57/a27182528c90ef38d82b636a11f606b0cbb0e17588ed205435f8affe3368/waitress-3.0.2-py3-none-any.whl", hash = "sha256:c56d67fd6e87c2ee598b76abdd4e96cfad1f24cacdea5078d382b1f9d7b5ed2e", size = 56232, upload-time = "2024-11-16T20:02:33.858Z" }, -] - -[[package]] -name = "watchdog" -version = "6.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/db/7d/7f3d619e951c88ed75c6037b246ddcf2d322812ee8ea189be89511721d54/watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282", size = 131220, upload-time = "2024-11-01T14:07:13.037Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e0/24/d9be5cd6642a6aa68352ded4b4b10fb0d7889cb7f45814fb92cecd35f101/watchdog-6.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c", size = 96393, upload-time = "2024-11-01T14:06:31.756Z" }, - { url = "https://files.pythonhosted.org/packages/63/7a/6013b0d8dbc56adca7fdd4f0beed381c59f6752341b12fa0886fa7afc78b/watchdog-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2", size = 88392, upload-time = "2024-11-01T14:06:32.99Z" }, - { url = "https://files.pythonhosted.org/packages/d1/40/b75381494851556de56281e053700e46bff5b37bf4c7267e858640af5a7f/watchdog-6.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c", size = 89019, upload-time = "2024-11-01T14:06:34.963Z" }, - { url = "https://files.pythonhosted.org/packages/39/ea/3930d07dafc9e286ed356a679aa02d777c06e9bfd1164fa7c19c288a5483/watchdog-6.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948", size = 96471, upload-time = "2024-11-01T14:06:37.745Z" }, - { url = "https://files.pythonhosted.org/packages/12/87/48361531f70b1f87928b045df868a9fd4e253d9ae087fa4cf3f7113be363/watchdog-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860", size = 88449, upload-time = "2024-11-01T14:06:39.748Z" }, - { url = "https://files.pythonhosted.org/packages/5b/7e/8f322f5e600812e6f9a31b75d242631068ca8f4ef0582dd3ae6e72daecc8/watchdog-6.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0", size = 89054, upload-time = "2024-11-01T14:06:41.009Z" }, - { url = "https://files.pythonhosted.org/packages/68/98/b0345cabdce2041a01293ba483333582891a3bd5769b08eceb0d406056ef/watchdog-6.0.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:490ab2ef84f11129844c23fb14ecf30ef3d8a6abafd3754a6f75ca1e6654136c", size = 96480, upload-time = "2024-11-01T14:06:42.952Z" }, - { url = "https://files.pythonhosted.org/packages/85/83/cdf13902c626b28eedef7ec4f10745c52aad8a8fe7eb04ed7b1f111ca20e/watchdog-6.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:76aae96b00ae814b181bb25b1b98076d5fc84e8a53cd8885a318b42b6d3a5134", size = 88451, upload-time = "2024-11-01T14:06:45.084Z" }, - { url = "https://files.pythonhosted.org/packages/fe/c4/225c87bae08c8b9ec99030cd48ae9c4eca050a59bf5c2255853e18c87b50/watchdog-6.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a175f755fc2279e0b7312c0035d52e27211a5bc39719dd529625b1930917345b", size = 89057, upload-time = "2024-11-01T14:06:47.324Z" }, - { url = "https://files.pythonhosted.org/packages/a9/c7/ca4bf3e518cb57a686b2feb4f55a1892fd9a3dd13f470fca14e00f80ea36/watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13", size = 79079, upload-time = "2024-11-01T14:06:59.472Z" }, - { url = "https://files.pythonhosted.org/packages/5c/51/d46dc9332f9a647593c947b4b88e2381c8dfc0942d15b8edc0310fa4abb1/watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379", size = 79078, upload-time = "2024-11-01T14:07:01.431Z" }, - { url = "https://files.pythonhosted.org/packages/d4/57/04edbf5e169cd318d5f07b4766fee38e825d64b6913ca157ca32d1a42267/watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e", size = 79076, upload-time = "2024-11-01T14:07:02.568Z" }, - { url = "https://files.pythonhosted.org/packages/ab/cc/da8422b300e13cb187d2203f20b9253e91058aaf7db65b74142013478e66/watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f", size = 79077, upload-time = "2024-11-01T14:07:03.893Z" }, - { url = "https://files.pythonhosted.org/packages/2c/3b/b8964e04ae1a025c44ba8e4291f86e97fac443bca31de8bd98d3263d2fcf/watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26", size = 79078, upload-time = "2024-11-01T14:07:05.189Z" }, - { url = "https://files.pythonhosted.org/packages/62/ae/a696eb424bedff7407801c257d4b1afda455fe40821a2be430e173660e81/watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c", size = 79077, upload-time = "2024-11-01T14:07:06.376Z" }, - { url = "https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2", size = 79078, upload-time = "2024-11-01T14:07:07.547Z" }, - { url = "https://files.pythonhosted.org/packages/07/f6/d0e5b343768e8bcb4cda79f0f2f55051bf26177ecd5651f84c07567461cf/watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a", size = 79065, upload-time = "2024-11-01T14:07:09.525Z" }, - { url = "https://files.pythonhosted.org/packages/db/d9/c495884c6e548fce18a8f40568ff120bc3a4b7b99813081c8ac0c936fa64/watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680", size = 79070, upload-time = "2024-11-01T14:07:10.686Z" }, - { url = "https://files.pythonhosted.org/packages/33/e8/e40370e6d74ddba47f002a32919d91310d6074130fe4e17dabcafc15cbf1/watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f", size = 79067, upload-time = "2024-11-01T14:07:11.845Z" }, -] - -[[package]] -name = "websockets" -version = "16.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f2/db/de907251b4ff46ae804ad0409809504153b3f30984daf82a1d84a9875830/websockets-16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:31a52addea25187bde0797a97d6fc3d2f92b6f72a9370792d65a6e84615ac8a8", size = 177340, upload-time = "2026-01-10T09:22:34.539Z" }, - { url = "https://files.pythonhosted.org/packages/f3/fa/abe89019d8d8815c8781e90d697dec52523fb8ebe308bf11664e8de1877e/websockets-16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:417b28978cdccab24f46400586d128366313e8a96312e4b9362a4af504f3bbad", size = 175022, upload-time = "2026-01-10T09:22:36.332Z" }, - { url = "https://files.pythonhosted.org/packages/58/5d/88ea17ed1ded2079358b40d31d48abe90a73c9e5819dbcde1606e991e2ad/websockets-16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:af80d74d4edfa3cb9ed973a0a5ba2b2a549371f8a741e0800cb07becdd20f23d", size = 175319, upload-time = "2026-01-10T09:22:37.602Z" }, - { url = "https://files.pythonhosted.org/packages/d2/ae/0ee92b33087a33632f37a635e11e1d99d429d3d323329675a6022312aac2/websockets-16.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:08d7af67b64d29823fed316505a89b86705f2b7981c07848fb5e3ea3020c1abe", size = 184631, upload-time = "2026-01-10T09:22:38.789Z" }, - { url = "https://files.pythonhosted.org/packages/c8/c5/27178df583b6c5b31b29f526ba2da5e2f864ecc79c99dae630a85d68c304/websockets-16.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7be95cfb0a4dae143eaed2bcba8ac23f4892d8971311f1b06f3c6b78952ee70b", size = 185870, upload-time = "2026-01-10T09:22:39.893Z" }, - { url = "https://files.pythonhosted.org/packages/87/05/536652aa84ddc1c018dbb7e2c4cbcd0db884580bf8e95aece7593fde526f/websockets-16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d6297ce39ce5c2e6feb13c1a996a2ded3b6832155fcfc920265c76f24c7cceb5", size = 185361, upload-time = "2026-01-10T09:22:41.016Z" }, - { url = "https://files.pythonhosted.org/packages/6d/e2/d5332c90da12b1e01f06fb1b85c50cfc489783076547415bf9f0a659ec19/websockets-16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1c1b30e4f497b0b354057f3467f56244c603a79c0d1dafce1d16c283c25f6e64", size = 184615, upload-time = "2026-01-10T09:22:42.442Z" }, - { url = "https://files.pythonhosted.org/packages/77/fb/d3f9576691cae9253b51555f841bc6600bf0a983a461c79500ace5a5b364/websockets-16.0-cp311-cp311-win32.whl", hash = "sha256:5f451484aeb5cafee1ccf789b1b66f535409d038c56966d6101740c1614b86c6", size = 178246, upload-time = "2026-01-10T09:22:43.654Z" }, - { url = "https://files.pythonhosted.org/packages/54/67/eaff76b3dbaf18dcddabc3b8c1dba50b483761cccff67793897945b37408/websockets-16.0-cp311-cp311-win_amd64.whl", hash = "sha256:8d7f0659570eefb578dacde98e24fb60af35350193e4f56e11190787bee77dac", size = 178684, upload-time = "2026-01-10T09:22:44.941Z" }, - { url = "https://files.pythonhosted.org/packages/84/7b/bac442e6b96c9d25092695578dda82403c77936104b5682307bd4deb1ad4/websockets-16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00", size = 177365, upload-time = "2026-01-10T09:22:46.787Z" }, - { url = "https://files.pythonhosted.org/packages/b0/fe/136ccece61bd690d9c1f715baaeefd953bb2360134de73519d5df19d29ca/websockets-16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79", size = 175038, upload-time = "2026-01-10T09:22:47.999Z" }, - { url = "https://files.pythonhosted.org/packages/40/1e/9771421ac2286eaab95b8575b0cb701ae3663abf8b5e1f64f1fd90d0a673/websockets-16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39", size = 175328, upload-time = "2026-01-10T09:22:49.809Z" }, - { url = "https://files.pythonhosted.org/packages/18/29/71729b4671f21e1eaa5d6573031ab810ad2936c8175f03f97f3ff164c802/websockets-16.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c", size = 184915, upload-time = "2026-01-10T09:22:51.071Z" }, - { url = "https://files.pythonhosted.org/packages/97/bb/21c36b7dbbafc85d2d480cd65df02a1dc93bf76d97147605a8e27ff9409d/websockets-16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f", size = 186152, upload-time = "2026-01-10T09:22:52.224Z" }, - { url = "https://files.pythonhosted.org/packages/4a/34/9bf8df0c0cf88fa7bfe36678dc7b02970c9a7d5e065a3099292db87b1be2/websockets-16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1", size = 185583, upload-time = "2026-01-10T09:22:53.443Z" }, - { url = "https://files.pythonhosted.org/packages/47/88/4dd516068e1a3d6ab3c7c183288404cd424a9a02d585efbac226cb61ff2d/websockets-16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2", size = 184880, upload-time = "2026-01-10T09:22:55.033Z" }, - { url = "https://files.pythonhosted.org/packages/91/d6/7d4553ad4bf1c0421e1ebd4b18de5d9098383b5caa1d937b63df8d04b565/websockets-16.0-cp312-cp312-win32.whl", hash = "sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89", size = 178261, upload-time = "2026-01-10T09:22:56.251Z" }, - { url = "https://files.pythonhosted.org/packages/c3/f0/f3a17365441ed1c27f850a80b2bc680a0fa9505d733fe152fdf5e98c1c0b/websockets-16.0-cp312-cp312-win_amd64.whl", hash = "sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea", size = 178693, upload-time = "2026-01-10T09:22:57.478Z" }, - { url = "https://files.pythonhosted.org/packages/cc/9c/baa8456050d1c1b08dd0ec7346026668cbc6f145ab4e314d707bb845bf0d/websockets-16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9", size = 177364, upload-time = "2026-01-10T09:22:59.333Z" }, - { url = "https://files.pythonhosted.org/packages/7e/0c/8811fc53e9bcff68fe7de2bcbe75116a8d959ac699a3200f4847a8925210/websockets-16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230", size = 175039, upload-time = "2026-01-10T09:23:01.171Z" }, - { url = "https://files.pythonhosted.org/packages/aa/82/39a5f910cb99ec0b59e482971238c845af9220d3ab9fa76dd9162cda9d62/websockets-16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c", size = 175323, upload-time = "2026-01-10T09:23:02.341Z" }, - { url = "https://files.pythonhosted.org/packages/bd/28/0a25ee5342eb5d5f297d992a77e56892ecb65e7854c7898fb7d35e9b33bd/websockets-16.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5", size = 184975, upload-time = "2026-01-10T09:23:03.756Z" }, - { url = "https://files.pythonhosted.org/packages/f9/66/27ea52741752f5107c2e41fda05e8395a682a1e11c4e592a809a90c6a506/websockets-16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82", size = 186203, upload-time = "2026-01-10T09:23:05.01Z" }, - { url = "https://files.pythonhosted.org/packages/37/e5/8e32857371406a757816a2b471939d51c463509be73fa538216ea52b792a/websockets-16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8", size = 185653, upload-time = "2026-01-10T09:23:06.301Z" }, - { url = "https://files.pythonhosted.org/packages/9b/67/f926bac29882894669368dc73f4da900fcdf47955d0a0185d60103df5737/websockets-16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f", size = 184920, upload-time = "2026-01-10T09:23:07.492Z" }, - { url = "https://files.pythonhosted.org/packages/3c/a1/3d6ccdcd125b0a42a311bcd15a7f705d688f73b2a22d8cf1c0875d35d34a/websockets-16.0-cp313-cp313-win32.whl", hash = "sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a", size = 178255, upload-time = "2026-01-10T09:23:09.245Z" }, - { url = "https://files.pythonhosted.org/packages/6b/ae/90366304d7c2ce80f9b826096a9e9048b4bb760e44d3b873bb272cba696b/websockets-16.0-cp313-cp313-win_amd64.whl", hash = "sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156", size = 178689, upload-time = "2026-01-10T09:23:10.483Z" }, - { url = "https://files.pythonhosted.org/packages/f3/1d/e88022630271f5bd349ed82417136281931e558d628dd52c4d8621b4a0b2/websockets-16.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8cc451a50f2aee53042ac52d2d053d08bf89bcb31ae799cb4487587661c038a0", size = 177406, upload-time = "2026-01-10T09:23:12.178Z" }, - { url = "https://files.pythonhosted.org/packages/f2/78/e63be1bf0724eeb4616efb1ae1c9044f7c3953b7957799abb5915bffd38e/websockets-16.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:daa3b6ff70a9241cf6c7fc9e949d41232d9d7d26fd3522b1ad2b4d62487e9904", size = 175085, upload-time = "2026-01-10T09:23:13.511Z" }, - { url = "https://files.pythonhosted.org/packages/bb/f4/d3c9220d818ee955ae390cf319a7c7a467beceb24f05ee7aaaa2414345ba/websockets-16.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:fd3cb4adb94a2a6e2b7c0d8d05cb94e6f1c81a0cf9dc2694fb65c7e8d94c42e4", size = 175328, upload-time = "2026-01-10T09:23:14.727Z" }, - { url = "https://files.pythonhosted.org/packages/63/bc/d3e208028de777087e6fb2b122051a6ff7bbcca0d6df9d9c2bf1dd869ae9/websockets-16.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:781caf5e8eee67f663126490c2f96f40906594cb86b408a703630f95550a8c3e", size = 185044, upload-time = "2026-01-10T09:23:15.939Z" }, - { url = "https://files.pythonhosted.org/packages/ad/6e/9a0927ac24bd33a0a9af834d89e0abc7cfd8e13bed17a86407a66773cc0e/websockets-16.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:caab51a72c51973ca21fa8a18bd8165e1a0183f1ac7066a182ff27107b71e1a4", size = 186279, upload-time = "2026-01-10T09:23:17.148Z" }, - { url = "https://files.pythonhosted.org/packages/b9/ca/bf1c68440d7a868180e11be653c85959502efd3a709323230314fda6e0b3/websockets-16.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:19c4dc84098e523fd63711e563077d39e90ec6702aff4b5d9e344a60cb3c0cb1", size = 185711, upload-time = "2026-01-10T09:23:18.372Z" }, - { url = "https://files.pythonhosted.org/packages/c4/f8/fdc34643a989561f217bb477cbc47a3a07212cbda91c0e4389c43c296ebf/websockets-16.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a5e18a238a2b2249c9a9235466b90e96ae4795672598a58772dd806edc7ac6d3", size = 184982, upload-time = "2026-01-10T09:23:19.652Z" }, - { url = "https://files.pythonhosted.org/packages/dd/d1/574fa27e233764dbac9c52730d63fcf2823b16f0856b3329fc6268d6ae4f/websockets-16.0-cp314-cp314-win32.whl", hash = "sha256:a069d734c4a043182729edd3e9f247c3b2a4035415a9172fd0f1b71658a320a8", size = 177915, upload-time = "2026-01-10T09:23:21.458Z" }, - { url = "https://files.pythonhosted.org/packages/8a/f1/ae6b937bf3126b5134ce1f482365fde31a357c784ac51852978768b5eff4/websockets-16.0-cp314-cp314-win_amd64.whl", hash = "sha256:c0ee0e63f23914732c6d7e0cce24915c48f3f1512ec1d079ed01fc629dab269d", size = 178381, upload-time = "2026-01-10T09:23:22.715Z" }, - { url = "https://files.pythonhosted.org/packages/06/9b/f791d1db48403e1f0a27577a6beb37afae94254a8c6f08be4a23e4930bc0/websockets-16.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:a35539cacc3febb22b8f4d4a99cc79b104226a756aa7400adc722e83b0d03244", size = 177737, upload-time = "2026-01-10T09:23:24.523Z" }, - { url = "https://files.pythonhosted.org/packages/bd/40/53ad02341fa33b3ce489023f635367a4ac98b73570102ad2cdd770dacc9a/websockets-16.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:b784ca5de850f4ce93ec85d3269d24d4c82f22b7212023c974c401d4980ebc5e", size = 175268, upload-time = "2026-01-10T09:23:25.781Z" }, - { url = "https://files.pythonhosted.org/packages/74/9b/6158d4e459b984f949dcbbb0c5d270154c7618e11c01029b9bbd1bb4c4f9/websockets-16.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:569d01a4e7fba956c5ae4fc988f0d4e187900f5497ce46339c996dbf24f17641", size = 175486, upload-time = "2026-01-10T09:23:27.033Z" }, - { url = "https://files.pythonhosted.org/packages/e5/2d/7583b30208b639c8090206f95073646c2c9ffd66f44df967981a64f849ad/websockets-16.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:50f23cdd8343b984957e4077839841146f67a3d31ab0d00e6b824e74c5b2f6e8", size = 185331, upload-time = "2026-01-10T09:23:28.259Z" }, - { url = "https://files.pythonhosted.org/packages/45/b0/cce3784eb519b7b5ad680d14b9673a31ab8dcb7aad8b64d81709d2430aa8/websockets-16.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:152284a83a00c59b759697b7f9e9cddf4e3c7861dd0d964b472b70f78f89e80e", size = 186501, upload-time = "2026-01-10T09:23:29.449Z" }, - { url = "https://files.pythonhosted.org/packages/19/60/b8ebe4c7e89fb5f6cdf080623c9d92789a53636950f7abacfc33fe2b3135/websockets-16.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bc59589ab64b0022385f429b94697348a6a234e8ce22544e3681b2e9331b5944", size = 186062, upload-time = "2026-01-10T09:23:31.368Z" }, - { url = "https://files.pythonhosted.org/packages/88/a8/a080593f89b0138b6cba1b28f8df5673b5506f72879322288b031337c0b8/websockets-16.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:32da954ffa2814258030e5a57bc73a3635463238e797c7375dc8091327434206", size = 185356, upload-time = "2026-01-10T09:23:32.627Z" }, - { url = "https://files.pythonhosted.org/packages/c2/b6/b9afed2afadddaf5ebb2afa801abf4b0868f42f8539bfe4b071b5266c9fe/websockets-16.0-cp314-cp314t-win32.whl", hash = "sha256:5a4b4cc550cb665dd8a47f868c8d04c8230f857363ad3c9caf7a0c3bf8c61ca6", size = 178085, upload-time = "2026-01-10T09:23:33.816Z" }, - { url = "https://files.pythonhosted.org/packages/9f/3e/28135a24e384493fa804216b79a6a6759a38cc4ff59118787b9fb693df93/websockets-16.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b14dc141ed6d2dde437cddb216004bcac6a1df0935d79656387bd41632ba0bbd", size = 178531, upload-time = "2026-01-10T09:23:35.016Z" }, - { url = "https://files.pythonhosted.org/packages/72/07/c98a68571dcf256e74f1f816b8cc5eae6eb2d3d5cfa44d37f801619d9166/websockets-16.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:349f83cd6c9a415428ee1005cadb5c2c56f4389bc06a9af16103c3bc3dcc8b7d", size = 174947, upload-time = "2026-01-10T09:23:36.166Z" }, - { url = "https://files.pythonhosted.org/packages/7e/52/93e166a81e0305b33fe416338be92ae863563fe7bce446b0f687b9df5aea/websockets-16.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:4a1aba3340a8dca8db6eb5a7986157f52eb9e436b74813764241981ca4888f03", size = 175260, upload-time = "2026-01-10T09:23:37.409Z" }, - { url = "https://files.pythonhosted.org/packages/56/0c/2dbf513bafd24889d33de2ff0368190a0e69f37bcfa19009ef819fe4d507/websockets-16.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f4a32d1bd841d4bcbffdcb3d2ce50c09c3909fbead375ab28d0181af89fd04da", size = 176071, upload-time = "2026-01-10T09:23:39.158Z" }, - { url = "https://files.pythonhosted.org/packages/a5/8f/aea9c71cc92bf9b6cc0f7f70df8f0b420636b6c96ef4feee1e16f80f75dd/websockets-16.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0298d07ee155e2e9fda5be8a9042200dd2e3bb0b8a38482156576f863a9d457c", size = 176968, upload-time = "2026-01-10T09:23:41.031Z" }, - { url = "https://files.pythonhosted.org/packages/9a/3f/f70e03f40ffc9a30d817eef7da1be72ee4956ba8d7255c399a01b135902a/websockets-16.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:a653aea902e0324b52f1613332ddf50b00c06fdaf7e92624fbf8c77c78fa5767", size = 178735, upload-time = "2026-01-10T09:23:42.259Z" }, - { url = "https://files.pythonhosted.org/packages/6f/28/258ebab549c2bf3e64d2b0217b973467394a9cea8c42f70418ca2c5d0d2e/websockets-16.0-py3-none-any.whl", hash = "sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec", size = 171598, upload-time = "2026-01-10T09:23:45.395Z" }, -] - -[[package]] -name = "werkzeug" -version = "3.1.8" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markupsafe" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/dd/b2/381be8cfdee792dd117872481b6e378f85c957dd7c5bca38897b08f765fd/werkzeug-3.1.8.tar.gz", hash = "sha256:9bad61a4268dac112f1c5cd4630a56ede601b6ed420300677a869083d70a4c44", size = 875852, upload-time = "2026-04-02T18:49:14.268Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/93/8c/2e650f2afeb7ee576912636c23ddb621c91ac6a98e66dc8d29c3c69446e1/werkzeug-3.1.8-py3-none-any.whl", hash = "sha256:63a77fb8892bf28ebc3178683445222aa500e48ebad5ec77b0ad80f8726b1f50", size = 226459, upload-time = "2026-04-02T18:49:12.72Z" }, -] - -[[package]] -name = "zipp" -version = "4.1.0" +name = "ubelt" +version = "1.4.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b9/d8/eab98a517c14134c0b2eb4e2387bc5f457334293ec5d2dd3857ec2966802/zipp-4.1.0.tar.gz", hash = "sha256:4cb57381f544315db7688e976e922a2b18cdb513d21cc194eb42232ba2a3e602", size = 26214, upload-time = "2026-05-18T20:08:57.967Z" } +sdist = { url = "https://files.pythonhosted.org/packages/97/39/a2ca653ee2500ae963e38b6b3a38d02f7c4ea72a3e5af410c6d66f058ed6/ubelt-1.4.2.tar.gz", hash = "sha256:40322cf3bb59c05b7567222b10bd0d553c6abc463cd480c23ea3dbcf2ef332fb", size = 305863, upload-time = "2026-04-13T02:38:15.703Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/3a/13/547360d81e6d88d58492968ffda9f9542854f11310ee556fef14260cc886/zipp-4.1.0-py3-none-any.whl", hash = "sha256:25ad4e16390cd314347dd8f1de67a2ac538ae658ed4ab9db16029c07c188e97f", size = 10238, upload-time = "2026-05-18T20:08:57.045Z" }, + { url = "https://files.pythonhosted.org/packages/01/b9/b6ee2a03975b398b428b1ed8ce2f1a598e2b9cc01ad2c6d49cfce3bb5a9b/ubelt-1.4.2-py3-none-any.whl", hash = "sha256:6cdbcbba75cd7c3e1ef9556a13b7c0e29a55f67cb454f022a981e42808f2b06e", size = 231820, upload-time = "2026-04-13T02:38:13.094Z" }, ] From 0c15bc0ad65ab208f212ec48f0b037ad22c61353 Mon Sep 17 00:00:00 2001 From: David Gable Date: Fri, 3 Jul 2026 19:05:15 -0700 Subject: [PATCH 04/19] Updated to new generation logic. Removed old files. --- .pre-commit-config.yaml | 9 - alternative_tag_selectors.py | 312 -- app.log | 5 - benchmarks/stress_test.py | 139 - custom_handler.py | 9 - implementation_recommendation.py | 77 - improved_tag_selection.py | 73 - index.html | 6 - plotly_examples/histogram_1.py | 1038 ---- plotly_examples/sensitivity_1.py | 850 ---- prepare_release.sh | 212 - publish_release.sh | 68 - pyproject.toml | 10 +- requirements.txt | 179 +- rewrite_reference/OVERVIEW.md | 390 -- rewrite_reference/dump_schemas.py | 48 - rewrite_reference/pydantic_schemas.json | 4479 ----------------- sample_hierarchical_data.py | 239 - src/trendify/__init__.py | 93 +- src/trendify/base/data_product.py | 28 +- src/trendify/base/helpers.py | 37 +- src/trendify/base/pen.py | 5 + src/trendify/cli.py | 218 + src/trendify/color.py | 260 + src/{trendify_old => trendify}/examples.py | 142 +- src/trendify/formats/format2d.py | 39 +- src/trendify/formats/table.py | 6 + src/trendify/generator/__init__.py | 38 + src/trendify/generator/generate.py | 140 + src/trendify/generator/histogrammer.py | 62 + src/trendify/generator/render.py | 193 + src/trendify/generator/table_builder.py | 173 + src/trendify/generator/xy_data_plotter.py | 77 + src/trendify/log.py | 195 + src/trendify/pipeline.py | 150 + src/trendify/plotting/axline.py | 8 +- src/trendify/plotting/figure.py | 31 +- src/trendify/plotting/histogram.py | 14 +- src/trendify/plotting/point.py | 4 + src/trendify/plotting/trace.py | 23 +- src/trendify/store/__init__.py | 2 + src/trendify/store/db.py | 27 +- src/trendify/store/product_store.py | 79 +- src/trendify/store/tags.py | 24 +- src/trendify/styling/grid.py | 33 +- src/trendify/styling/legend.py | 5 + src/trendify/styling/marker.py | 18 +- src/trendify/typing.py | 26 + .../viewer/templates/static}/assets/logo.svg | 0 .../static}/assets/logo_white_bg.svg | 0 src/trendify_old/__init__.py | 6 - src/trendify_old/api/__init__.py | 7 - src/trendify_old/api/api.py | 491 -- src/trendify_old/api/base/__init__.py | 4 - src/trendify_old/api/base/data_product.py | 132 - src/trendify_old/api/base/helpers.py | 71 - src/trendify_old/api/base/pen.py | 136 - src/trendify_old/api/formats/__init__.py | 2 - src/trendify_old/api/formats/format2d.py | 152 - src/trendify_old/api/formats/table.py | 88 - src/trendify_old/api/generator/__init__.py | 5 - .../api/generator/data_product_collection.py | 872 ---- .../api/generator/data_product_generator.py | 47 - .../api/generator/histogrammer.py | 126 - .../api/generator/table_builder.py | 153 - .../api/generator/xy_data_plotter.py | 191 - src/trendify_old/api/plotting/__init__.py | 5 - src/trendify_old/api/plotting/axline.py | 123 - src/trendify_old/api/plotting/histogram.py | 249 - src/trendify_old/api/plotting/plotting.py | 343 -- src/trendify_old/api/plotting/point.py | 91 - src/trendify_old/api/plotting/trace.py | 194 - src/trendify_old/api/styling/__init__.py | 3 - src/trendify_old/api/styling/grid.py | 149 - src/trendify_old/api/styling/legend.py | 206 - src/trendify_old/api/styling/marker.py | 155 - src/trendify_old/cli.py | 597 --- src/trendify_old/gallery.py | 327 -- src/trendify_old/local_server.py | 169 - src/trendify_old/plotly_dashboard.py | 1000 ---- src/trendify_old/production_server.py | 127 - src/trendify_old/server.py | 170 - src/trendify_old/streamlit.py | 302 -- test.py | 39 - tests/test_cli.py | 152 + tests/test_generate.py | 81 + tests/test_pipeline.py | 103 + tests/test_product_store.py | 6 +- tests/test_render.py | 131 + tests/test_table_builder.py | 135 + update_docs_and_push_changes.sh | 17 - uv.lock | 212 +- 92 files changed, 2547 insertions(+), 15315 deletions(-) delete mode 100644 alternative_tag_selectors.py delete mode 100644 app.log delete mode 100644 benchmarks/stress_test.py delete mode 100644 custom_handler.py delete mode 100644 implementation_recommendation.py delete mode 100644 improved_tag_selection.py delete mode 100644 index.html delete mode 100644 plotly_examples/histogram_1.py delete mode 100644 plotly_examples/sensitivity_1.py delete mode 100755 prepare_release.sh delete mode 100755 publish_release.sh delete mode 100644 rewrite_reference/OVERVIEW.md delete mode 100644 rewrite_reference/dump_schemas.py delete mode 100644 rewrite_reference/pydantic_schemas.json delete mode 100644 sample_hierarchical_data.py create mode 100644 src/trendify/cli.py create mode 100644 src/trendify/color.py rename src/{trendify_old => trendify}/examples.py (75%) create mode 100644 src/trendify/generator/__init__.py create mode 100644 src/trendify/generator/generate.py create mode 100644 src/trendify/generator/histogrammer.py create mode 100644 src/trendify/generator/render.py create mode 100644 src/trendify/generator/table_builder.py create mode 100644 src/trendify/generator/xy_data_plotter.py create mode 100644 src/trendify/log.py create mode 100644 src/trendify/pipeline.py create mode 100644 src/trendify/typing.py rename src/{trendify_old => trendify/viewer/templates/static}/assets/logo.svg (100%) rename src/{trendify_old => trendify/viewer/templates/static}/assets/logo_white_bg.svg (100%) delete mode 100644 src/trendify_old/__init__.py delete mode 100644 src/trendify_old/api/__init__.py delete mode 100644 src/trendify_old/api/api.py delete mode 100644 src/trendify_old/api/base/__init__.py delete mode 100644 src/trendify_old/api/base/data_product.py delete mode 100644 src/trendify_old/api/base/helpers.py delete mode 100644 src/trendify_old/api/base/pen.py delete mode 100644 src/trendify_old/api/formats/__init__.py delete mode 100644 src/trendify_old/api/formats/format2d.py delete mode 100644 src/trendify_old/api/formats/table.py delete mode 100644 src/trendify_old/api/generator/__init__.py delete mode 100644 src/trendify_old/api/generator/data_product_collection.py delete mode 100644 src/trendify_old/api/generator/data_product_generator.py delete mode 100644 src/trendify_old/api/generator/histogrammer.py delete mode 100644 src/trendify_old/api/generator/table_builder.py delete mode 100644 src/trendify_old/api/generator/xy_data_plotter.py delete mode 100644 src/trendify_old/api/plotting/__init__.py delete mode 100644 src/trendify_old/api/plotting/axline.py delete mode 100644 src/trendify_old/api/plotting/histogram.py delete mode 100644 src/trendify_old/api/plotting/plotting.py delete mode 100644 src/trendify_old/api/plotting/point.py delete mode 100644 src/trendify_old/api/plotting/trace.py delete mode 100644 src/trendify_old/api/styling/__init__.py delete mode 100644 src/trendify_old/api/styling/grid.py delete mode 100644 src/trendify_old/api/styling/legend.py delete mode 100644 src/trendify_old/api/styling/marker.py delete mode 100644 src/trendify_old/cli.py delete mode 100644 src/trendify_old/gallery.py delete mode 100644 src/trendify_old/local_server.py delete mode 100644 src/trendify_old/plotly_dashboard.py delete mode 100644 src/trendify_old/production_server.py delete mode 100644 src/trendify_old/server.py delete mode 100644 src/trendify_old/streamlit.py delete mode 100644 test.py create mode 100644 tests/test_cli.py create mode 100644 tests/test_generate.py create mode 100644 tests/test_pipeline.py create mode 100644 tests/test_render.py create mode 100644 tests/test_table_builder.py delete mode 100755 update_docs_and_push_changes.sh diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 560e980..4f1b8ca 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,15 +4,6 @@ repos: hooks: - id: check-added-large-files args: ["--maxkb=500"] - - repo: local - hooks: - - id: mkinit - name: auto-generate __init__.py files - entry: uv run mkinit - args: ["src/trendify", "-w", "--recursive"] - language: system - files: ^(src/trendify.*\.py)$ - pass_filenames: false - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.15.17 hooks: diff --git a/alternative_tag_selectors.py b/alternative_tag_selectors.py deleted file mode 100644 index 8511def..0000000 --- a/alternative_tag_selectors.py +++ /dev/null @@ -1,312 +0,0 @@ -""" -Additional selection mechanisms for handling large numbers of tags in Trendify dashboards. -These components can be integrated into the PlotlyDashboardGenerator class. -""" - -from dash import dcc, html -from dash.dependencies import Input, Output, State - - -class TagSelectionMethods: - """Various tag selection UI components for Plotly Dash""" - - @staticmethod - def create_searchable_dropdown(tag_options, default_value): - """ - Create a searchable dropdown for tag selection - - Args: - tag_options (list): List of tag options in {'label': '...', 'value': '...'} format - default_value (str): Default tag value to select - - Returns: - html.Div: Dropdown component with search functionality - - """ - return html.Div( - [ - html.Label("Search and select tag:"), - dcc.Dropdown( - id="tag-selector", - options=tag_options, - value=default_value, - clearable=False, - searchable=True, - style={"width": "100%"}, - ), - ], - style={"width": "40%", "margin": "10px 0"}, - ) - - @staticmethod - def create_radio_with_search_filter(tag_options, default_value): - """ - Create radio buttons with a search filter above - - Args: - tag_options (list): List of tag options in {'label': '...', 'value': '...'} format - default_value (str): Default tag value to select - - Returns: - html.Div: Search filter and radio button component - - """ - return html.Div( - [ - html.Label("Filter tags:"), - dcc.Input( - id="tag-search-input", - type="text", - placeholder="Type to filter tags...", - style={"width": "100%", "marginBottom": "10px"}, - ), - html.Div( - [ - dcc.RadioItems( - id="tag-selector", - options=tag_options, - value=default_value, - labelStyle={"display": "block", "margin": "5px 0"}, - ) - ], - id="filtered-radio-container", - style={"maxHeight": "300px", "overflowY": "auto"}, - ), - ], - style={"width": "30%", "margin": "10px 0"}, - ) - - @staticmethod - def create_category_based_selection(tag_options, default_value): - """ - Create a two-level selection for tags that can be organized by category - Assumes tag names might follow a pattern like 'category/tag_name' - - Args: - tag_options (list): List of tag options in {'label': '...', 'value': '...'} format - default_value (str): Default tag value to select - - Returns: - html.Div: Two-level selection component - - """ - # Try to extract categories from tag names (e.g., 'category/tag_name') - categories = set() - for opt in tag_options: - parts = opt["label"].split("/") - if len(parts) > 1: - categories.add(parts[0]) - else: - categories.add("General") - - categories = sorted(list(categories)) - - # Default category - default_category = next( - ( - parts[0] - for opt in tag_options - if opt["value"] == default_value - and len(parts := opt["label"].split("/")) > 1 - ), - "General", - ) - - return html.Div( - [ - html.Div( - [ - html.Label("Category:"), - dcc.Dropdown( - id="category-selector", - options=[ - {"label": cat, "value": cat} for cat in categories - ], - value=default_category, - clearable=False, - style={"width": "100%"}, - ), - ], - style={"marginBottom": "10px"}, - ), - html.Div( - [ - html.Label("Tag:"), - dcc.Dropdown( - id="tag-selector", - # Options will be populated by callback - value=default_value, - clearable=False, - style={"width": "100%"}, - ), - ] - ), - ], - style={"width": "40%", "margin": "10px 0"}, - ) - - @staticmethod - def register_category_callbacks(app, tag_options): - """Register callbacks for the category-based selection""" - - @app.callback( - Output("tag-selector", "options"), [Input("category-selector", "value")] - ) - def update_tag_options(selected_category): - filtered_options = [] - for opt in tag_options: - parts = opt["label"].split("/") - if len(parts) > 1 and parts[0] == selected_category: - # Show only the tag part in the dropdown - filtered_options.append({"label": parts[1], "value": opt["value"]}) - elif len(parts) == 1 and selected_category == "General": - filtered_options.append(opt) - return filtered_options - - @staticmethod - def register_search_filter_callbacks(app, tag_options): - """Register callbacks for the search filter with radio buttons""" - - @app.callback( - Output("filtered-radio-container", "children"), - [Input("tag-search-input", "value")], - [State("tag-selector", "value")], - ) - def filter_radio_options(search_text, current_value): - if not search_text: - return dcc.RadioItems( - id="tag-selector", - options=tag_options, - value=current_value, - labelStyle={"display": "block", "margin": "5px 0"}, - ) - - # Filter options based on search text - filtered_options = [ - opt - for opt in tag_options - if search_text.lower() in opt["label"].lower() - ] - - return dcc.RadioItems( - id="tag-selector", - options=filtered_options, - value=current_value - if any(opt["value"] == current_value for opt in filtered_options) - else None, - labelStyle={"display": "block", "margin": "5px 0"}, - ) - - -# Example of how to use these components in the PlotlyDashboardGenerator class -def create_sidebar_with_tag_tree(tag_options, default_value): - """Create a sidebar with a hierarchical tag tree for larger applications""" - # Organize tags into a tree structure - tag_tree = {} - for opt in tag_options: - parts = opt["label"].split("/") - if len(parts) == 1: - category = "General" - tag = parts[0] - else: - category = parts[0] - tag = "/".join(parts[1:]) # Join remaining parts as the tag - - if category not in tag_tree: - tag_tree[category] = [] - - tag_tree[category].append({"label": tag, "value": opt["value"]}) - - # Sort categories and tags - categories = sorted(tag_tree.keys()) - - # Create the sidebar - return html.Div( - [ - html.H3("Tags"), - html.Hr(), - html.Div( - [ - html.Div( - [ - html.Details( - [ - html.Summary(category), - html.Div( - [ - html.Div( - [ - dcc.RadioItems( - id={ - "type": "tag-radio", - "category": category, - }, - options=tag_tree[category], - value=None, - labelStyle={ - "display": "block", - "margin": "5px 0", - "paddingLeft": "20px", - }, - ) - ] - ) - ] - ), - ], - open=category - == next( - ( - parts[0] - for opt in tag_options - if opt["value"] == default_value - and len(parts := opt["label"].split("/")) > 1 - ), - "General", - ), - ) - ] - ) - for category in categories - ] - ), - # Hidden input to store the selected tag - dcc.Input(id="tag-selector", value=default_value, type="hidden"), - ], - style={ - "width": "250px", - "backgroundColor": "#f8f9fa", - "padding": "15px", - "borderRight": "1px solid #ddd", - "height": "100vh", - "position": "fixed", - "overflowY": "auto", - }, - ) - - -def register_tag_tree_callbacks(app, tag_options): - """Register callbacks for the sidebar tag tree""" - # Create a list of Output objects, one for each category - categories = set() - for opt in tag_options: - parts = opt["label"].split("/") - if len(parts) > 1: - categories.add(parts[0]) - else: - categories.add("General") - - categories = sorted(list(categories)) - - @app.callback( - Output("tag-selector", "value"), - [Input({"type": "tag-radio", "category": cat}, "value") for cat in categories], - ) - def update_selected_tag(*values): - # Find the first non-None value (the selected tag) - for val in values: - if val is not None: - return val - - # Default to the first tag if nothing is selected - return tag_options[0]["value"] if tag_options else None diff --git a/app.log b/app.log deleted file mode 100644 index 766c931..0000000 --- a/app.log +++ /dev/null @@ -1,5 +0,0 @@ -2025-03-14 12:31:15,568 - dash.dash - INFO - Dash is running on http://127.0.0.1:8050/ - -2025-03-14 12:31:15,582 - werkzeug - INFO - WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. - * Running on http://127.0.0.1:8050 -2025-03-14 12:31:15,582 - werkzeug - INFO - Press CTRL+C to quit diff --git a/benchmarks/stress_test.py b/benchmarks/stress_test.py deleted file mode 100644 index 88a6fb5..0000000 --- a/benchmarks/stress_test.py +++ /dev/null @@ -1,139 +0,0 @@ -""" -M1 concurrency stress test (the go/no-go gate for skipping the two-phase per-run-file -> merge -design, per the v2 architecture plan). Simulates N worker processes, each writing many runs' -worth of products directly to one shared SQLite `.db` file via `ProductStore.write_run`, and -measures wall-clock throughput plus checks for `SQLITE_BUSY` failures under `busy_timeout`. - -Uses the same synthetic workload shape as `bench_v1.py` (5 tags, ~42 products/run: 40 Point2D + -5 TableEntry + 5 HistogramEntry + 1 multi-tag Trace2D + 1 AxLine) for an apples-to-apples -comparison against v1's generate+sort pipeline. - -Run with the v2 venv: - - PYTHONPATH=src/v2 .venv-v2/bin/python src/v2/benchmarks/stress_test.py \ - --n-runs 10000 --n-procs 8 -""" - -from __future__ import annotations - -import argparse -import json -import time -from concurrent.futures import ProcessPoolExecutor -from pathlib import Path - -from trendify.base.pen import Pen -from trendify.plotting.axline import AxLine, LineOrientation -from trendify.plotting.histogram import HistogramEntry -from trendify.plotting.point import Point2D -from trendify.plotting.trace import Trace2D -from trendify.formats.table import TableEntry -from trendify.store.product_store import ProductStore - -TAGS = ["tag0", "tag1", "tag2", "tag3", "tag4"] - -_store: ProductStore | None = None - - -def _init_worker(db_path: str) -> None: - global _store - _store = ProductStore.open(Path(db_path)) - - -def _build_products(run_id: int): - products = [] - for i, tag in enumerate(TAGS): - for j in range(8): - products.append( - Point2D(tags=[tag], x=float(run_id + i + j), y=float(i * j)) - ) - products.append( - TableEntry(tags=[tag], row=f"r{run_id}", col=f"c{j}", value=float(run_id)) - ) - products.append(HistogramEntry(tags=[tag], value=float(run_id % 17))) - products.append( - Trace2D.from_xy( - tags=[TAGS[0], TAGS[1]], - x=list(range(20)), - y=[float(v * run_id) for v in range(20)], - pen=Pen(label="trace"), - ) - ) - products.append( - AxLine( - tags=[TAGS[2]], - value=1.0, - orientation=LineOrientation.HORIZONTAL, - pen=Pen(), - ) - ) - return products - - -def _write_one_run(run_id: int) -> tuple[int, str | None]: - assert _store is not None - try: - n = _store.write_run(Path(f"/synthetic/run/{run_id}"), _build_products(run_id)) - return n, None - except Exception as e: - return 0, f"{type(e).__name__}: {e}" - - -def main(): - parser = argparse.ArgumentParser() - parser.add_argument("--n-runs", type=int, default=10000) - parser.add_argument("--n-procs", type=int, default=8) - parser.add_argument( - "--db-path", type=str, default="/tmp/trendify_bench_v2/trendify.db" - ) - args = parser.parse_args() - - db_path = Path(args.db_path) - if db_path.parent.exists(): - for f in db_path.parent.glob("trendify.db*"): - f.unlink() - db_path.parent.mkdir(parents=True, exist_ok=True) - - # Bootstrap schema once, up front, from the main process, before workers race to open it. - ProductStore.open(db_path).close() - - t0 = time.perf_counter() - errors = [] - total_written = 0 - with ProcessPoolExecutor( - max_workers=args.n_procs, - initializer=_init_worker, - initargs=(str(db_path),), - ) as executor: - for n, err in executor.map(_write_one_run, range(args.n_runs), chunksize=32): - total_written += n - if err: - errors.append(err) - t1 = time.perf_counter() - - with ProductStore.open(db_path, readonly=True) as store: - (run_count,) = store._conn.execute("SELECT COUNT(*) FROM runs").fetchone() - (product_count,) = store._conn.execute( - "SELECT COUNT(*) FROM products" - ).fetchone() - (tag_row_count,) = store._conn.execute( - "SELECT COUNT(*) FROM product_tags" - ).fetchone() - - result = { - "n_runs": args.n_runs, - "n_procs": args.n_procs, - "write_seconds": t1 - t0, - "products_written_reported": total_written, - "runs_in_db": run_count, - "products_in_db": product_count, - "product_tag_rows_in_db": tag_row_count, - "db_file_size_bytes": db_path.stat().st_size, - "n_errors": len(errors), - "sample_errors": errors[:5], - } - print(json.dumps(result, indent=2)) - - -if __name__ == "__main__": - main() diff --git a/custom_handler.py b/custom_handler.py deleted file mode 100644 index 8d21fa2..0000000 --- a/custom_handler.py +++ /dev/null @@ -1,9 +0,0 @@ -import requests -from mkdocstrings.handlers.base import BaseHandler - - -class CustomPythonHandler(BaseHandler): - def get_source(self): - # Override the method to disable SSL verification - response = requests.get(self.get_source(), verify=False) - return response.text diff --git a/implementation_recommendation.py b/implementation_recommendation.py deleted file mode 100644 index 9e1566d..0000000 --- a/implementation_recommendation.py +++ /dev/null @@ -1,77 +0,0 @@ -""" -Implementation recommendation for integrating better tag selection into the PlotlyDashboardGenerator class -""" - -# Here's how you could modify your PlotlyDashboardGenerator class -# to implement a dropdown-based selection with search capabilities - - -def _create_app_layout(self, title: str, tab_contents: List[Dict]) -> html.Div: - """Create the main application layout with improved tag selection.""" - if not tab_contents: - return html.Div( - [html.H1(title), html.Div("No data products found to visualize.")] - ) - - # Create dropdown options from tab_contents - dropdown_options = [ - {"label": tab["label"], "value": tab["value"]} for tab in tab_contents - ] - - # Create content divs for each tag - content_divs = [] - for tab in tab_contents: - content_divs.append( - html.Div( - tab["content"], id=f"content-{tab['value']}", style={"display": "none"} - ) - ) - - # Only show the first one by default - content_divs[0]["style"] = {"display": "block"} - - return html.Div( - [ - html.H1(title), - html.Div( - [ - html.Label("Select Tag:"), - dcc.Dropdown( - id="tag-selector", - options=dropdown_options, - value=tab_contents[0]["value"], - clearable=False, - searchable=True, - style={"width": "100%"}, - ), - ], - style={"width": "30%", "margin": "10px 0"}, - ), - html.Div(id="tag-content-container", children=content_divs), - # Stores - dcc.Store(id="active-tag", data=tab_contents[0]["value"]), - dcc.Store(id="color-maps"), - ] - ) - - -def _register_callbacks(self): - """Register all the callbacks for the dashboard.""" - - # Tag selection callback - @self.app.callback( - [Output("active-tag", "data")] - + [Output(f"content-{tag}", "style") for tag in self.tag_data.keys()], - [Input("tag-selector", "value")], - ) - def switch_tag(tag_value): - styles = [] - for tag in self.tag_data.keys(): - if tag == tag_value: - styles.append({"display": "block"}) - else: - styles.append({"display": "none"}) - return [tag_value] + styles - - # Register callbacks for each tag's components as before... - # ... diff --git a/improved_tag_selection.py b/improved_tag_selection.py deleted file mode 100644 index 06aab5b..0000000 --- a/improved_tag_selection.py +++ /dev/null @@ -1,73 +0,0 @@ -""" -Code snippet showing improved tag selection for PlotlyDashboardGenerator -to replace the existing tab-based navigation -""" - -from dash import dcc, html -from dash.dependencies import Input, Output - - -# This would replace the _create_app_layout method in your class -def _create_app_layout_with_dropdown( - self, title: str, tab_contents: List[Dict] -) -> html.Div: - """Create the main application layout with dropdown selection instead of tabs.""" - if not tab_contents: - return html.Div( - [html.H1(title), html.Div("No data products found to visualize.")] - ) - - # Create dropdown options from tab_contents - dropdown_options = [ - {"label": tab["label"], "value": tab["value"]} for tab in tab_contents - ] - - # Create divs for each tag's content - content_divs = [] - for tab in tab_contents: - content_divs.append( - html.Div( - tab["content"], id=f"content-{tab['value']}", style={"display": "none"} - ) - ) - - return html.Div( - [ - html.H1(title), - html.Div( - [ - html.Label("Select Tag:"), - dcc.Dropdown( - id="tag-selector", - options=dropdown_options, - value=tab_contents[0]["value"], - clearable=False, - style={"width": "100%"}, - ), - ], - style={"width": "30%", "margin": "10px 0"}, - ), - html.Div(id="tag-content-container", children=content_divs), - # Stores - dcc.Store(id="active-tag", data=tab_contents[0]["value"]), - ] - ) - - -# This would replace the callback in _register_callbacks -def tag_selection_callback(self): - """Register callback for tag selection dropdown.""" - - @self.app.callback( - [Output("active-tag", "data")] - + [Output(f"content-{tag}", "style") for tag in self.tag_data.keys()], - [Input("tag-selector", "value")], - ) - def switch_tag(tag_value): - styles = [] - for tag in self.tag_data.keys(): - if tag == tag_value: - styles.append({"display": "block"}) - else: - styles.append({"display": "none"}) - return [tag_value] + styles diff --git a/index.html b/index.html deleted file mode 100644 index df7175d..0000000 --- a/index.html +++ /dev/null @@ -1,6 +0,0 @@ - - - - -

If you are not re-directed to docs page in 5 seconds, click here.

- \ No newline at end of file diff --git a/plotly_examples/histogram_1.py b/plotly_examples/histogram_1.py deleted file mode 100644 index fa4d139..0000000 --- a/plotly_examples/histogram_1.py +++ /dev/null @@ -1,1038 +0,0 @@ -"""Interactive histogram visualization with interactive legend features.""" - -import dash -from dash import dcc, html -from dash.dependencies import Input, Output, State, ALL -import plotly.graph_objects as go -import pandas as pd -import numpy as np -from typing import Any - -# Debug Configuration -PYTHON_DEBUG = True -MIN_BINS = 1 - - -def debug_log(message: str) -> None: - """Python-side debug logging.""" - if PYTHON_DEBUG: - print(f"[PY] {message}") - - -def calculate_histogram_statistics( - series: pd.Series, num_bins: int = 20 -) -> dict[str, Any]: - """Calculate statistics for a histogram series.""" - try: - # Drop NA values - clean_series = series.dropna() - - if len(clean_series) < 2: - return { - "samples": len(clean_series), - "missing": len(series) - len(clean_series), - "mean": "N/A" - if len(clean_series) == 0 - else f"{clean_series.mean():.3f}", - "bins": num_bins, - } - - stats_dict = { - "samples": len(clean_series), - "missing": len(series) - len(clean_series), - "mean": f"{clean_series.mean():.3f}", - "median": f"{clean_series.median():.3f}", - "std_dev": f"{clean_series.std():.3f}", - "min": f"{clean_series.min():.3f}", - "max": f"{clean_series.max():.3f}", - "bins": num_bins, - "bin_width": f"{(clean_series.max() - clean_series.min()) / num_bins:.3f}" - if clean_series.max() != clean_series.min() - else "N/A", - } - - # Add skewness and kurtosis if enough data points - if len(clean_series) > 3: - try: - stats_dict["skewness"] = f"{clean_series.skew():.3f}" - stats_dict["kurtosis"] = f"{clean_series.kurtosis():.3f}" - except: - pass - - return stats_dict - except Exception as e: - return {"error": str(e), "bins": num_bins} - - -# Create sample data -df = pd.DataFrame( - { - "A": np.random.normal(0, 1, 1000), - "B": np.random.normal(2, 1.5, 1000), - "C": np.random.exponential(2, 1000), - "D": np.random.gamma(2, 2, 1000), - "Category": np.random.choice(["X", "Y", "Z"], 1000), - } -) - -# Initialize the Dash app -app = dash.Dash(__name__, suppress_callback_exceptions=True) - -# Styles -dropdown_style = { - "width": "100%", - "marginBottom": "20px", - "zIndex": 999, -} - -info_panel_style = { - "position": "fixed", # Fixed positioning for hover panel - "backgroundColor": "white", - "padding": "15px", - "borderRadius": "5px", - "boxShadow": "0 0 10px rgba(0,0,0,0.3)", - "zIndex": 1000, - "display": "none", - "minWidth": "200px", - "maxWidth": "300px", - "fontSize": "12px", -} - -color_picker_style = { - "position": "fixed", - "top": "50%", - "left": "50%", - "transform": "translate(-50%, -50%)", - "backgroundColor": "white", - "padding": "20px", - "borderRadius": "5px", - "boxShadow": "0 0 10px rgba(0,0,0,0.3)", - "zIndex": 1001, - "display": "none", -} - -# Available colors -COLORS = [ - "#1f77b4", - "#ff7f0e", - "#2ca02c", - "#d62728", - "#9467bd", - "#8c564b", - "#e377c2", - "#7f7f7f", - "#bcbd22", - "#17becf", - "#aec7e8", - "#ffbb78", - "#98df8a", - "#ff9896", - "#c5b0d5", - "#c49c94", - "#f7b6d2", - "#c7c7c7", - "#dbdb8d", - "#9edae5", -] - -# Define the layout -app.layout = html.Div( - [ - html.H1("Interactive Histogram Visualization"), - # Control panel for column selection - html.Div( - [ - html.Div( - [ - html.H3("Select Columns for Histograms"), - dcc.Dropdown( - id="histogram-columns", - options=[ - {"label": col, "value": col} - for col in df.columns - if col != "Category" - ], - value=[], - multi=True, - style=dropdown_style, - ), - ], - style={"width": "45%", "display": "inline-block", "margin": "5px"}, - ), - ] - ), - # Graph and custom legend - html.Div( - [ - html.Div( - [ - html.H3("Histogram Settings"), - dcc.Checklist( - id="histogram-settings", - options=[ - {"label": " Show KDE (density curve)", "value": "kde"}, - { - "label": " Normalize histograms", - "value": "normalize", - }, - {"label": " Show rug plot", "value": "rug"}, - ], - value=["kde"], - style={"display": "block", "gap": "10px"}, - inputStyle={"marginRight": "5px"}, - labelStyle={"display": "block", "marginBottom": "10px"}, - ), - html.Div( - [ - html.Label("Global Number of Bins:"), - dcc.Slider( - id="bins-slider", - min=MIN_BINS, - max=100, - step=1, - value=20, - marks={i: str(i) for i in [1, 20, 40, 60, 80, 100]}, - ), - ], - style={"marginTop": "15px"}, - ), - html.Div( - [ - html.Label( - "Lock all bins to global setting:", - style={ - "display": "inline-block", - "marginRight": "10px", - }, - ), - dcc.Checklist( - id="global-bins-toggle", - options=[{"label": "", "value": "enabled"}], - value=["enabled"], # Enabled by default - inline=True, - inputStyle={"marginRight": "5px"}, - ), - ], - style={"marginTop": "15px", "marginBottom": "5px"}, - ), - ], - style={"width": "20%", "display": "inline-block", "margin": "5px"}, - ), - # Main plot - html.Div( - [ - dcc.Graph(id="histogram-plot", style={"height": "700px"}), - ], - style={ - "width": "50%", - "display": "inline-block", - "verticalAlign": "top", - }, - ), - # Custom legend - html.Div( - [ - html.H3("Series"), - html.Div( - id="custom-legend", - style={"overflowY": "auto", "maxHeight": "600px"}, - ), - ], - style={ - "width": "20%", - "display": "inline-block", - "verticalAlign": "top", - }, - ), - ] - ), - # Info panel (hidden by default) - html.Div(id="series-info-panel", style=info_panel_style), - # Color picker panel (hidden by default) - html.Div( - [ - html.H3("Select Color"), - html.Div( - [ - html.Button( - style={ - "backgroundColor": color, - "width": "30px", - "height": "30px", - "margin": "5px", - }, - id={"type": "color-option", "index": i}, - ) - for i, color in enumerate(COLORS) - ], - style={ - "display": "grid", - "gridTemplateColumns": "repeat(5, 1fr)", - "gap": "5px", - }, - ), - html.Button( - "Close", id="close-color-picker", style={"marginTop": "10px"} - ), - ], - id="color-picker-panel", - style=color_picker_style, - ), - # Store components - dcc.Store(id="series-colors"), - dcc.Store(id="series-data"), - dcc.Store(id="active-series"), - dcc.Store(id="bins-settings"), - dcc.Store( - id="global-bins-active", data=True - ), # True by default# Add this to your layout - dcc.Interval( - id="interval-component", interval=60 * 1000, n_intervals=0 - ), # Just a trigger - ] -) - - -# Update whether global bins control is active based on toggle -@app.callback( - Output("global-bins-active", "data"), [Input("global-bins-toggle", "value")] -) -def update_global_bins_state(toggle_value): - """Update whether global bins control is active based on toggle.""" - return "enabled" in toggle_value if toggle_value else False - - -# # Initialize series-colors and statistics when columns are selected -# @app.callback( -# [Output('series-colors', 'data'), -# Output('series-data', 'data')], -# [Input('histogram-columns', 'value'), -# Input('bins-settings', 'data')], -# [State('series-colors', 'data')] -# ) -# def initialize_series_data(selected_cols, bins_settings, existing_colors): -# """Initialize color data and statistics for selected columns.""" -# debug_log("Initializing series data") -# color_data = existing_colors or {} -# series_stats = {} -# bins_settings = bins_settings or {} - -# if not selected_cols: -# return color_data, series_stats - -# for col in selected_cols: -# series_name = f'Histogram of {col}' - -# # Assign a color if not already assigned -# if series_name not in color_data: -# color_data[series_name] = COLORS[len(color_data) % len(COLORS)] - -# # Get bin count (default 20) -# num_bins = bins_settings.get(series_name, 20) - -# # Calculate statistics with the current bin count -# stats = calculate_histogram_statistics(df[col], num_bins) -# series_stats[series_name] = stats - -# # Keep only the colors for selected columns -# color_data = {k: v for k, v in color_data.items() -# if any(f'Histogram of {x}' == k for x in selected_cols)} - -# return color_data, series_stats - - -# Update custom legend with bin controls -@app.callback( - Output("custom-legend", "children"), - [ - Input("histogram-columns", "value"), - Input("series-colors", "data"), - Input("bins-settings", "data"), - ], -) -def update_legend_with_bin_controls(selected_cols, color_data, bins_settings): - """Update custom legend with interactive elements including bin controls.""" - legend_items = [] - bins_settings = bins_settings or {} - - if not selected_cols or not color_data: - return legend_items - - for col in selected_cols: - series_name = f"Histogram of {col}" - color = color_data.get(series_name, COLORS[0]) - - # Get bin count for this series (default: 20 bins) - bin_count = bins_settings.get(series_name, 20) - - legend_items.append( - html.Div( - [ - # Color button - html.Button( - style={ - "backgroundColor": color, - "width": "20px", - "height": "20px", - "marginRight": "10px", - "verticalAlign": "middle", - "cursor": "pointer", - "border": "1px solid #ddd", - }, - id={"type": "color-button", "index": series_name}, - ), - # Series name - html.Span( - series_name, - style={ - "cursor": "default", - "userSelect": "none", - "display": "inline-block", - "marginRight": "10px", - }, - ), - # Bin control - html.Div( - [ - html.Label( - "Bins:", - style={"fontSize": "11px", "marginRight": "5px"}, - ), - dcc.Input( - id={"type": "bin-input", "index": series_name}, - type="number", - min=5, - max=100, - step=1, - value=bin_count, - style={"width": "50px", "fontSize": "11px"}, - debounce=False, # Process changes immediately - persistence=True, # Remember values - ), - ], - style={"display": "inline-block"}, - ), - ], - className="legend-item", - id={"type": "legend-item", "index": series_name}, - **{ - "data-series": series_name, - "style": { - "margin": "10px", - "padding": "5px", - "borderRadius": "3px", - "display": "flex", - "alignItems": "center", - }, - }, - ) - ) - - return legend_items - - -@app.callback( - [Output("color-picker-panel", "style"), Output("active-series", "data")], - [ - Input({"type": "color-button", "index": ALL}, "n_clicks"), - Input("close-color-picker", "n_clicks"), - ], - [ - State({"type": "color-button", "index": ALL}, "id"), - State("color-picker-panel", "style"), - ], -) -def toggle_color_picker(button_clicks, close_clicks, button_ids, current_style): - """Show/hide color picker when clicking color buttons.""" - ctx = dash.callback_context - if not ctx.triggered: - return dict(current_style, display="none"), None - - triggered_id = ctx.triggered[0]["prop_id"] - - # Close on close button click - if "close-color-picker" in triggered_id: - debug_log("Closing color picker") - return dict(current_style, display="none"), None - - # Open on color button click - if "color-button" in triggered_id and button_clicks and any(button_clicks): - try: - # Find which button was clicked - button_idx = next( - (i for i, clicks in enumerate(button_clicks) if clicks), None - ) - if button_idx is not None: - series_name = button_ids[button_idx]["index"] - debug_log(f"Opening color picker for {series_name}") - return dict(current_style, display="block"), series_name - except Exception as e: - debug_log(f"Error in toggle_color_picker: {e}") - - return dict(current_style, display="none"), None - - -@app.callback( - Output("series-colors", "data", allow_duplicate=True), - [Input({"type": "color-option", "index": ALL}, "n_clicks")], - [ - State({"type": "color-option", "index": ALL}, "id"), - State("active-series", "data"), - State("series-colors", "data"), - ], - prevent_initial_call=True, -) -def update_series_color(color_clicks, color_ids, active_series, current_colors): - """Update color when selecting from color picker.""" - ctx = dash.callback_context - if not ctx.triggered or not active_series or not current_colors: - return dash.no_update - - triggered_id = ctx.triggered[0]["prop_id"] - if "color-option" not in triggered_id or not any( - click for click in color_clicks if click - ): - return dash.no_update - - try: - # Find which color was clicked - color_idx = next((i for i, clicks in enumerate(color_clicks) if clicks), None) - if color_idx is not None: - current_colors[active_series] = COLORS[color_idx] - debug_log(f"Updated color for {active_series} to {COLORS[color_idx]}") - return current_colors - except Exception as e: - debug_log(f"Error in update_series_color: {e}") - - return dash.no_update - - -@app.callback( - [ - Output("color-picker-panel", "style", allow_duplicate=True), - Output("active-series", "data", allow_duplicate=True), - ], - [Input({"type": "color-option", "index": ALL}, "n_clicks")], - [State("color-picker-panel", "style")], - prevent_initial_call=True, -) -def close_color_picker_after_selection(color_clicks, current_style): - """Close the color picker after a color is selected.""" - if any(click for click in color_clicks if click): - return dict(current_style, display="none"), None - return dash.no_update, dash.no_update - - -@app.callback( - Output("histogram-plot", "figure"), - [ - Input("histogram-columns", "value"), - Input("histogram-settings", "value"), - Input("series-colors", "data"), - Input("bins-settings", "data"), - ], -) -def update_histogram(selected_cols, settings, color_data, bins_settings): - """Update the histogram based on selected columns and settings.""" - debug_log("Updating histogram plot") - fig = go.Figure() - - if not selected_cols or not color_data: - fig.add_annotation( - text="Please select columns for the histogram", - xref="paper", - yref="paper", - x=0.5, - y=0.5, - showarrow=False, - ) - return fig - - normalize = "normalize" in settings - show_kde = "kde" in settings - show_rug = "rug" in settings - bins_settings = bins_settings or {} - - for col in selected_cols: - series_name = f"Histogram of {col}" - color = color_data.get(series_name) - if not color: # Skip if no color assigned - continue - - # Get bins setting for this series (default: 20) - num_bins = bins_settings.get(series_name, 20) - - # Clean the data - data = df[col].dropna() - - # Add histogram with precisely num_bins bins - histnorm = "probability" if normalize else None - - # Calculate bin range directly - min_val, max_val = min(data), max(data) - bin_width = (max_val - min_val) / num_bins if max_val > min_val else 1 - - # Use xbins to control exactly how many bins are displayed - fig.add_trace( - go.Histogram( - x=data, - name=series_name, - histnorm=histnorm, - marker_color=color, - opacity=0.7, - showlegend=False, - xbins=dict(start=min_val, end=max_val, size=bin_width), - autobinx=False, # Disable autobinning - ) - ) - - # Add KDE if requested - if show_kde and len(data) > 1: - try: - # Calculate KDE values - from scipy import stats as scipy_stats - - # Make sure we have enough unique values for KDE - if len(np.unique(data)) > 5: - kde = scipy_stats.gaussian_kde(data) - x_range = np.linspace(min(data), max(data), 200) - y_range = kde(x_range) - - # Scale KDE to match histogram height - if normalize: - # Scale for normalized histogram - y_range = y_range / np.trapz(y_range, x_range) - else: - # Scale for count histogram - hist, edges = np.histogram(data, bins=num_bins) - max_hist_height = np.max(hist) - max_kde_height = np.max(y_range) - scale_factor = ( - max_hist_height / max_kde_height - if max_kde_height > 0 - else 1 - ) - y_range = y_range * scale_factor - - fig.add_trace( - go.Scatter( - x=x_range, - y=y_range, - mode="lines", - name=f"KDE of {col}", - line=dict(color=color, width=2), - showlegend=False, - ) - ) - except Exception as e: - debug_log(f"Error computing KDE: {e}") - - # Add rug plot if requested - if show_rug: - try: - # Create a small y value for the rug - min_y = 0 - if normalize: - # Position below x-axis for normalized histogram - min_y = -0.02 - - fig.add_trace( - go.Scatter( - x=data, - y=[min_y] * len(data), - mode="markers", - marker=dict( - symbol="line-ns", size=10, color=color, opacity=0.5 - ), - showlegend=False, - hoverinfo="x", - ) - ) - except Exception as e: - debug_log(f"Error adding rug plot: {e}") - - # Display histograms using overlay mode - fig.update_layout( - barmode="overlay", - title="Interactive Histogram Visualization", - plot_bgcolor="white", - paper_bgcolor="white", - showlegend=False, # Using custom legend - xaxis=dict( - title="Value", - showgrid=True, - gridwidth=1, - gridcolor="LightGray", - zeroline=True, - zerolinewidth=2, - zerolinecolor="LightGray", - ), - yaxis=dict( - title="Frequency" if not normalize else "Probability", - showgrid=True, - gridwidth=1, - gridcolor="LightGray", - zeroline=True, - zerolinewidth=2, - zerolinecolor="LightGray", - ), - height=700, - margin=dict(t=50, b=50, l=50, r=50), - ) - - debug_log("Histogram plot updated") - return fig - - -app.clientside_callback( - """ - function(children, series_data) { - if (!children) return window.dash_clientside.no_update; - - const JS_DEBUG = true; - - function debugLog(message) { - if (JS_DEBUG) console.log('[JS]', message); - } - - // Global reference to track which element is being hovered - window.activeHoverLegendItem = window.activeHoverLegendItem || null; - - function updateStatsPanel() { - // If no item is active, don't update - if (!window.activeHoverLegendItem) return; - - const panel = document.getElementById('series-info-panel'); - if (!panel) return; - - const series = window.activeHoverLegendItem.getAttribute('data-series'); - - // If panel is visible, update its content - if (panel.style.display === 'block' && series_data && series_data[series]) { - let statsHtml = "
"; - statsHtml += `

Statistics: ${series}

`; - statsHtml += ""; - - const stats = series_data[series]; - for (const [key, value] of Object.entries(stats)) { - statsHtml += ` - - - `; - } - - statsHtml += "
${key}${value}
"; - panel.innerHTML = statsHtml; - } - } - - function setupHoverHandlers() { - debugLog('Setting up hover handlers'); - const items = document.getElementsByClassName('legend-item'); - const panel = document.getElementById('series-info-panel'); - - Array.from(items).forEach(item => { - item.onmouseenter = (e) => { - const series = item.getAttribute('data-series'); - debugLog(`Hover enter: ${series}`); - - // Store reference to the hovered item - window.activeHoverLegendItem = item; - - // Generate HTML content for statistics - let statsHtml = "
"; - - if (series_data && series_data[series]) { - statsHtml += `

Statistics: ${series}

`; - statsHtml += ""; - - const stats = series_data[series]; - for (const [key, value] of Object.entries(stats)) { - statsHtml += ` - - - `; - } - - statsHtml += "
${key}${value}
"; - } else { - statsHtml += "

No statistics available for this series.

"; - } - - statsHtml += "
"; - panel.innerHTML = statsHtml; - - // Position the panel - const rect = item.getBoundingClientRect(); - let left = rect.right + 10; - - // Check if panel would go off-screen - if (left + 300 > window.innerWidth) { // 300px is max panel width - left = rect.left - 310; // Position to left with 10px margin - } - - panel.style.left = left + 'px'; - panel.style.top = rect.top + 'px'; - panel.style.display = 'block'; - }; - - item.onmouseleave = (e) => { - debugLog('Hover leave'); - window.activeHoverLegendItem = null; - panel.style.display = 'none'; - }; - }); - } - - // Update panel content if needed - updateStatsPanel(); - - // Allow time for DOM to update - setTimeout(setupHoverHandlers, 100); - - return window.dash_clientside.no_update; - } - """, - Output("custom-legend", "data-update"), - [Input("custom-legend", "children"), Input("series-data", "data")], -) -# # Remove the existing update_bin_settings callback and replace with this: -# @app.callback( -# Output('series-data', 'data'), -# [Input('bins-settings', 'data'), -# Input('histogram-columns', 'value')], -# [State('series-data', 'data')] -# ) -# def update_statistics_on_bin_change(bins_settings, selected_cols, current_stats): -# """Update statistics whenever bin settings change.""" -# ctx = dash.callback_context -# if not ctx.triggered: -# return current_stats or {} - -# if not selected_cols: -# return current_stats or {} - -# bins_settings = bins_settings or {} -# stats = current_stats or {} - -# # Update statistics for all selected columns with current bin settings -# for col in selected_cols: -# series_name = f'Histogram of {col}' -# num_bins = bins_settings.get(series_name, 20) # Default to 20 bins -# updated_stats = calculate_histogram_statistics(df[col], num_bins) -# stats[series_name] = updated_stats - -# # Remove stats for unselected columns -# for series_name in list(stats.keys()): -# if not any(f'Histogram of {col}' == series_name for col in selected_cols): -# del stats[series_name] - -# return stats -# Replace the existing initialize_series_data callback with this one: - - -@app.callback( - [Output("series-colors", "data"), Output("series-data", "data")], - [Input("histogram-columns", "value"), Input("bins-settings", "data")], - [State("series-colors", "data")], -) -def initialize_and_update_series_data(selected_cols, bins_settings, existing_colors): - """Initialize color data and update statistics for selected columns.""" - ctx = dash.callback_context - debug_log( - f"Series data update triggered by: {ctx.triggered[0]['prop_id'] if ctx.triggered else 'none'}" - ) - - color_data = existing_colors or {} - series_stats = {} - bins_settings = bins_settings or {} - - if not selected_cols: - return color_data, series_stats - - for col in selected_cols: - series_name = f"Histogram of {col}" - - # Assign a color if not already assigned - if series_name not in color_data: - color_data[series_name] = COLORS[len(color_data) % len(COLORS)] - - # Get bin count (default 20) - num_bins = bins_settings.get(series_name, 20) - - # Calculate statistics with the current bin count - stats = calculate_histogram_statistics(df[col], num_bins) - series_stats[series_name] = stats - - # Keep only the colors for selected columns - color_data = { - k: v - for k, v in color_data.items() - if any(f"Histogram of {x}" == k for x in selected_cols) - } - - return color_data, series_stats - - -@app.callback( - Output("bins-settings", "data"), - [ - Input({"type": "bin-input", "index": ALL}, "value"), - Input("bins-slider", "value"), - Input("histogram-columns", "value"), - ], - [ - State({"type": "bin-input", "index": ALL}, "id"), - State("bins-settings", "data"), - State("global-bins-active", "data"), - ], -) -def update_all_bin_settings( - bin_values, slider_value, selected_cols, bin_ids, current_settings, global_active -): - """Master callback that handles ALL bin settings updates.""" - ctx = dash.callback_context - if not ctx.triggered: - return current_settings or {} - - settings = current_settings or {} - triggered_id = ctx.triggered[0]["prop_id"] - - debug_log(f"Bin settings update triggered by: {triggered_id}") - - # When columns change, initialize bin settings for new columns - if "histogram-columns.value" in triggered_id: - if selected_cols: - for col in selected_cols: - series_name = f"Histogram of {col}" - # Only set if not already set - if series_name not in settings: - settings[series_name] = slider_value - - # Clean up any series that are no longer selected - to_remove = [] - for series_name in settings: - if not any(f"Histogram of {col}" == series_name for col in selected_cols): - to_remove.append(series_name) - - for series_name in to_remove: - del settings[series_name] - - # Handle global slider update - elif "bins-slider.value" in triggered_id and global_active: - if selected_cols: - for col in selected_cols: - series_name = f"Histogram of {col}" - settings[series_name] = slider_value - debug_log(f"Updated all bins to {slider_value} from global slider") - - # Handle individual bin input updates - elif "bin-input" in triggered_id: - for i, value in enumerate(bin_values): - if value is not None: - try: - # Handle both numeric and string inputs - if isinstance(value, str): - if value.strip(): # Non-empty string - num_value = int(float(value)) - else: - continue - else: - num_value = int(value) - - if num_value >= MIN_BINS: - series_name = bin_ids[i]["index"] - settings[series_name] = num_value - debug_log(f"Updated bin for {series_name} to {num_value}") - - except (ValueError, TypeError) as e: - debug_log(f"Error converting bin value: {e}") - pass - - return settings - - -# Add this clientside callback to handle both typing and arrow clicks -app.clientside_callback( - """ - function(bins_settings) { - // This function just initializes our input handlers once - if (!window.binsInputsInitialized) { - // Wait for DOM to be ready - setTimeout(() => { - // Find all bin inputs - const binInputs = document.querySelectorAll('input[id*="bin-input"]'); - - // Add event listeners to each input - binInputs.forEach(input => { - // Extract the series name from the id attribute - const idMatch = input.id.match(/"index":"([^"]+)"/); - if (!idMatch) return; - - const seriesName = idMatch[1]; - - // Handle input events (works for both typing and arrows) - input.addEventListener('input', function(e) { - const value = parseInt(this.value); - if (!isNaN(value) && value >= 5) { - // Directly update the bins-settings store - const existingSettings = JSON.parse( - document.getElementById('bins-settings').getAttribute('data-dash-store') || '{}' - ); - - existingSettings[seriesName] = value; - - // This will trigger the Dash callback - document.getElementById('bins-settings') - .setAttribute('data-dash-store', JSON.stringify(existingSettings)); - - // Create and dispatch a custom event to notify Dash - const event = new CustomEvent('bins-settings-updated'); - document.dispatchEvent(event); - } - }); - }); - - window.binsInputsInitialized = true; - }, 500); // Wait for components to render - } - - return window.dash_clientside.no_update; - } - """, - Output("custom-legend", "data-update", allow_duplicate=True), - [Input("bins-settings", "data")], - prevent_initial_call=True, -) -# Add this to monitor and update from the clientside -app.clientside_callback( - """ - function(n_intervals) { - const customEvent = new CustomEvent('_dash-update-component', { - detail: { - output: 'bins-settings.data', - changedPropIds: ['custom-event.n_events'] - } - }); - - document.addEventListener('bins-settings-updated', function() { - // Get current settings from the store - const storeEl = document.getElementById('bins-settings'); - const data = JSON.parse(storeEl.getAttribute('data-dash-store') || '{}'); - - // Trigger update in Dash - window.dash_clientside._callback.setProps({ - 'bins-settings.data': data - }); - }); - - return window.dash_clientside.no_update; - } - """, - Output("custom-legend", "data-update", allow_duplicate=True), - [Input("interval-component", "n_intervals")], - prevent_initial_call=True, -) -# Run the app -if __name__ == "__main__": - app.run_server(debug=True, port=8051) diff --git a/plotly_examples/sensitivity_1.py b/plotly_examples/sensitivity_1.py deleted file mode 100644 index 63e6815..0000000 --- a/plotly_examples/sensitivity_1.py +++ /dev/null @@ -1,850 +0,0 @@ -"""Interactive multi-column scatter plot interface with statistics.""" - -import dash -from dash import dcc, html -from dash.dependencies import Input, Output, State, ALL -import plotly.graph_objects as go -import pandas as pd -import numpy as np -from typing import Any - -# # Debug Configuration -# PYTHON_DEBUG = True # Controls Python-side logging -# JS_DEBUG_CONFIG = True # This will be passed to JavaScript - -# def debug_log(message: str) -> None: -# """Python-side debug logging.""" -# if PYTHON_DEBUG: -# print(f"[PY] {message}") -# Debug Configuration -PYTHON_DEBUG = True - - -def debug_log(message: str) -> None: - """Python-side debug logging.""" - if PYTHON_DEBUG: - print(f"[PY] {message}") - - -def calculate_statistics(series1: pd.Series, series2: pd.Series) -> dict[str, Any]: - """Calculate statistics for a pair of series.""" - try: - # Drop NA values that exist in either series - mask = ~(series1.isna() | series2.isna()) - clean_s1 = series1[mask] - clean_s2 = series2[mask] - - if len(clean_s1) < 2: # Need at least 2 points for most statistics - return { - "correlation": "N/A", - "samples": len(clean_s1), - "missing": len(series1) - len(clean_s1), - "x_mean": f"{clean_s1.mean():.3f}" if len(clean_s1) > 0 else "N/A", - "y_mean": f"{clean_s2.mean():.3f}" if len(clean_s2) > 0 else "N/A", - } - - stats_dict = { - "correlation": f"{clean_s1.corr(clean_s2):.3f}", - "samples": len(clean_s1), - "missing": len(series1) - len(clean_s1), - "x_mean": f"{clean_s1.mean():.3f}", - "y_mean": f"{clean_s2.mean():.3f}", - "x_std": f"{clean_s1.std():.3f}", - "y_std": f"{clean_s2.std():.3f}", - } - - # Calculate linear regression - slope, intercept = np.polyfit(clean_s1, clean_s2, 1) - stats_dict["regression"] = f"y = {slope:.3f}x + {intercept:.3f}" - - return stats_dict - except Exception as e: - if PYTHON_DEBUG: - print(f"[PY] Error calculating statistics: {e}") - return {"error": str(e)} - - -# Create sample data -df1 = pd.DataFrame( - { - "A": np.random.randn(100), - "B": np.random.randn(100), - "C": np.random.randn(100), - "D": np.random.randn(100), - "Category": np.random.choice(["X", "Y", "Z"], 100), - } -) - -df2 = pd.DataFrame( - { - "W": np.random.randn(100), - "X": np.random.randn(100), - "Y": np.random.randn(100), - "Z": np.random.randn(100), - "Group": np.random.choice(["P", "Q", "R"], 100), - } -) - -# # Initialize the Dash app -# app = dash.Dash(__name__) -# Initialize the Dash app -app = dash.Dash(__name__, suppress_callback_exceptions=True) - -# Styles with debug-friendly positioning -dropdown_style = { - "width": "100%", - "marginBottom": "20px", - "zIndex": 999, -} - -info_panel_style = { - "position": "fixed", # Fixed positioning for hover panel - "backgroundColor": "white", - "padding": "15px", - "borderRadius": "5px", - "boxShadow": "0 0 10px rgba(0,0,0,0.3)", - "zIndex": 1000, - "display": "none", - "minWidth": "200px", - "maxWidth": "300px", - "fontSize": "12px", -} - -color_picker_style = { - "position": "fixed", - "top": "50%", - "left": "50%", - "transform": "translate(-50%, -50%)", - "backgroundColor": "white", - "padding": "20px", - "borderRadius": "5px", - "boxShadow": "0 0 10px rgba(0,0,0,0.3)", - "zIndex": 1001, - "display": "none", -} - -# Available colors -COLORS = [ - "#1f77b4", - "#ff7f0e", - "#2ca02c", - "#d62728", - "#9467bd", - "#8c564b", - "#e377c2", - "#7f7f7f", - "#bcbd22", - "#17becf", - "#aec7e8", - "#ffbb78", - "#98df8a", - "#ff9896", - "#c5b0d5", - "#c49c94", - "#f7b6d2", - "#c7c7c7", - "#dbdb8d", - "#9edae5", -] - -# JavaScript code for hover handling -hover_script = """ -const JS_DEBUG = true; // JavaScript debug flag - -function debugLog(message) { - if (JS_DEBUG) { - console.log(`[JS] ${message}`); - } -} - -function initializeHoverHandlers() { - debugLog('Initializing hover handlers'); - const legendItems = document.getElementsByClassName('legend-item'); - const infoPanel = document.getElementById('series-info-panel'); - - function positionPanel(event, item) { - const rect = item.getBoundingClientRect(); - const panel = infoPanel.getBoundingClientRect(); - const viewport = { - width: window.innerWidth, - height: window.innerHeight - }; - - // Try positioning to the right first - let left = rect.right + 10; - if (left + panel.width > viewport.width) { - // Fall back to left side if not enough space - left = rect.left - panel.width - 10; - } - - let top = rect.top; - if (top + panel.height > viewport.height) { - top = viewport.height - panel.height - 10; - } - - debugLog(`Positioning panel at (${left}, ${top})`); - - infoPanel.style.left = `${left}px`; - infoPanel.style.top = `${top}px`; - } - - function handleMouseEnter(event) { - const item = event.currentTarget; - debugLog(`Mouse enter: ${item.getAttribute('data-series')}`); - - // Show panel and position it - infoPanel.style.display = 'block'; - positionPanel(event, item); - } - - function handleMouseLeave(event) { - debugLog('Mouse leave'); - infoPanel.style.display = 'none'; - } - - // Attach handlers to all legend items - Array.from(legendItems).forEach(item => { - item.addEventListener('mouseenter', handleMouseEnter); - item.addEventListener('mouseleave', handleMouseLeave); - }); - - debugLog(`Attached handlers to ${legendItems.length} items`); -} - -// Initialize handlers when content updates -if (window.dash_clientside) { - window.dash_clientside.clientside = { - initializeHover: function(children) { - if (!children) return window.dash_clientside.no_update; - - // Use setTimeout to ensure DOM is ready - setTimeout(initializeHoverHandlers, 100); - return window.dash_clientside.no_update; - } - }; -} -""" - -# Define the layout -app.layout = html.Div( - [ - html.H1("DataFrame Column Comparison"), - # Add the hover handling script - html.Script(hover_script), - # Control panel for column selection - html.Div( - [ - html.Div( - [ - html.H3("Select X-axis Columns (DataFrame 1)"), - dcc.Dropdown( - id="df1-columns", - options=[ - {"label": col, "value": col} - for col in df1.columns - if col != "Category" - ], - value=[], - multi=True, - style=dropdown_style, - ), - ], - style={"width": "45%", "display": "inline-block", "margin": "5px"}, - ), - html.Div( - [ - html.H3("Select Y-axis Columns (DataFrame 2)"), - dcc.Dropdown( - id="df2-columns", - options=[ - {"label": col, "value": col} - for col in df2.columns - if col != "Group" - ], - value=[], - multi=True, - style=dropdown_style, - ), - ], - style={"width": "45%", "display": "inline-block", "margin": "5px"}, - ), - ] - ), - # Plot settings - # html.Div([ - # html.H3("Plot Settings", style={'marginBottom': '5px'}), - # dcc.Checklist( - # id='plot-settings', - # options=[ - # {'label': ' Show trend lines', 'value': 'trend'}, - # {'label': ' Show point labels', 'value': 'labels'} - # ], - # value=['trend'], - # style={'display': 'flex', 'gap': '20px'}, - # inputStyle={'marginRight': '5px'}, - # labelStyle={'display': 'flex', 'alignItems': 'center'} - # ) - # ], style={'margin': '10px'}), - # Graph and custom legend - html.Div( - [ - # Plot settings - html.Div( - [ - html.H3("Plot Settings", style={"marginBottom": "5px"}), - dcc.Checklist( - id="plot-settings", - options=[ - {"label": " Show trend lines", "value": "trend"}, - {"label": " Show point labels", "value": "labels"}, - ], - value=["trend"], - style={ - "display": "block", - "gap": "10px", - }, # Changed from 'flex' to 'block' - inputStyle={"marginRight": "5px"}, - labelStyle={ - "display": "block", - "marginBottom": "10px", - }, # Added marginBottom and changed to block - ), - ], - style={ - "width": "10%", - "display": "inline-block", - "verticalAlign": "top", - }, - ), - # Main plot - html.Div( - [ - dcc.Graph(id="scatter-plot", style={"height": "700px"}), - ], - style={"width": "70%", "display": "inline-block"}, - ), - # Custom legend - html.Div( - [ - html.H3("Series"), - html.Div( - id="custom-legend", - style={"overflowY": "auto", "maxHeight": "600px"}, - ), - ], - style={ - "width": "20%", - "display": "inline-block", - "verticalAlign": "top", - }, - ), - ] - ), - # Info panel (hidden by default) - html.Div(id="series-info-panel", style=info_panel_style), - # Color picker panel (hidden by default) - html.Div( - [ - html.H3("Select Color"), - html.Div( - [ - html.Button( - style={ - "backgroundColor": color, - "width": "30px", - "height": "30px", - "margin": "5px", - }, - id={"type": "color-option", "index": i}, - ) - for i, color in enumerate(COLORS) - ], - style={ - "display": "grid", - "gridTemplateColumns": "repeat(5, 1fr)", - "gap": "5px", - }, - ), - html.Button( - "Close", id="close-color-picker", style={"marginTop": "10px"} - ), - ], - id="color-picker-panel", - style=color_picker_style, - ), - # Store components - dcc.Store(id="series-colors"), - dcc.Store(id="series-data"), - dcc.Store(id="active-series"), - ] -) - -app.clientside_callback( - """ - function(children) { - if (!children) return window.dash_clientside.no_update; - - const JS_DEBUG = true; - - function debugLog(message) { - if (JS_DEBUG) console.log('[JS]', message); - } - - function setupHoverHandlers() { - debugLog('Setting up hover handlers'); - const items = document.getElementsByClassName('legend-item'); - const panel = document.getElementById('series-info-panel'); - - Array.from(items).forEach(item => { - item.onmouseenter = (e) => { - const series = item.getAttribute('data-series'); - debugLog(`Hover enter: ${series}`); - - // Position the panel - const rect = item.getBoundingClientRect(); - let left = rect.right + 10; - - // Check if panel would go off-screen - if (left + 300 > window.innerWidth) { // 300px is max panel width - left = rect.left - 310; // Position to left with 10px margin - } - - panel.style.left = left + 'px'; - panel.style.top = rect.top + 'px'; - panel.style.display = 'block'; - }; - - item.onmouseleave = (e) => { - debugLog('Hover leave'); - panel.style.display = 'none'; - }; - }); - } - - // Allow time for DOM to update - setTimeout(setupHoverHandlers, 100); - return window.dash_clientside.no_update; - } - """, - Output("custom-legend", "data-update"), - Input("custom-legend", "children"), -) - - -@app.callback( - [ - Output("custom-legend", "children"), - Output("series-colors", "data"), - Output("series-data", "data"), - ], - [Input("df1-columns", "value"), Input("df2-columns", "value")], - [State("series-colors", "data")], -) -def update_legend(df1_cols, df2_cols, existing_colors): - """Update custom legend with interactive elements.""" - debug_log("Updating legend") - legend_items = [] - color_data = existing_colors or {} - series_stats = {} - - if not df1_cols or not df2_cols: - debug_log("No columns selected") - return [], color_data, {} - - for x_col in df1_cols: - for y_col in df2_cols: - series_name = f"{x_col} vs {y_col}" - debug_log(f"Processing series: {series_name}") - - if series_name not in color_data: - color_data[series_name] = COLORS[len(color_data) % len(COLORS)] - - color = color_data[series_name] - stats = calculate_statistics(df1[x_col], df2[y_col]) - series_stats[series_name] = stats - - legend_items.append( - html.Div( - [ - html.Button( - style={ - "backgroundColor": color, - "width": "20px", - "height": "20px", - "marginRight": "10px", - "verticalAlign": "middle", - "cursor": "pointer", - "border": "1px solid #ddd", - }, - id={"type": "color-button", "index": series_name}, - ), - html.Span( - series_name, - style={ - "cursor": "default", - "userSelect": "none", - "display": "inline-block", - }, - ), - ], - className="legend-item", - id={"type": "legend-item", "index": series_name}, - **{ - "data-series": series_name, - "style": { - "margin": "10px", - "padding": "5px", - "borderRadius": "3px", - }, - }, - ) - ) - - color_data = { - k: v - for k, v in color_data.items() - if any(x in k for x in df1_cols) and any(y in k for y in df2_cols) - } - - debug_log(f"Created {len(legend_items)} legend items") - return legend_items, color_data, series_stats - - -@app.callback( - [Output("series-info-panel", "children"), Output("series-info-panel", "style")], - [ - Input({"type": "legend-item", "index": ALL}, "mouseenter"), - Input({"type": "legend-item", "index": ALL}, "mouseleave"), - ], - [State("series-data", "data"), State("series-info-panel", "style")], -) -def update_info_panel(mouseenter, mouseleave, series_data, current_style): - """Update the info panel content and visibility.""" - if not dash.callback_context.triggered: - return dash.no_update, dash.no_update - - trigger = dash.callback_context.triggered[0] - - # Handle mouseleave - if ".mouseleave" in trigger["prop_id"]: - return dash.no_update, dict(current_style, display="none") - - # Handle mouseenter - if ".mouseenter" in trigger["prop_id"]: - try: - series_name = eval(trigger["prop_id"].split(".")[0])["index"] - stats = series_data.get(series_name, {}) - - content = html.Div( - [ - html.H4( - f"Statistics: {series_name}", - style={"marginTop": 0, "marginBottom": "10px"}, - ), - html.Table( - [ - html.Tr( - [ - html.Td( - k, - style={"padding": "3px", "fontWeight": "bold"}, - ), - html.Td(str(v), style={"padding": "3px"}), - ] - ) - for k, v in stats.items() - ], - style={"borderCollapse": "collapse"}, - ), - ] - ) - - return content, dict(current_style, display="block") - - except Exception as e: - debug_log(f"Error updating info panel: {e}") - return dash.no_update, dash.no_update - - return dash.no_update, dash.no_update - - -# @app.callback( -# [Output('color-picker-panel', 'style'), -# Output('active-series', 'data')], -# [Input({'type': 'color-button', 'index': ALL}, 'n_clicks'), -# Input('close-color-picker', 'n_clicks')], -# [State({'type': 'color-button', 'index': ALL}, 'id')] -# ) -# def toggle_color_picker(button_clicks, close_clicks, button_ids): -# """Show/hide color picker when clicking color buttons.""" -# ctx = dash.callback_context -# if not ctx.triggered: -# return dict(color_picker_style, display='none'), None - -# triggered_id = ctx.triggered[0]['prop_id'] - -# if 'close-color-picker' in triggered_id or not any(button_clicks): -# debug_log("Closing color picker") -# return dict(color_picker_style, display='none'), None - -# if 'color-button' in triggered_id: -# button_idx = next(i for i, c in enumerate(button_clicks) if c) -# series_name = button_ids[button_idx]['index'] -# debug_log(f"Opening color picker for {series_name}") -# return dict(color_picker_style, display='block'), series_name - -# return dict(color_picker_style, display='none'), None - -# @app.callback( -# Output('series-colors', 'data', allow_duplicate=True), -# [Input({'type': 'color-option', 'index': ALL}, 'n_clicks')], -# [State({'type': 'color-option', 'index': ALL}, 'id'), -# State('active-series', 'data'), -# State('series-colors', 'data')], -# prevent_initial_call=True -# ) -# def update_series_color(color_clicks, color_ids, active_series, current_colors): -# """Update color when selecting from color picker.""" -# ctx = dash.callback_context -# if not ctx.triggered or not active_series or not current_colors: -# return dash.no_update - -# triggered_id = ctx.triggered[0]['prop_id'] -# if 'color-option' not in triggered_id: -# return dash.no_update - -# color_idx = eval(triggered_id.split('.')[0])['index'] -# current_colors[active_series] = COLORS[color_idx] -# debug_log(f"Updated color for {active_series}") -# return current_colors - - -@app.callback( - Output("scatter-plot", "figure"), - [ - Input("df1-columns", "value"), - Input("df2-columns", "value"), - Input("plot-settings", "value"), - Input("series-colors", "data"), - ], -) -def update_graph(df1_cols, df2_cols, settings, color_data): - """Update the scatter plot based on selected columns.""" - debug_log("Updating scatter plot") - fig = go.Figure() - - if not df1_cols or not df2_cols or not color_data: - fig.add_annotation( - text="Please select columns from both dataframes", - xref="paper", - yref="paper", - x=0.5, - y=0.5, - showarrow=False, - ) - return fig - - for x_col in df1_cols: - for y_col in df2_cols: - series_name = f"{x_col} vs {y_col}" - color = color_data.get(series_name) - if not color: # Skip if no color assigned - continue - - # Add scatter plot - fig.add_trace( - go.Scatter( - x=df1[x_col], - y=df2[y_col], - mode="markers", - name=series_name, - marker=dict(color=color, size=8, opacity=0.6), - showlegend=False, # Using custom legend instead - ) - ) - - # Add trend line if requested - if "trend" in settings: - mask = ~(df1[x_col].isna() | df2[y_col].isna()) - x = df1[x_col][mask] - y = df2[y_col][mask] - if len(x) > 1: - z = np.polyfit(x, y, 1) - p = np.poly1d(z) - - fig.add_trace( - go.Scatter( - x=[x.min(), x.max()], - y=[p(x.min()), p(x.max())], - mode="lines", - name=f"Trend: {series_name}", - line=dict(color=color, dash="dash"), - showlegend=False, - ) - ) - - fig.update_layout( - title="Column Comparisons", - plot_bgcolor="white", - paper_bgcolor="white", - showlegend=False, # Using custom legend - xaxis=dict( - title="DataFrame 1 Columns", - showgrid=True, - gridwidth=1, - gridcolor="LightGray", - zeroline=True, - zerolinewidth=2, - zerolinecolor="LightGray", - ), - yaxis=dict( - title="DataFrame 2 Columns", - showgrid=True, - gridwidth=1, - gridcolor="LightGray", - zeroline=True, - zerolinewidth=2, - zerolinecolor="LightGray", - ), - height=700, - margin=dict(t=50, b=50, l=50, r=50), - ) - - debug_log("Scatter plot updated") - return fig - - -"""""" - - -@app.callback( - Output("series-colors", "data", allow_duplicate=True), - [Input({"type": "color-option", "index": ALL}, "n_clicks")], - [ - State({"type": "color-option", "index": ALL}, "id"), - State("active-series", "data"), - State("series-colors", "data"), - ], - prevent_initial_call=True, -) -def update_series_color(color_clicks, color_ids, active_series, current_colors): - """Update color when selecting from color picker.""" - ctx = dash.callback_context - if not ctx.triggered or not active_series or not current_colors: - return dash.no_update - - triggered_id = ctx.triggered[0]["prop_id"] - if "color-option" not in triggered_id: - return dash.no_update - - color_idx = eval(triggered_id.split(".")[0])["index"] - current_colors[active_series] = COLORS[color_idx] - debug_log(f"Updated color for {active_series} to {COLORS[color_idx]}") - return current_colors - - -@app.callback( - [Output("color-picker-panel", "style"), Output("active-series", "data")], - [ - Input({"type": "color-button", "index": ALL}, "n_clicks"), - Input("close-color-picker", "n_clicks"), - Input({"type": "color-option", "index": ALL}, "n_clicks"), - ], # Add this input - [ - State({"type": "color-button", "index": ALL}, "id"), - State("color-picker-panel", "style"), - ], -) -def toggle_color_picker( - button_clicks, close_clicks, color_option_clicks, button_ids, current_style -): - """Show/hide color picker when clicking color buttons.""" - ctx = dash.callback_context - if not ctx.triggered: - return dict(current_style, display="none"), None - - triggered_id = ctx.triggered[0]["prop_id"] - - # Close on color selection or close button click - if "color-option" in triggered_id or "close-color-picker" in triggered_id: - debug_log("Closing color picker after selection") - return dict(current_style, display="none"), None - - # Open on color button click - if "color-button" in triggered_id and any(button_clicks): - button_idx = next(i for i, c in enumerate(button_clicks) if c) - series_name = button_ids[button_idx]["index"] - debug_log(f"Opening color picker for {series_name}") - return dict(current_style, display="block"), series_name - - return dict(current_style, display="none"), None - - -# Update the legend immediately when colors change -@app.callback( - Output("custom-legend", "children", allow_duplicate=True), - [Input("series-colors", "data")], - [ - State("df1-columns", "value"), - State("df2-columns", "value"), - State("series-data", "data"), - ], - prevent_initial_call=True, -) -def update_legend_colors(color_data, df1_cols, df2_cols, series_data): - """Update legend when colors change.""" - if not color_data or not df1_cols or not df2_cols: - return dash.no_update - - debug_log("Updating legend colors") - legend_items = [] - - for x_col in df1_cols: - for y_col in df2_cols: - series_name = f"{x_col} vs {y_col}" - color = color_data.get(series_name) - if not color: - continue - - legend_items.append( - html.Div( - [ - html.Button( - style={ - "backgroundColor": color, - "width": "20px", - "height": "20px", - "marginRight": "10px", - "verticalAlign": "middle", - "cursor": "pointer", - "border": "1px solid #ddd", - }, - id={"type": "color-button", "index": series_name}, - ), - html.Span( - series_name, - style={ - "cursor": "default", - "userSelect": "none", - "display": "inline-block", - }, - ), - ], - className="legend-item", - id={"type": "legend-item", "index": series_name}, - **{ - "data-series": series_name, - "style": { - "margin": "10px", - "padding": "5px", - "borderRadius": "3px", - }, - }, - ) - ) - - return legend_items - - -if __name__ == "__main__": - app.run_server(debug=True, port=8050) diff --git a/prepare_release.sh b/prepare_release.sh deleted file mode 100755 index 4f9e4c3..0000000 --- a/prepare_release.sh +++ /dev/null @@ -1,212 +0,0 @@ -#!/bin/bash -echo "Script started" -set -e # Exit immediately if a command exits with a non-zero status -echo "Version argument: $1" - -# Check if a version argument was provided -if [ $# -ne 1 ]; then - echo "Usage: $0 " - echo "Example: $0 v0.1.1" - exit 1 -fi - -VERSION=$1 -VERSION_NO_V="${VERSION#v}" # Remove the 'v' prefix for use in pyproject.toml - -# Validate version format -if ! [[ $VERSION =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - echo "Error: Version must be in format vX.Y.Z (e.g., v0.1.1)" - exit 1 -fi - -# Ensure we're on the dev branch -CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD) -if [ "$CURRENT_BRANCH" != "dev" ]; then - echo "Error: You must be on the dev branch to publish a new version" - exit 1 -fi - -# Make sure test output files are in .gitignore -if ! grep -q "discriminator_tests.json" .gitignore 2>/dev/null; then - echo "Adding test output files to .gitignore..." - cat >> .gitignore << EOF -# Test output files -discriminator_tests.json -discriminator_tests.log -.coverage -coverage.xml -EOF - git add .gitignore - git commit -m "Add test output files to .gitignore" - echo "Updated .gitignore and committed changes." -fi - -# Clean up any test output files that might interfere with branch switching -echo "Cleaning up test output files..." -rm -f discriminator_tests.json discriminator_tests.log .coverage coverage.xml - -# Make sure the working directory is clean (except for ignored files) -if ! git diff-index --quiet HEAD --; then - echo "Error: Working directory has uncommitted changes" - exit 1 -fi - -# Pull the latest changes from the dev branch -echo "Pulling latest changes from dev branch..." -git pull origin dev - -# Run unit tests before proceeding -echo "Running unit tests..." -echo "Installing package with development dependencies..." -pip install -e ".[dev]" # Install the package with dev dependencies - -if ! python -m pytest; then - echo "Error: Tests failed. Please fix the failing tests before publishing." - exit 1 -fi -echo "All tests passed successfully!" - -# Clean up test output files again -echo "Cleaning up test output files..." -rm -f discriminator_tests.json discriminator_tests.log .coverage coverage.xml - -# Update version in pyproject.toml -echo "Updating version in pyproject.toml to $VERSION_NO_V..." -sed -i.bak "s/^version = \".*\"/version = \"$VERSION_NO_V\"/" pyproject.toml -rm pyproject.toml.bak # Remove backup file - -# Update version in __init__.py (accounting for src layout) -INIT_PATH="src/pydantic_discriminated/__init__.py" -if [ -f "$INIT_PATH" ]; then - if grep -q "__version__" "$INIT_PATH"; then - # Update existing version - echo "Updating version in $INIT_PATH..." - sed -i.bak "s/__version__ = \".*\"/__version__ = \"$VERSION_NO_V\"/" "$INIT_PATH" - else - # Add version if it doesn't exist - echo "Adding version to $INIT_PATH..." - echo "" >> "$INIT_PATH" # Add a newline - echo "__version__ = \"$VERSION_NO_V\"" >> "$INIT_PATH" - fi - rm -f "${INIT_PATH}.bak" # Remove backup file if it exists -else - echo "Warning: $INIT_PATH not found, skipping version update in __init__.py" -fi - -# Update documentation URL in pyproject.toml to point to the docs site -echo "Updating documentation URL in pyproject.toml..." -sed -i.bak 's|"Documentation" = ".*"|"Documentation" = "https://talbotknighton.github.io/trendify/"|' pyproject.toml -rm pyproject.toml.bak # Remove backup file - -# Check if email in pyproject.toml contains .org and fix it if needed -if grep -q "talbotknighton@gmail.org" pyproject.toml; then - echo "Fixing email address in pyproject.toml..." - sed -i.bak 's/talbotknighton@gmail.org/talbotknighton@gmail.com/g' pyproject.toml - rm pyproject.toml.bak # Remove backup file -fi - -# Update README.md if it contains badge.fury.io badges -if [ -f "README.md" ] && grep -q "badge.fury.io" README.md; then - echo "Updating badges in README.md..." - sed -i.bak 's|https://badge.fury.io/py/trendify.svg|https://img.shields.io/pypi/v/trendify.svg|g' README.md - sed -i.bak 's|https://badge.fury.io/py/trendify|https://pypi.org/project/trendify/|g' README.md - rm README.md.bak # Remove backup file -fi - -# Make sure to add README.md to the commit -git add README.md - -# Update docs/index.md badges if needed -if [ -f "docs/index.md" ]; then - echo "Checking badges in docs/index.md..." - if grep -q "badge.fury.io" docs/index.md; then - echo "Updating PyPI badge in docs/index.md..." - sed -i.bak 's|https://badge.fury.io/py/trendify.svg|https://img.shields.io/pypi/v/trendify.svg|g' docs/index.md - sed -i.bak 's|https://badge.fury.io/py/trendify|https://pypi.org/project/trendify/|g' docs/index.md - rm docs/index.md.bak # Remove backup file - fi - - # Update documentation badge to be more useful (not link to itself) - if grep -q "docs-mkdocs-blue" docs/index.md; then - echo "Updating documentation badge in docs/index.md..." - sed -i.bak 's|[![Documentation](https://img.shields.io/badge/docs-mkdocs-blue.svg)](https://talbotknighton.github.io/trendify/)|[![API Reference](https://img.shields.io/badge/api-reference-blue.svg)](https://talbotknighton.github.io/trendify/api-reference/)|g' docs/index.md - rm docs/index.md.bak # Remove backup file - fi -fi - -# Update changelog if it exists -if [ -f "CHANGELOG.md" ]; then - echo "Adding new version entry to CHANGELOG.md..." - DATE=$(date +%Y-%m-%d) - sed -i.bak "s/^# Changelog/# Changelog\n\n## $VERSION ($DATE)\n\n- TODO: Add release notes\n/" CHANGELOG.md - rm CHANGELOG.md.bak # Remove backup file - - # Open the changelog for editing - echo "Opening CHANGELOG.md for editing. Please add release notes and save..." - ${EDITOR:-vi} CHANGELOG.md -fi - -# Check for consistency in version numbers -echo "Checking for version consistency..." -PYPROJECT_VERSION=$(grep "^version = " pyproject.toml | sed 's/version = "\(.*\)"/\1/') -INIT_VERSION=$(grep "__version__" "$INIT_PATH" 2>/dev/null | sed 's/__version__ = "\(.*\)"/\1/') - -if [ "$PYPROJECT_VERSION" != "$VERSION_NO_V" ]; then - echo "Error: Version in pyproject.toml ($PYPROJECT_VERSION) doesn't match requested version ($VERSION_NO_V)" - exit 1 -fi - -if [ -n "$INIT_VERSION" ] && [ "$INIT_VERSION" != "$VERSION_NO_V" ]; then - echo "Error: Version in $INIT_PATH ($INIT_VERSION) doesn't match requested version ($VERSION_NO_V)" - exit 1 -fi - -echo "Version consistency check passed." - -# Commit the version changes -echo "Committing version changes..." -git add pyproject.toml README.md docs/index.md -if [ -f "$INIT_PATH" ]; then - git add "$INIT_PATH" -fi -if [ -f "CHANGELOG.md" ]; then - git add CHANGELOG.md -fi -git commit -m "Bump version to $VERSION" - -# Push changes to dev branch -echo "Pushing changes to dev branch..." -git push origin dev - -# Build and deploy documentation locally -echo "Building and deploying documentation version $VERSION_NO_V locally..." -mike deploy "$VERSION_NO_V" latest --update-aliases -mike set-default latest - -echo "Documentation built and deployed locally." -echo "To view the documentation locally, run: mike serve" - -# Create pull request from dev to main -echo "Creating a pull request from dev to main..." - -# Try to create PR with GitHub CLI if available -if command -v gh &> /dev/null; then - echo "GitHub CLI found. Attempting to create PR automatically..." - PR_URL=$(gh pr create --title "Release $VERSION" \ - --body "This PR prepares the release of version $VERSION. Please review the changes carefully." \ - --base main \ - --head dev) - - if [ $? -eq 0 ]; then - echo "Pull request created successfully!" - echo "PR URL: $PR_URL" - echo "After the PR is reviewed and merged, run publish_release.sh $VERSION to complete the release process." - else - echo "Failed to create PR automatically. Please create it manually:" - echo "https://github.com/TalbotKnighton/trendify/compare/main...dev" - fi -else - echo "GitHub CLI not found. Please create the PR manually:" - echo "https://github.com/TalbotKnighton/trendify/compare/main...dev" - echo "After the PR is reviewed and merged, run publish_release.sh $VERSION to complete the release process." -fi \ No newline at end of file diff --git a/publish_release.sh b/publish_release.sh deleted file mode 100755 index 8f7e375..0000000 --- a/publish_release.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash -echo "Publish script started" -set -e # Exit immediately if a command exits with a non-zero status -echo "Version argument: $1" - -# Check if a version argument was provided -if [ $# -ne 1 ]; then - echo "Usage: $0 " - echo "Example: $0 v0.1.1" - exit 1 -fi - -VERSION=$1 -VERSION_NO_V="${VERSION#v}" # Remove the 'v' prefix for use in pyproject.toml - -# Validate version format -if ! [[ $VERSION =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - echo "Error: Version must be in format vX.Y.Z (e.g., v0.1.1)" - exit 1 -fi - -echo "This script will complete the release process for version $VERSION" -echo "Make sure the PR has been reviewed and merged to main before proceeding." -read -p "Has the PR been merged to main? (y/n) " -n 1 -r -echo -if [[ ! $REPLY =~ ^[Yy]$ ]]; then - echo "Please complete the PR process first, then run this script again." - exit 1 -fi - -# Clean up test output files to ensure branch switching works -echo "Cleaning up test output files..." -rm -f discriminator_tests.json discriminator_tests.log .coverage coverage.xml - -# Switch to main and pull latest changes -echo "Switching to main branch and pulling latest changes..." -git checkout main -git pull origin main - -# Create and push the tag -echo "Creating and pushing tag $VERSION..." -git tag -a $VERSION -m "Release $VERSION" -git push origin $VERSION - -# Wait for the package to be published to PyPI -echo "Waiting for package to be published to PyPI..." -echo "This may take a few minutes. The GitHub Actions workflow should be building and publishing your package." -echo "You can check the progress here: https://github.com/TalbotKnighton/trendify/actions" - -read -p "Has the package been published to PyPI? (y/n) " -n 1 -r -echo -if [[ $REPLY =~ ^[Yy]$ ]]; then - # Push documentation to GitHub Pages - echo "Pushing documentation to GitHub Pages..." - mike deploy "$VERSION_NO_V" latest --update-aliases --push - mike set-default latest --push -else - echo "Skipping documentation push. You can do this manually later with:" - echo "mike deploy \"$VERSION_NO_V\" --alias latest --update-aliases --push" - echo "mike set-default latest --push" -fi - -# Switch back to dev branch -echo "Switching back to dev branch..." -git checkout dev - -echo "Release process completed successfully!" -echo "Documentation has been deployed to GitHub Pages." \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 64f50b8..c36540d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "trendify" dynamic = ["version"] description = "Tools for generating data products, storing, and interacting with them" readme = "README.md" -requires-python = ">=3.11" +requires-python = ">=3.12" dependencies = [ "matplotlib>=3.11.0", "numpy>=2.4.6", @@ -29,7 +29,6 @@ classifiers = [ "Operating System :: OS Independent", "Natural Language :: English", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", @@ -103,10 +102,7 @@ ignore = ["typings"] exclude_also = ["if __name__ == .__main__.:", "@(abc\\.)?abstractmethod"] [dependency-groups] -dev = [ - "mkinit>=1.2.0", - "pytest>=9.1.1", -] +dev = ["mkinit>=1.2.0", "pytest>=9.1.1"] [project.urls] "Homepage" = "https://github.com/talbotknighton/trendify" @@ -117,4 +113,4 @@ dev = [ [project.scripts] trendify_make_sample_data = "trendify.examples:make_sample_data" -trendify = "trendify.CLI:trendify" +trendify = "trendify.cli:app" diff --git a/requirements.txt b/requirements.txt index 0d99763..7dad0b6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19,49 +19,35 @@ contourpy==1.3.3 \ --hash=sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69 \ --hash=sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc \ --hash=sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880 \ - --hash=sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a \ - --hash=sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8 \ --hash=sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc \ - --hash=sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470 \ --hash=sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5 \ --hash=sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263 \ --hash=sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b \ --hash=sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5 \ - --hash=sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381 \ --hash=sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3 \ --hash=sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4 \ --hash=sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e \ - --hash=sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f \ --hash=sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772 \ --hash=sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286 \ - --hash=sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42 \ --hash=sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301 \ - --hash=sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77 \ --hash=sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7 \ --hash=sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411 \ --hash=sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1 \ --hash=sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9 \ --hash=sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a \ --hash=sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b \ - --hash=sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db \ --hash=sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6 \ - --hash=sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620 \ - --hash=sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989 \ --hash=sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea \ --hash=sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67 \ --hash=sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5 \ --hash=sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d \ --hash=sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36 \ --hash=sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99 \ - --hash=sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1 \ - --hash=sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e \ --hash=sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b \ --hash=sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8 \ --hash=sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d \ - --hash=sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7 \ --hash=sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7 \ --hash=sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339 \ - --hash=sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1 \ --hash=sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659 \ --hash=sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4 \ --hash=sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f \ @@ -75,7 +61,6 @@ contourpy==1.3.3 \ --hash=sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7 \ --hash=sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe \ --hash=sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77 \ - --hash=sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497 \ --hash=sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd \ --hash=sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1 \ --hash=sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216 \ @@ -85,7 +70,6 @@ contourpy==1.3.3 \ --hash=sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77 \ --hash=sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3 \ --hash=sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f \ - --hash=sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff \ --hash=sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9 \ --hash=sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a # via matplotlib @@ -94,14 +78,11 @@ cycler==0.12.1 \ --hash=sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c # via matplotlib fonttools==4.63.0 \ - --hash=sha256:063e08bd17bd5a90127a14123de0d6a952dbc847695fd98b63c043d58057f90c \ --hash=sha256:0eac00b9118c3c2f87d272e45341871c5b3066baa3c86897fa634a7c3fb59096 \ --hash=sha256:1e874792a8212b44583ea02189d9e693906b2f78b261f372f95d6c563210ac1d \ --hash=sha256:22135da48a348785c5e2d5d2d9d6bec5ed44adacbaeb9db12d9493bf6c6bfa68 \ --hash=sha256:22693918177bd9ceabec4736d338045f357769416fc6b0b2508eefef75b08616 \ --hash=sha256:27fdc65af8da6f88b9c6121c47a464cbe359fcfff7ff6fc2d37a1f395d755b78 \ - --hash=sha256:2b8ae05d9eacf6081414d759c0a352769ac28ce31280d6bb8e77b03f9e3c449f \ - --hash=sha256:2c14b4fd138c4bafcca294765c547914e1aa431ae1ca94ab99d8db08c958bd3b \ --hash=sha256:308f957cdeaf8abe4e5f2f124902ef405448af92c90f80e302a3b771c2e6116b \ --hash=sha256:37dd23e621e3b0aef1baa70a303b80aaf38449632cfc8fd2a55fb285bbccfc02 \ --hash=sha256:445af2eab030a16b9171ea8bdda7ebf7d96bda2df88ee182a464252f6e05e20d \ @@ -113,17 +94,14 @@ fonttools==4.63.0 \ --hash=sha256:6db5140a60a5d731d21ec076745b40a310607731b0a565b50776393188649001 \ --hash=sha256:6e528da43bc3791085f8cb6141b1d13e459226790240340fcbb4625649238b03 \ --hash=sha256:796f27556dbe094c4824f75ca85267e4df776c79036c8441469a4df37038c196 \ - --hash=sha256:79cdc9f567aec74a72918fd060283911406750cbc9fd28c1316023deb6ce31a9 \ --hash=sha256:7d76edbff9014094dbf03bd2d074709dfa6ec7aba13d838c937a2b33d2d6a86e \ --hash=sha256:7d782fac32985914c351556f68ac0855391572bcd87de50e05970d3cd4c96fc5 \ - --hash=sha256:7dd683fef0663e9f0f45cf541d788d24caa3ec9db50796b588e1757d8b3bc007 \ --hash=sha256:85be818f5506e8a7753153def2c9550178f0ecae6a47b5e0e8dbb23f7cc90380 \ --hash=sha256:948428a275741f0b64b113c955425a953314f4b9ab9997f73a72c83e68e569c8 \ --hash=sha256:9ced0bd02ac751dd6319b0da88aaef24414e3b0dbc32bb4f24944821a3741a27 \ --hash=sha256:9e12f105d2b6342c559c298afb674006bb2893afc7102dcf8a1b55b0486b4e40 \ --hash=sha256:a9faff9e0c1f76f9fd55899d2ce785832efebab37eb8ae13995853aef178bef0 \ --hash=sha256:af2fd1664d00a397d75f806985ddb36282091c2131a73a6485c23b4a34722263 \ - --hash=sha256:afefc1ed0a59785a7fb06ea7e1678e849c193e1e387db783579bc7b3056fcfcb \ --hash=sha256:ba04cb5891d4c0c21b6da95eda8d7b090021508a294fff33464fc7d241e0856b \ --hash=sha256:bf00f21eb5fb721dbaf73d1e9da6d02a1af7768f2ebcf9798be98beab8ba90f6 \ --hash=sha256:c1aaa4b9c75798400ac043ce04d74e7830376c85095a5a6ed7cba2f17a266bf4 \ @@ -131,8 +109,6 @@ fonttools==4.63.0 \ --hash=sha256:caeb583deeb5168e694b65cda8b4ee62abedfa66cf88488734466f2366b9c4e0 \ --hash=sha256:ccf41f2efdf56994d22d73bef4ced1052161958169428d06ba9724ea9e9a64be \ --hash=sha256:cd7e9857e5e63738b9d9fd707bc1f59c8b09e5177726d23664db393c59bb08bd \ - --hash=sha256:d76ac49f929aecaf82d83250b8347e099d7aecba0f4726c1d9b6df3b8bb5fe18 \ - --hash=sha256:dcf076a4474fe0d7367e5bbf5b052c7284fa1feca729c04176ce513521afd8a0 \ --hash=sha256:ee08ebfa58f6e1aeff5697ab9582105bb620008c1caafb681e4c557e7483027b \ --hash=sha256:ef3048ef05dbb552b89817713d9cac912e00d0fde4a3105c00d29e52e10c89af \ --hash=sha256:fd1e3094f42d806d3d7c79162fc59e5910fcbe3a7360c385b8da969bc4493745 @@ -143,15 +119,12 @@ iniconfig==2.3.0 \ # via pytest kiwisolver==1.5.0 \ --hash=sha256:012b1eb16e28718fa782b5e61dc6f2da1f0792ca73bd05d54de6cb9561665fc9 \ - --hash=sha256:01808c6d15f4c3e8559595d6d1fe6411c68e4a3822b4b9972b44473b24f4e679 \ --hash=sha256:0255a027391d52944eae1dbb5d4cc5903f57092f3674e8e544cdd2622826b3f0 \ --hash=sha256:0b85aad90cea8ac6797a53b5d5f2e967334fa4d1149f031c4537569972596cb8 \ --hash=sha256:0bf3acf1419fa93064a4c2189ac0b58e3be7872bf6ee6177b0d4c63dc4cea276 \ --hash=sha256:0c50b89ffd3e1a911c69a1dd3de7173c0cd10b130f56222e57898683841e4f96 \ --hash=sha256:0cbe94b69b819209a62cb27bdfa5dc2a8977d8de2f89dfd97ba4f53ed3af754e \ - --hash=sha256:0df54df7e686afa55e6f21fb86195224a6d9beb71d637e8d7920c95cf0f89aac \ --hash=sha256:0e3aafb33aed7479377e5e9a82e9d4bf87063741fc99fc7ae48b0f16e32bdd6f \ - --hash=sha256:12e91c215a96e39f57989c8912ae761286ac5a9584d04030ceb3368a357f017a \ --hash=sha256:1465387ac63576c3e125e5337a6892b9e99e0627d52317f3ca79e6930d889d15 \ --hash=sha256:16b85d37c2cbb3253226d26e64663f755d88a03439a9c47df6246b35defbdfb7 \ --hash=sha256:1b0feb50971481a2cc44d94e88bdb02cdd497618252ae226b8eb1201b957e368 \ @@ -159,13 +132,11 @@ kiwisolver==1.5.0 \ --hash=sha256:1d9daea4ea6b9be74fe2f01f7fbade8d6ffab263e781274cffca0dba9be9eec9 \ --hash=sha256:1dd9b0b119a350976a6d781e7278ec7aca0b201e1a9e2d23d9804afecb6ca681 \ --hash=sha256:1f1489f769582498610e015a8ef2d36f28f505ab3096d0e16b4858a9ec214f57 \ - --hash=sha256:2517e24d7315eb51c10664cdb865195df38ab74456c677df67bb47f12d088a27 \ --hash=sha256:2a075bd7bd19c70cf67c8badfa36cf7c5d8de3c9ddb8420c51e10d9c50e94920 \ --hash=sha256:332b4f0145c30b5f5ad9374881133e5aa64320428a57c2c2b61e9d891a51c2f3 \ --hash=sha256:377815a8616074cabbf3f53354e1d040c35815a134e01d7614b7692e4bf8acfa \ --hash=sha256:38f4a703656f493b0ad185211ccfca7f0386120f022066b018eb5296d8613e23 \ --hash=sha256:3ac2360e93cb41be81121755c6462cff3beaa9967188c866e5fce5cf13170859 \ - --hash=sha256:3c4923e404d6bcd91b6779c009542e5647fef32e4a5d75e115e3bbac6f2335eb \ --hash=sha256:3cdcb35dc9d807259c981a85531048ede628eabcffb3239adf3d17463518992d \ --hash=sha256:413b820229730d358efd838ecbab79902fe97094565fdc80ddb6b0a18c18a581 \ --hash=sha256:4432b835675f0ea7414aab3d37d119f7226d24869b7a829caeab49ebda407b0c \ @@ -173,16 +144,13 @@ kiwisolver==1.5.0 \ --hash=sha256:4e7f886f47ab881692f278ae901039a234e4025a68e6dfab514263a0b1c4ae05 \ --hash=sha256:4e9750bc21b886308024f8a54ccb9a2cc38ac9fa813bf4348434e3d54f337ff9 \ --hash=sha256:5060731cc3ed12ca3a8b57acd4aeca5bbc2f49216dd0bec1650a1acd89486bcd \ - --hash=sha256:50847dca5d197fcbd389c805aa1a1cf32f25d2e7273dc47ab181a517666b68cc \ --hash=sha256:5092eb5b1172947f57d6ea7d89b2f29650414e4293c47707eb499ec07a0ac796 \ --hash=sha256:5124d1ea754509b09e53738ec185584cc609aae4a3b510aaf4ed6aa047ef9303 \ --hash=sha256:530a3fd64c87cffa844d4b6b9768774763d9caa299e9b75d8eca6a4423b31314 \ --hash=sha256:56fa888f10d0f367155e76ce849fa1166fc9730d13bd2d65a2aa13b6f5424489 \ --hash=sha256:58f812017cd2985c21fbffb4864d59174d4903dd66fa23815e74bbc7a0e2dd57 \ - --hash=sha256:59cd8683f575d96df5bb48f6add94afc055012c29e28124fcae2b63661b9efb1 \ --hash=sha256:5ae8e62c147495b01a0f4765c878e9bfdf843412446a247e28df59936e99e797 \ --hash=sha256:5b233ea3e165e43e35dba1d2b8ecc21cf070b45b65ae17dd2747d2713d942021 \ - --hash=sha256:6176c1811d9d5a04fa391c490cc44f451e240697a16977f11c6f722efb9041db \ --hash=sha256:6783e069732715ad0c3ce96dbf21dbc2235ab0593f2baf6338101f70371f4028 \ --hash=sha256:6ab8ba9152203feec73758dad83af9a0bbe05001eb4639e547207c40cfb52083 \ --hash=sha256:70d593af6a6ca332d1df73d519fddb5148edb15cd90d5f0155e3746a6d4fcc65 \ @@ -190,28 +158,20 @@ kiwisolver==1.5.0 \ --hash=sha256:7a32f72973f0f950c1920475d5c5ea3d971b81b6f0ec53b8d0a956cc965f22e0 \ --hash=sha256:7a4aa69609f40fce3cbc3f87b2061f042eee32f94b8f11db707b66a26461591a \ --hash=sha256:7c60d3c9b06fb23bd9c6139281ccbdc384297579ae037f08ae90c69f6845c0b1 \ - --hash=sha256:800ee55980c18545af444d93fdd60c56b580db5cc54867d8cbf8a1dc0829938c \ --hash=sha256:80aa065ffd378ff784822a6d7c3212f2d5f5e9c3589614b5c228b311fd3063ac \ --hash=sha256:893ff3a711d1b515ba9da14ee090519bad4610ed1962fbe298a434e8c5f8db53 \ --hash=sha256:89fc958c702ee9a745e4700378f5d23fddbc46ff89e8fdbf5395c24d5c1452a3 \ - --hash=sha256:8c63c91f95173f9c2a67c7c526b2cea976828a0e7fced9cdcead2802dc10f8a4 \ --hash=sha256:8df31fe574b8b3993cc61764f40941111b25c2d9fea13d3ce24a49907cd2d615 \ --hash=sha256:9027d773c4ff81487181a925945743413f6069634d0b122d0b37684ccf4f1e18 \ --hash=sha256:940dda65d5e764406b9fb92761cbf462e4e63f712ab60ed98f70552e496f3bf1 \ - --hash=sha256:9eed0f7edbb274413b6ee781cca50541c8c0facd3d6fd289779e494340a2b85c \ - --hash=sha256:ad4ae4ffd1ee9cd11357b4c66b612da9888f4f4daf2f36995eda64bd45370cac \ --hash=sha256:b0f172dc8ffaccb8522d7c5d899de00133f2f1ca7b0a49b7da98e901de87bf2d \ --hash=sha256:b2af221f268f5af85e776a73d62b0845fc8baf8ef0abfae79d29c77d0e776aaf \ - --hash=sha256:b7d335370ae48a780c6e6a6bbfa97342f563744c39c35562f3f367665f5c1de2 \ --hash=sha256:bb5136fb5352d3f422df33f0c879a1b0c204004324150cc3b5e3c4f310c9049f \ --hash=sha256:bc4d8e252f532ab46a1de9349e2d27b91fce46736a9eedaa37beaca66f574ed4 \ --hash=sha256:bdd3e53429ff02aa319ba59dfe4ceeec345bf46cf180ec2cf6fd5b942e7975e9 \ --hash=sha256:be12f931839a3bdfe28b584db0e640a65a8bcbc24560ae3fdb025a449b3d754e \ - --hash=sha256:be4a51a55833dc29ab5d7503e7bcb3b3af3402d266018137127450005cdfe737 \ - --hash=sha256:beb7f344487cdcb9e1efe4b7a29681b74d34c08f0043a327a74da852a6749e7b \ --hash=sha256:c0e1403fd7c26d77c1f03e096dc58a5c726503fa0db0456678b8668f76f521e3 \ --hash=sha256:c31c13da98624f957b0fb1b5bae5383b2333c2c3f6793d9825dd5ce79b525cb7 \ - --hash=sha256:c438f6ca858697c9ab67eb28246c92508af972e114cac34e57a6d4ba17a3ac08 \ --hash=sha256:c95cab08d1965db3d84a121f1c7ce7479bdd4072c9b3dafd8fecce48a2e6b902 \ --hash=sha256:cdee07c4d7f6d72008d3f73b9bf027f4e11550224c7c50d8df1ae4a37c1402a6 \ --hash=sha256:ce9bf03dad3b46408c08649c6fbd6ca28a9fce0eb32fdfffa6775a13103b5310 \ @@ -221,17 +181,14 @@ kiwisolver==1.5.0 \ --hash=sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a \ --hash=sha256:d618fd27420381a4f6044faa71f46d8bfd911bd077c555f7138ed88729bfbe79 \ --hash=sha256:d76e2d8c75051d58177e762164d2e9ab92886534e3a12e795f103524f221dd8e \ - --hash=sha256:daae526907e262de627d8f70058a0f64acc9e2641c164c99c8f594b34a799a16 \ --hash=sha256:db485b3847d182b908b483b2ed133c66d88d49cacf98fd278fadafe11b4478d1 \ --hash=sha256:dda366d548e89a90d88a86c692377d18d8bd64b39c1fb2b92cb31370e2896bbd \ --hash=sha256:e315e5ec90d88e140f57696ff85b484ff68bb311e36f2c414aa4286293e6dee0 \ --hash=sha256:e4415a8db000bf49a6dd1c478bf70062eaacff0f462b92b0ba68791a905861f9 \ --hash=sha256:e7a116ae737f0000343218c4edf5bd45893bfeaff0993c0b215d7124c9f77646 \ --hash=sha256:e7c4c09a490dc4d4a7f8cbee56c606a320f9dc28cf92a7157a39d1ce7676a657 \ - --hash=sha256:ec4c85dc4b687c7f7f15f553ff26a98bfe8c58f5f7f0ac8905f0ba4c7be60232 \ --hash=sha256:ed3a984b31da7481b103f68776f7128a89ef26ed40f4dc41a2223cda7fb24819 \ --hash=sha256:f18c2d9782259a6dc132fdc7a63c168cbc74b35284b6d75c673958982a378384 \ - --hash=sha256:f1f9f4121ec58628c96baa3de1a55a4e3a333c5102c8e94b64e23bf7b2083309 \ --hash=sha256:f443b4825c50a51ee68585522ab4a1d1257fac65896f282b4c6763337ac9f5d2 \ --hash=sha256:f6764a4ccab3078db14a632420930f6186058750df066b8ea2a7106df91d3203 \ --hash=sha256:f7c7553b13f69c1b29a5bde08ddc6d9d0c8bfb84f9ed01c30db25944aeb852a7 \ @@ -239,8 +196,7 @@ kiwisolver==1.5.0 \ --hash=sha256:fa8eb9ecdb7efb0b226acec134e0d709e87a909fa4971a54c0c4f6e88635484c \ --hash=sha256:fc20894c3d21194d8041a28b65622d5b86db786da6e3cfe73f0c762951a61167 \ --hash=sha256:fc4d3f1fb9ca0ae9f97b095963bc6326f1dbfd3779d6679a1e016b9baaa153d3 \ - --hash=sha256:fd40bb9cd0891c4c3cb1ddf83f8bbfa15731a248fdc8162669405451e2724b09 \ - --hash=sha256:ff710414307fefa903e0d9bdf300972f892c23477829f49504e59834f4195398 + --hash=sha256:fd40bb9cd0891c4c3cb1ddf83f8bbfa15731a248fdc8162669405451e2724b09 # via matplotlib markdown-it-py==4.2.0 \ --hash=sha256:04a21681d6fbb623de53f6f364d352309d4094dd4194040a10fd51833e418d49 \ @@ -261,20 +217,13 @@ matplotlib==3.11.0 \ --hash=sha256:3338e3e3de128cf50d0d2fb92a122815daf9c755bd882a474343c05f8fd7ec79 \ --hash=sha256:3489c3dc487669b4a980bc3068f87856de7a1564248d3f6c629efb2a58b03f24 \ --hash=sha256:373db8f91214e8ccaf35ac833cc1dd59dd961e148bbd55dd027141591dde1313 \ - --hash=sha256:3d68266213e73823ac3be90615bab0cf31f88851e114cdb1dd25dacf3b01e1a7 \ --hash=sha256:41635d7909d19e52e924a521dde6d8f670b0f53ab1d0e8c331fa831554f681d1 \ --hash=sha256:446307e6b04b57b1f1239e228a1ec2af0d589a1008cebc3dfa3f5441d095cfb6 \ - --hash=sha256:4d7aea652b58e686444079be3376ef546bffa1eee9b9bb9c472b9fcf6cf410d3 \ - --hash=sha256:5106c444d0bf966eee2853548c03772af4ab7199118e086c62fbac8ccb07c055 \ --hash=sha256:565af866fd63e4bd3f987d580afe27c44c2552a3b3305f4ecbb85133601ea6f3 \ - --hash=sha256:57baa92fdc82948ed716eae6d2579d4d6f40965cd8d2f416755b4a72580a3233 \ - --hash=sha256:630eee0e67d35cce2019a0e670719f4816e3b86aff0fa72729f6c69786fceb45 \ --hash=sha256:652fb5696271d4c50f196d22a5ff4f8e4444c74f847423570d7dc0aa2bbd0159 \ --hash=sha256:68c0c7be01b30dcca3638934f7f591df73401235cbdbf0d1ab1c71e7db7f8b57 \ --hash=sha256:6a98f5476ce784a50ce09998f4ae1e6a9f25043cef8a480c98949902eda74620 \ --hash=sha256:6ce3b839b34ae1f430b4616893a2945a2999debaa7e94e7e29a2a8bbf286f7b5 \ - --hash=sha256:70a5b3e9a5dab708c0f039709ae7c68d5b4d254e291ef76492cdba230c8bb5e4 \ - --hash=sha256:81ae77077a1e16d37a5b61096ccb07c8d90a99b518fa8256b8f21578932f2f62 \ --hash=sha256:942b37c5db1899610bd1543ce8e13e4ecff9a4633e7f63bb6aa9205d2644ebd1 \ --hash=sha256:94f5000f67ca9faa300863ea17f8bce9175cb67b88bec4bc7780502d53dd7c9e \ --hash=sha256:9dd11fb612ce7bc60b1de5b4fc87ff959d22317b5de42aabf392f66f97af22eb \ @@ -287,12 +236,9 @@ matplotlib==3.11.0 \ --hash=sha256:be5f93a1d21981bfb802ded0d77a0caa92d4342a47d45754fac77e314a506344 \ --hash=sha256:c08e649a6313e1291e713623b97a38e5bb4aa580b2a100a94a3309bc6b9c8eb3 \ --hash=sha256:c945824670fb8915b4ac879e5e61f3c58e0913022f70a0de4c082b17372f8771 \ - --hash=sha256:cf662e5ac5707658cb931e19972c4bd99f7b4f8b7bf79d3c821d239fa6b71e64 \ --hash=sha256:d9695457a467ff86d23f35037a43deb6f1134dd6d3e2ac8ce1e2087cff09ffb9 \ - --hash=sha256:ddef37840695f5eef65f9f070fe2d2f510f584c2156203f9f622a5b0584efffd \ --hash=sha256:dfabef0230d0697aa0d717385194dd41162e00207a68bf4abf94c2bf4c27dca0 \ - --hash=sha256:e6b3e64dea5062c570f04358e2711859f3531b459f29516274fbad889079e4f3 \ - --hash=sha256:f857524b442f0f36e641868ce2171aafa88cb0bc0644f4e1d8a5df9b32649fef + --hash=sha256:e6b3e64dea5062c570f04358e2711859f3531b459f29516274fbad889079e4f3 # via trendify mdurl==0.1.2 \ --hash=sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8 \ @@ -305,85 +251,7 @@ narwhals==2.23.0 \ --hash=sha256:13e7ff5b4bb4a2f77b907c2e4d8a76e273dfc1323a3c997440a2f9fd26aed408 \ --hash=sha256:769e7b9ab102c93d8fa019f6b4cd1a657909b04a20bf6210e5a35aae06814ae9 # via plotly -numpy==2.4.6 ; python_full_version < '3.12' \ - --hash=sha256:001fbb8e08d942dd57599e781f2472269ee7f2755fae407b4f67b2f0b17da3f1 \ - --hash=sha256:0280e0356c0829a18d9de1cb7eee50ec22ca639878d7240307ca0943d73cd2c4 \ - --hash=sha256:043191bfa8eab18c776647b62723ac9dddece59743b13f49b2016094129c2b3f \ - --hash=sha256:06ca2f61ec4385a07a6977c55ba998a4466c123642b4a32694d3128fce18c079 \ - --hash=sha256:0a041d3d761dc3c35cc56ce0351506a02bcbc25f7b169f652435141a17db9096 \ - --hash=sha256:0ab0a9c4ffb1a6d95ef519fe4247dba8eb6b18ad93999f76b7f657039acabd47 \ - --hash=sha256:0c9136e14ed34a9e343a31c533d78a9813a69a3148332bce5e9821cb2f996e66 \ - --hash=sha256:110f8b71aacb688ec69062bb7f6938a0f8acb01b7c1c4beb453c65b6d234584d \ - --hash=sha256:112b06a867b235ef466ed3508ddf0238050df9c727cafb5301ac385b899189a1 \ - --hash=sha256:17f9ade344e7d9b464a084d69bcf18fc691cb1db67c62ed80820bf4926d78f0e \ - --hash=sha256:1e254a00cdf42b1e4d5b3d68d33af63268d41340d8885df2ab6470f2e1500147 \ - --hash=sha256:1e978ec1e8bd0e0e4de6bb75de9d30cbb74db6b6a2bb727618613703ca0167dd \ - --hash=sha256:25c692919ac5a01f170a3bfcd62d745b24fd095c353d50812637d6fcab442e75 \ - --hash=sha256:260a5d70215b61ab4fadf5c7baacd64821842975eea312125ed3c39a6391b063 \ - --hash=sha256:2803abfebfc990042cd494d8ce2d5f82e9d847af6d35ec486923aa19dbad5e73 \ - --hash=sha256:29a287e0cf63ff528da061de6b9f64a4618da591ca1046aafc54062e40ca7eab \ - --hash=sha256:29cb7f67d10b479ff07c17d33e39f78c07f71c40ef30d63c153d340e96cd3fb4 \ - --hash=sha256:3213d622a0283a39a93d188f3cf72b26862df52fbb4ca3697f51705016523d41 \ - --hash=sha256:33111801a01c12a8a1e3721f0a9232f8cfc8ae2c6b7098167e6f623c6073f402 \ - --hash=sha256:357cc07a6d7b0b182ff02249616a03742827ebb1277546b5c7cd7f7620a45698 \ - --hash=sha256:38efbc8de75c7a0fc1ac190162d892787f3f47b57cc291231aafee36b80982b7 \ - --hash=sha256:4081eb135ac24158bd51cdfbef16f1c64df7063b1143f24731387137c092bec8 \ - --hash=sha256:40fdc1ae7125e518ea98e53e69a4ebc27e1fd50510c47b7ea130cf21e5e1d42b \ - --hash=sha256:4cfe66903cc32a9921a6733d96b19bb6abf310397581bbad89c228f5abaf0ee8 \ - --hash=sha256:511dbaf848decaaaf4b4ca48032619fb3138710c4bf7da7617765edad1ef96b0 \ - --hash=sha256:55cced7c52e981362f708ad635198e97a752dfba412cc03c23bbf3bd8d5cd662 \ - --hash=sha256:56b39e5e0622a09a25bf5baf62f4bcf0cb8a41ae6e2819cf49bbc5a74c083f91 \ - --hash=sha256:5dbbdb29840ca3d91ee0fece42fc29278886d908280bfec0a5846c6f901a3eb0 \ - --hash=sha256:5f9fb9157b4ce2971008323afe46053787b526ef624fea915b261468a8421a0f \ - --hash=sha256:6180d8b35af935aed8ece3a85e0a43f87393ae0ac87c8d2c8bd2c993f7270ef3 \ - --hash=sha256:68a5124b13fa6cc2086764a20005d30bc0548146f7f5322f02fce212ca14317f \ - --hash=sha256:68bb27509ac1b9a3443094260f6326150663b06abe40b73a2f81160623da5b67 \ - --hash=sha256:6f41ae150c4e32db4f3310cdaf64b1593a03dbabe29eec77fc9b50fe64061df6 \ - --hash=sha256:7265a2f3d436e54ef9f2b52b5c937e6be778781bd97a590319d7348f1c1ca997 \ - --hash=sha256:72fbe16c6fac95aedf5937fa873445cec2110be35d8a4e9433d7501fd98dae6b \ - --hash=sha256:7d92c3819208a60205a12a245c91ad70cb0a85336659b19b834205573ac8456e \ - --hash=sha256:8155154c7c691289fe18f510b5d4657c68c67989f293f0535a91360392ff6538 \ - --hash=sha256:81a1cca95ed5bb92aa8b10dd2cdc9a0d3853a50fad926c28b5d7e8ea54389627 \ - --hash=sha256:89cd468399cfd2504718f0ba50e410dca55a170b61a02ad92bb18c8a65186e93 \ - --hash=sha256:8ad03c0965fb3c692200e74d458ca28c1dbb4ce96f9a479a8aa041ad5fabca02 \ - --hash=sha256:90f9849678c75fe7afa2d348ac842c168b0a4d3d61919687216dfc547976d853 \ - --hash=sha256:948424b06129ce883307e8cff868c31396d8dc7630a59c61d70d98dbe70f222c \ - --hash=sha256:9cd5ffd25db4e7ba6a375693b3fc0fc1791ec636c17db3720da19bde7180ec43 \ - --hash=sha256:a0df0043bdb289bde1f62da130d20df23d58b45429f752bc7a8fc5325a225ecd \ - --hash=sha256:a2c306dea656c12c68f51f4cea133cbe78ca7435eb28c735eac1d3ebe73be6e8 \ - --hash=sha256:a7830bab239b79cda9c08c2da014761cafb48da6150e1da17ac06283f43b6089 \ - --hash=sha256:a7c711e21628b52034bb5ab8d1bce291f752fcc5e92accc615778acee1ff4778 \ - --hash=sha256:aaf159caa35993cb1f56fb9b8e4610d35758e7ca005412eb1daa856a78c9c4b1 \ - --hash=sha256:ae506e6902902557576a26ff33eda8695e7ecb3cb36c3b573a0765dee114ebdb \ - --hash=sha256:b507f5c4c1d508876d1819b6bf9a49d365b96320b5d4993426b33a23ca4b8261 \ - --hash=sha256:bf162abab1c1a736333192707cef898e735a5ca00f38f27eeedf44b39d9e85eb \ - --hash=sha256:c1a2af6c6ef86344a6b0db6b97834208bf598db514f2b155042439b62605601a \ - --hash=sha256:c2d37ab77531417474168eb79d6d80b14f821a966818505d03013d0833edb7a8 \ - --hash=sha256:c4fc99836233ea196540b17ab0983aff60ed07941751930f5f4d05bc3b3b7359 \ - --hash=sha256:d581b735e177fdcdce6fed8e7e8880a3fb6ee4e3653a3ac6af01c6f4c03effc5 \ - --hash=sha256:d6da64deb6b8ed903e7560180a92f2d804ee1ba5eeb849ac2748b8c1aba1f6d7 \ - --hash=sha256:d8e8286dd7cea7895157318d1b91cdacac64c479f3cbc8dce548331728484751 \ - --hash=sha256:ddea102b48f9e339f3948bf22040944184627a30fdf7f858667673b9c5f033c8 \ - --hash=sha256:dfa20cc6ca228e6b155b11da03825975ce66aea520985dbbddf0f2a5a495c605 \ - --hash=sha256:e3e5193ef5a3dc73bceee50f7fdc2c90dbb76c42df8d8fae3d1067a583df579e \ - --hash=sha256:e3eeb0aabd6bd5ce64faae67e9935203a6991b4bc2a485a767fbafb2c5125f45 \ - --hash=sha256:e5805d5a22fd19c8ccff10a9561f9df94436b0545619ea579db2d3c35294bce2 \ - --hash=sha256:e85b752a1e912b70eaad4fafbd4d1238007ab221de2009b9a2f5ae7461239895 \ - --hash=sha256:eaf7fa2de5c0be8ae6ff8e9bea2ccd725e980541244521d8d4b5f3354a27babe \ - --hash=sha256:ebfb099f8dcf083deef3ac1ca4c1503f387cf76296fcb3816b66f5ecb5f54fdb \ - --hash=sha256:ece3d2cfe132e7d51f44a832b303895e6f2d499c5e74dfbdb06ee246147a304a \ - --hash=sha256:ed9749eef4cbd126da3dc1d6bcb3a57f5eb7ac6a6484146bdbf743f552dfc577 \ - --hash=sha256:ede83e07a75dd06bc501566c1eca2afc0d61677c1472ac9ad93fdee6e638a48d \ - --hash=sha256:ef4aea96ce4d3b074422cb4f2f64e216bf9e213004bb58ecfdf50ea02ea8eb9a \ - --hash=sha256:f3a3570c4a2a16746ac2c31a7c7c7b0c186b95ce902e33db6f28094ed7387dda \ - --hash=sha256:f407cb6b8e9d6d8c626bc73c945db1706035af8fd632295547bf1c9e46d092d6 \ - --hash=sha256:f74a575920ab21fe304421a3fc28793d82e299cae9eccb37084e9fc7f3617c20 - # via - # contourpy - # matplotlib - # numpydantic - # trendify -numpy==2.5.0 ; python_full_version >= '3.12' \ +numpy==2.5.0 \ --hash=sha256:016623417bb330d719d579daf2d6b9a01ddc52e41a9ed61a47f39fde46dcd865 \ --hash=sha256:0b525be4744b60bb0557ac872d53ef07d085b5f39622bc579c98d3809d05b988 \ --hash=sha256:126b88d95e8ff9b00c9e717aa540469f21d6180162f84c0caec51b16215d49cd \ @@ -445,36 +313,29 @@ packaging==26.2 \ # plotly # pytest pillow==12.3.0 \ - --hash=sha256:00808c5e14ef63ac5161091d242999076604ff74b883423a11e5d7bbb38bf756 \ - --hash=sha256:04f01d28a6aaff387bf842a13be313df23ba0597a44f1a976c9feb3c6ff4711a \ --hash=sha256:06ff022112bc9cbf83b60f8e028d94ad87b60621706487e65f673de61610ab59 \ --hash=sha256:0740a512dc522224c77d9aa5a8d70d8b7d73fb91f2c21125d8d025d3b8990e45 \ --hash=sha256:0847a763afefb695bc912d7c131e7e0632d4edc1d8698f58ddabec8e46b8b6d3 \ --hash=sha256:0dd2064cbc55aaec028ef5fbb60fa47bb6c3e7918e07ff17935284b227a9d2df \ --hash=sha256:0feb2e9d6ad6c9e3c06effe9d00f3f1e618a6643273576b016f591e9315a7139 \ - --hash=sha256:10e41f0fbf1eec8cfd234b8fe17a4caac7c9d0db4c204d3c173a8f9f6ef3232b \ --hash=sha256:1182d52bc2d5e5d7d0949503aa7e36d12f42205dc287e4883f407b1988820d39 \ --hash=sha256:164b31cd1a0490ab6efae01aa5df49da7061be0af1b30e035b6e9a1bfe34ee6e \ --hash=sha256:1657923d2d45afb66526e5b933e5b3052e6bdea196c90d3abb2424e18c77dae8 \ --hash=sha256:186941b6aef820ad110fb01fb06eb925374dc3a21b17e37ec9a53b250c6fe2d1 \ --hash=sha256:1cca606cd25738df4ed873d5ad46bbdb3d83b5cbca291f6b4ff13a4df6b0bbe8 \ --hash=sha256:21900ce7ba264168cd50defae43cd75d25c833ad4ad6e73ffc5596d12e25ac89 \ - --hash=sha256:236ff70b9312fb68943c703aa842ca6a758abfa45ac187a5e7c1452e96ef72b5 \ --hash=sha256:23aceaa007d6172b02c277f0cd359c79492bbb14f7072b4ede9fbcaf20648130 \ - --hash=sha256:23d27a3e0307ec2244cc51e7287b919aa68d097504ebe19df4e76a98a3eea5bd \ --hash=sha256:24870b09b224f7ae3c39ed07d10e819d06f8720bc551847b1d623832b5b0e28d \ --hash=sha256:251bf95b67017e27b13d82f5b326234ca62d70f9cf4c2b9032de2358a3b12c7b \ --hash=sha256:28ce87c5ab450a9dd970b52e5aca5fe63ed432d18a2eaddd1979a00a1ba24ace \ --hash=sha256:30f2aa603c41533cc25c05acd0da21636e84a315768feb631c937177db558931 \ --hash=sha256:331b624368d4f1d069149002f25f44bc61c8919ce8ddb3c45bdad8f6e2d89510 \ - --hash=sha256:37d6d0a00072fd2948eb22bce7e1475f34569d90c87c59f7a2ec59541b77f7a6 \ --hash=sha256:3b8182a766685eaa002637e28b4ec8d6b18819a0c71f579bf0dbaa5830297cce \ --hash=sha256:3edce1d53195db527e0191f84b71d02022de0540bf43a16ed734ed7537b07385 \ --hash=sha256:446c34dcc4324b084a53b705127dc15717b22c5e140ae0a3c38349d4efec071e \ --hash=sha256:4998562bf62a445225f22e07c896bb04b35b1b1f2eb6d760584c9c51d7a5f78c \ --hash=sha256:4b0a7fe987b14c31ebda6083f74f22b561fd3739bc0ac51e019622e3d72668c7 \ --hash=sha256:4e8c2a84d977f50b9daed6eeaf3baef67d00d5d74d932288f02cb94518ee3ace \ - --hash=sha256:4f883547d4b7f0495ebe7056b0cc2aea76094e7a4abc8e933540f3271df27d9c \ --hash=sha256:53aa02d20d10c3d814d536aa4e5ac9b84ca0ff5a88377963b085ad6822f93e64 \ --hash=sha256:571b9fcb07b97ef3a492028fb3d2dc0993ca23a06138b0315286566d29ef718a \ --hash=sha256:57b3d78c95ba9059768b10e28b813002261d3f3dfc55cc48b0c988f625175827 \ @@ -487,7 +348,6 @@ pillow==12.3.0 \ --hash=sha256:8728f216dcdb6e6d555cf971cb34076139ad74b31fc2c14da4fafc741c5f6217 \ --hash=sha256:877c3f311ff35410f690861c4409e7ccbf0cd2f878e50628a28e5a0bb689e658 \ --hash=sha256:8cd2f7bdda092d99c9fc2fb7391354f306d01443d22785d0cbfafa2e2c8bb418 \ - --hash=sha256:8e95e1385e4998ae9694eeaa4730ba5457ff61185b3a55e2e7bea0880aef452a \ --hash=sha256:962864dc93511324d51ddbb5b9f8731bf71675b93ca612a07441896f4688fb8c \ --hash=sha256:9cf95fe4d0f84c82d282745d9bb08ad9f926efa00be4697e767b814ce40d4330 \ --hash=sha256:9e881fca225083806662a5c43d627d215f258ff43c890f831966c7d7ba9c7402 \ @@ -496,12 +356,9 @@ pillow==12.3.0 \ --hash=sha256:a876864214e136f0eb367788dbd7df045f4806801518e2cfe9e13229cfe06d8f \ --hash=sha256:ae26d61dfa7a47befdc7572b521024e8745f3d809bd95ca9505a7bba9ef849ec \ --hash=sha256:af8d94b0db561cf68b88a267c5c44b49e134f525d0dc2cb7ed413a66bc23559a \ - --hash=sha256:b343699e8308bdc51978310e1c959c584e7869cc8c40780058c87da7781a1e94 \ - --hash=sha256:b3c777e849237620b022f7f297dd67705f9f5cf1685f09f02e46f93e92725468 \ --hash=sha256:b629de27fda84b42cde7edef0d85f13b958b47f6e9bbcbba9b673c562a89bd8b \ --hash=sha256:ba09209fbe443b4acccebe845d8a138b89a8f4fbaeedd44953490b5315d5e965 \ --hash=sha256:ba54cfebe86920a559a7c4d6b9050791c20513650a1952ebe3368c7dc70306f8 \ - --hash=sha256:bcb46e2f9feff8d06323983bd83ed00c201fdcab3d74973e7072a889b3979fcd \ --hash=sha256:bf16ba1b4d0b6b7c8e534936632270cf70eb00dbe09005bc345b2677b726855c \ --hash=sha256:cf1845d02ad822a369a49f2bb9345b1614744267682e7a03527dc3bf6eea1777 \ --hash=sha256:d69141514cc30b774ceea5e3ed3a6635c8d8a96edf664689b890f4089111fb35 \ @@ -511,15 +368,12 @@ pillow==12.3.0 \ --hash=sha256:e158cb00350dc278f3b91551101aa7d12415a66ebf2c91d8d5ac14e56ddd3ad0 \ --hash=sha256:e491916b378fba47242221bb9ead245211b70d504f495d105d17b14a24b4907c \ --hash=sha256:e795b7eb908249c4e43c7c99fac7c2c75dab0c43566e37db472a355f63693d71 \ - --hash=sha256:e7e480451b9fa137494bccd3a7d69adbe8ac65a87d97be61e11f1b1050a5bac3 \ --hash=sha256:e91206ee562682b51b98ef4b26a6ef48fd84e15fd4c4bc5ec768eb641d206838 \ --hash=sha256:e9871b1ffbfa9656b60aeee92ed5136a5742696006fa322b29ea3d8da0ecc9cf \ --hash=sha256:e9aeb04d6aef139de265b29683e119b638208f88cf73cdd1658aa07221165321 \ - --hash=sha256:ebaea975e03d3141d9d3a507df75c9b3ec90fa9d2ffd07567b3a978d9d790b26 \ --hash=sha256:f13c32a3abd6079a66d9526e18dad9b6d280384d49d7c54040cd57b6424041d9 \ --hash=sha256:f7401aebd7f581d7f83a439d87d474999317ee099218e5ad25d125290990ba65 \ --hash=sha256:fa4ecea169a355be7a3ade2c783e2ed12f0e40d2c5621cda8b3297faf7fbb9f5 \ - --hash=sha256:fbd139c8447d25dd750ab79ee274cc5e1fe80fc56340ab10b18a195e1b6eca3e \ --hash=sha256:fdafc9cce40277e0f7a0feabce0ee50dd2fa1800f3b38015e51296b5e814048d \ --hash=sha256:fe3cca2e4e8a592be0f269a1ca4835c25199d9f3ce815c8491048f785b0a0198 \ --hash=sha256:ffd0c5368496f41b0944be820fcb7a838aa6e623d250b01acf2643939c3f99d7 @@ -556,17 +410,8 @@ pydantic==2.13.4 \ pydantic-core==2.46.4 \ --hash=sha256:00c603d540afdd6b80eb39f078f33ebd46211f02f33e34a32d9f053bba711de0 \ --hash=sha256:0186750b482eefa11d7f435892b09c5c606193ef3375bcf94aa00ae6bfb66262 \ - --hash=sha256:041bde0a48fd37cf71cab1c9d56d3e8625a3793fef1f7dd232b3ff37e978ecda \ - --hash=sha256:0c563b08bca408dc7f65f700633d8442fffb2421fc47b8101377e9fd65051ff0 \ --hash=sha256:0cbe8b01f948de4286c74cdd6c667aceb38f5c1e26f0693b3983d9d74887c65e \ - --hash=sha256:0ce40cd7b21210e99342afafbd4d0f76d784eb5b1d60f3bdc566be4983c6c73b \ - --hash=sha256:0e96592440881c74a213e5ad528e2b24d3d4f940de2766bed9010ab1d9e51594 \ - --hash=sha256:133878133d271ade3d41d1bfb2a45ec38dbdbda40bc065921c6b04e4630127e2 \ - --hash=sha256:14d4edf427bdcf950a8a02d7cb44a08614388dd6e1bdcbf4f67504fa7887da9c \ - --hash=sha256:14f4c5d6db102bd796a627bbb3a17b4cf4574b9ae861d8b7c9a9661c6dd3362d \ - --hash=sha256:17299feefe090f2caa5b8e37222bb5f663e4935a8bfa6931d4102e5df1a9f398 \ --hash=sha256:184c081504d17f1c1066e430e117142b2c77d9448a97f7b65c6ac9fd9aee238d \ - --hash=sha256:18e5ceec2ab67e6d5f1a9085e5a24c9c4e2ac4545730bfe668680bca05e555f3 \ --hash=sha256:1a7dd0b3ee80d90150e3495a3a13ac34dbcbfd4f012996a6a1d8900e91b5c0fb \ --hash=sha256:1d8ba486450b14f3b1d63bc521d410ec7565e52f887b9fb671791886436a42f7 \ --hash=sha256:2108ba5c1c1eca18030634489dc544844144ee36357f2f9f780b93e7ddbb44b5 \ @@ -581,7 +426,6 @@ pydantic-core==2.46.4 \ --hash=sha256:3ecbc122d18468d06ca279dc26a8c2e2d5acb10943bb35e36ae92096dc3b5565 \ --hash=sha256:3fb702cd90b0446a3a1c5e470bfa0dd23c0233b676a9099ddcc964fa6ca13898 \ --hash=sha256:428e04521a40150c85216fc8b85e8d39fece235a9cf5e383761238c7fa9b96fb \ - --hash=sha256:4c63ebc82684aa89d9a3bcbd13d515b3be44250dc68dd3bd81526c1cb31286c3 \ --hash=sha256:4fc73cb559bdb54b1134a706a2802a4cddd27a0633f5abb7e53056268751ac6a \ --hash=sha256:4fcbe087dbc2068af7eda3aa87634eba216dbda64d1ae73c8684b621d33f6596 \ --hash=sha256:56cb4851bcaf3d117eddcef4fe66afd750a50274b0da8e22be256d10e5611987 \ @@ -592,34 +436,24 @@ pydantic-core==2.46.4 \ --hash=sha256:617d7e2ca7dcb8c5cf6bcb8c59b8832c94b36196bbf1cbd1bfb56ed341905edd \ --hash=sha256:62f875393d7f270851f20523dd2e29f082bcc82292d66db2b64ea71f64b6e1c1 \ --hash=sha256:633147d34cf4550417f12e2b1a0383973bdf5cdfde212cb09e9a581cf10820be \ - --hash=sha256:66ce7632c22d837c95301830e111ad0128a32b8207533b60896a96c4915192ea \ --hash=sha256:6b3ace8194b0e5204818c92802dcdca7fc6d88aabbb799d7c795540d9cd6d292 \ - --hash=sha256:6f2eeda33a839975441c86a4119e1383c50b47faf0cbb5176985565c6bb02c33 \ --hash=sha256:7027560ee92211647d0d34e3f7cd6f50da56399d26a9c8ad0da286d3869a53f3 \ --hash=sha256:7283d57845ecf5a163403eb0702dfc220cc4fbdd18919cb5ccea4f95ee1cdab4 \ --hash=sha256:7a5f930472650a82629163023e630d160863fce524c616f4e5186e5de9d9a49b \ - --hash=sha256:7bfb192b3f4b9e8a89b6277b6ce787564f62cfd272055f6e685726b111dc7826 \ --hash=sha256:811ff8e9c313ab425368bcbb36e5c4ebd7108c2bbf4e4089cfbb0b01eff63fac \ --hash=sha256:8233f2947cf85404441fd7e0085f53b10c93e0ee78611099b5c7237e36aacbf7 \ --hash=sha256:82cf5301172168103724d49a1444d3378cb20cdee30b116a1bd6031236298a5d \ --hash=sha256:85bb3611ff1802f3ee7fdd7dbff26b56f343fb432d57a4728fdd49b6ef35e2f4 \ - --hash=sha256:86e1a4418c6cd97d60c95c71164158eaf7324fae7b0923264016baa993eba6fc \ - --hash=sha256:8c5dac79fa1614d1e06ca695109c6105923bd9c7d1d6c918d4e637b7e6b32fd3 \ --hash=sha256:8d0820e8192167f80d88d64038e609c31452eeca865b4e1d9950a27a4609b00b \ --hash=sha256:8daafc69c93ee8a0204506a3b6b30f586ef54028f52aeeeb5c4cfc5184fd5914 \ - --hash=sha256:9037063db01f09b09e237c282b6792bd4da634b5402c4e7f0c61effed7701a04 \ - --hash=sha256:90884113d8b48f760e9587002789ddd741e76ab9f89518cd1e43b1f1a52ec44b \ --hash=sha256:926c9541b14b12b1681dca8a0b75feb510b06c6341b70a8e500c2fdcff837cce \ --hash=sha256:9401557acd873c3a7f3eb9383edef8ac4968f9510e340f4808d427e75667e7b4 \ --hash=sha256:9551187363ffc0de2a00b2e47c25aeaeb1020b69b668762966df15fc5659dd5a \ --hash=sha256:962ccbab7b642487b1d8b7df90ef677e03134cf1fd8880bf698649b22a69371f \ --hash=sha256:97e7cf2be5c77b7d1a9713a05605d49460d02c6078d38d8bef3cbe323c548424 \ --hash=sha256:9aa768456404a8bf48a4406685ac2bec8e72b62c69313734fa3b73cf33b3a894 \ - --hash=sha256:9bc519fbf2b7578398853d815009ae5e4d4603d12f4e3f91da8c06852d3da3e9 \ --hash=sha256:9d56801be94b86a9da183e5f3766e6310752b99ff647e38b09a9500d88e46e76 \ --hash=sha256:9fa8ae11da9e2b3126c6426f147e0fba88d96d65921799bb30c6abd1cb2c97fb \ - --hash=sha256:a0f62d0a58f4e7da165457e995725421e0064f2255d8eccebc49f41bbc23b109 \ - --hash=sha256:aaa2a54443eff1950ba5ddc6b6ccda0d9c84a364276a62f969bdf2a390650848 \ --hash=sha256:ad785e92e6dc634c21555edc8bd6b64957ab844541bcb96a1366c202951ae526 \ --hash=sha256:af8244b2bef6aaad6d92cda81372de7f8c8d36c9f0c3ea36e827c60e7d9467a0 \ --hash=sha256:b2f69dec1725e79a012d920df1707de5caf7ed5e08f3be4435e25803efc47458 \ @@ -628,23 +462,16 @@ pydantic-core==2.46.4 \ --hash=sha256:c1b3f518abeca3aa13c712fd202306e145abf59a18b094a6bafb2d2bbf59192c \ --hash=sha256:c50f2528cf200c5eed56faf3f4e22fcd5f38c157a8b78576e6ba3168ec35f000 \ --hash=sha256:c68fcd102d71ea85c5b2dfac3f4f8476eff42a9e078fd5faefff6d145063536b \ - --hash=sha256:c7a7bd4e39e8e4c12c39cd480356842b6a8a06e41b23a55a5e3e191718838ddf \ --hash=sha256:c94f0688e7b8d0a67abf40e57a7eaaecd17cc9586706a31b76c031f63df052b4 \ --hash=sha256:cbaf13819775b7f769bf4a1f066cb6df7a28d4480081a589828ef190226881cd \ --hash=sha256:cd2213145bcc2ba85884d0ac63d222fece9209678f77b9b4d76f054c561adb28 \ --hash=sha256:ce5c1d2a8b27468f433ca974829c44060b8097eedc39933e3c206a90ee49c4a9 \ - --hash=sha256:d396ec2b979760aaf3218e76c24e65bd0aca24983298653b3a9d7a45f9e47b30 \ - --hash=sha256:d51026d73fcfd93610abc7b27789c26b313920fcfb20e27462d74a7f8b06e983 \ - --hash=sha256:db06ffe51636ffe9ca531fe9023dd64bdd794be8754cb5df57c5498ae5b518a7 \ - --hash=sha256:e0d65b8c354be7fb5f720c3caa8bc940bc2d20ce749c8e06135f07f8ed95dd7c \ --hash=sha256:e739fee756ba1010f8bcccb534252e85a35fe45ae92c295a06059ce58b74ccd3 \ --hash=sha256:e846ae7835bf0703ae43f534ab79a867146dadd59dc9ca5c8b53d5c8f7c9ef02 \ --hash=sha256:e9c26f834c65f5752f3f06cb08cb86a913ceb7274d0db6e267808a708b46bc89 \ --hash=sha256:f027324c56cd5406ca49c124b0db10e56c69064fec039acc571c29020cc87c76 \ --hash=sha256:f99626688942fb746e545232e7726926f3be91b5975f8b55327665fafda991c7 \ - --hash=sha256:f9fa868638bf362d3d138ea55829cefb3d5f4b0d7f142234382a15e2485dbec4 \ --hash=sha256:fbdb89b3e1c94a30cc5edfce477c6e6a5dc4d8f84665b455c27582f211a1c72c \ - --hash=sha256:fc010ab034c8c7452522748bf937df58020d256ccae0874463d1f4d01758af8e \ --hash=sha256:fc3e9034a63de20e15e8ade85358bc6efc614008cab72898b4b4952bea0509ff # via pydantic pygments==2.20.0 \ diff --git a/rewrite_reference/OVERVIEW.md b/rewrite_reference/OVERVIEW.md deleted file mode 100644 index 75deb3b..0000000 --- a/rewrite_reference/OVERVIEW.md +++ /dev/null @@ -1,390 +0,0 @@ -# Trendify: Current Behavior Reference (pre-rewrite) - -This document is a functional inventory of `trendify` as it exists today, written to support a -clean rewrite. Goal: nothing in this list should silently disappear during the rewrite, and the -on-disk/JSON schema for `DataProduct` objects should stay compatible (or the break should be a -deliberate, documented decision) so that old `data_products.json` files stay loadable. - -The full pydantic JSON Schema for every model is exported alongside this file in -[`pydantic_schemas.json`](pydantic_schemas.json) (generated by `dump_schemas.py`, re-runnable any -time with `.venv/bin/python rewrite_reference/dump_schemas.py`). - -## 1. What Trendify does, end to end - -Trendify batch-processes many "run" directories of raw data (e.g. simulation outputs) into a -common set of typed **data products** (points, traces, table entries, histogram entries, axis -lines), sorts those products by user-defined **tags** into a nested directory tree, and then -renders each tag's products into assets: matplotlib static images, CSV tables, or an interactive -Plotly/Dash/Streamlit dashboard. - -Pipeline (`trendify.api.make_it_trendy`, also reachable piecewise via CLI): - -1. **Generate** (`make_products` → `DataProductGenerator.process_and_save`) - - User supplies a `ProductGenerator`: `Callable[[Path], list[DataProduct]]`. - - Mapped over each input directory (optionally in parallel via `ProcessPoolExecutor`). - - Each directory's returned products are wrapped in a `DataProductCollection` and serialized to - `data_products.json` (name configurable) in that same directory. -2. **Sort** (`sort_products` → `DataProductCollection.sort_by_tags_single_directory`) - - Reads each directory's `data_products.json`, gets the set of tags present - (`DataProductCollection.get_tags`), and for each tag writes a sub-collection into - `output_dir//.json`. - - Tuple tags become nested folders (`tags=[("a","b")]` → `output_dir/a/b/`). - - Index numbers are stable/deduped per source file via `ProductIndexMap`, a small JSON - file (`index_map`) per output folder that maps `{source_path: index}`, guarded with a - `FileLock` (`reserving_index.lock`) so parallel workers don't clash. -3. **Render static assets** (`make_tables_and_figures` → `DataProductCollection.process_collection`) - - Runs once per sorted tag-directory. - - Loads all JSONs in that directory back into a collection, then for each tag present: - - `TableEntry`s → `TableBuilder` → 3 CSVs: `_melted.csv`, `_pivot.csv` (if pivot - succeeds), `_stats.csv` (min/mean/max/3-sigma, if pivot columns are numeric). - - `Point2D`/`Trace2D`/`AxLine` → `XYDataPlotter.handle_points_and_traces` draws onto a shared - matplotlib `SingleAxisFigure`. - - `HistogramEntry` → `Histogrammer.handle_histogram_entries` draws onto the *same* shared - figure (so XY and histogram products with the same tag are overlaid on the same axes today - — this looks like it may be accidental behavior worth revisiting in the rewrite). - - All `Format2D`s seen for the tag are merged via `Format2D.union_from_iterable` (requires - titles/labels/legend to be identical across products sharing a tag, min/max of limits) and - applied once to the figure, which is then saved as `.jpg` and closed. -4. **Include files** (`make_include_files`, optional) — walks the static-assets tree and writes - `include.md` per directory with MkDocs `{% include %}` / `{{ read_csv(...) }}` snippets for - figures/tables/subdirectories, so a docs site can pull in results without manual linking. -5. **Interactive serving** — two independent paths, not really unified: - - **Plotly/Dash** (`serve_products_to_plotly_dashboard` / - `DataProductCollection.serve_plotly_dashboard` / `trendify.plotly_dashboard`): builds one big - `dash.Dash` app with a category+tag dropdown UI, one XY figure + table + histogram section per - tag, client-side callbacks for legend/grid/autorange toggles and histogram bin count. Runs via - Flask dev server or `waitress` if installed and `debug=False`. - - **Streamlit** (`trendify.streamlit`, wired up via `trendify make dashboard`): reads the - *sorted products* directory tree directly off disk (using the presence of `index_map` files to - discover tags), renders a collapsible sidebar of nested tags built from folder structure, and - on selection produces one `PlotlyFigure` via - `DataProductCollection.process_tag_for_streamlit` (note: this path calls - `add_to_plotly` per-product rather than the matplotlib-only `plot_to_ax`/`Histogrammer` route - used for static assets — so static and interactive rendering are two separate code paths that - must each be kept in sync with new product types). - - There is a **third**, older, largely dead HTTP-serving path: `trendify.server` / a - `Flask` app with hardcoded `DATABASE_ROOT` pointing at a specific developer's machine, and - `trendify.local_server` (`TrendifyProductServerLocal`), a slightly more generic Flask JSON API - over a products directory keyed by URL path segments. Both exist to feed a **Grafana** - dashboard (see `UQL_TableEntry` / `UQL_Point2D` / `UQL_Trace2D` query strings in - `data_product_collection.py`, and the fully commented-out `make_grafana_dashboard` / - `make_grafana_panels` functions that depended on a `grafana_api` package). Grafana support is - effectively disabled today (commented out) but the dependency (`grafana-api`) is still listed - in `pyproject.toml` and `ProductType` docstring/enum still lists Grafana-flavored intent. TODO.md - says "Sunset production server, grafana, etc." — treat this whole vertical (`server.py`, - `local_server.py`, `production_server.py`, Grafana comments, UQL strings) as a candidate for - deletion rather than porting, unless the user says otherwise. - -## 2. Package layout (`src/trendify/`) - -``` -trendify/ -├── __init__.py # re-exports trendify.api.* and trendify.server.* as top-level `trendify.X` -├── api/ -│ ├── __init__.py # re-exports all submodule __all__s — this is the umbrella "trendify.api" namespace -│ ├── api.py # pipeline orchestration functions (make_products, sort_products, make_tables_and_figures, make_it_trendy, serve_products_to_plotly_dashboard, make_include_files) -│ ├── base/ -│ │ ├── data_product.py # DataProduct (pydantic base class + subclass registry), ProductList, ProductGenerator -│ │ ├── helpers.py # Tag/Tags type aliases, HashableBase, ProductType enum, DATA_PRODUCTS_FNAME_DEFAULT -│ │ └── pen.py # Pen (matplotlib line/scatter style + rgba/contrast helpers) -│ ├── formats/ -│ │ ├── format2d.py # AxisScale enum, Format2D, PlottableData2D, XYData base classes -│ │ └── table.py # TableEntry -│ ├── styling/ -│ │ ├── grid.py # GridTheme enum, GridAxis, Grid (+ theme presets: MATLAB/LIGHT/DARK) -│ │ ├── legend.py # LegendLocation enum, Legend (+ plotly position mapping) -│ │ └── marker.py # Marker (matplotlib scatter style + plotly symbol mapping) -│ ├── plotting/ -│ │ ├── plotting.py # SingleAxisFigure (matplotlib fig+ax wrapper), PlotlyFigure (go.Figure wrapper) -│ │ ├── point.py # Point2D -│ │ ├── trace.py # Trace2D -│ │ ├── axline.py # LineOrientation enum, AxLine -│ │ └── histogram.py # HistogramStyle, HistogramEntry -│ └── generator/ -│ ├── data_product_collection.py # DataProductCollection, ProductEntryMetadata, ProductIndexMap, flatten/atleast_1d/_squeeze helpers -│ ├── data_product_generator.py # DataProductGenerator (runs user callable, writes JSON) -│ ├── histogrammer.py # Histogrammer (matplotlib histogram rendering) -│ ├── table_builder.py # TableBuilder (melted/pivot/stats CSV export) -│ └── xy_data_plotter.py # XYDataPlotter (matplotlib + plotly XY rendering) -├── cli.py # argparse CLI ("trendify ..."); NOTE pyproject.toml script entry point is `trendify.CLI:trendify` (wrong case) — currently broken unless case-insensitive FS -├── examples.py # sample data generator + example_data_product_generator + `_main`/`make_sample_data` CLI entry -├── gallery.py # standalone example generator (sine/scatter/histogram/table) used by `trendify make gallery` -├── plotly_dashboard.py # PlotlyDashboardGenerator + generate_plotly_dashboard (Dash app builder) -├── streamlit.py # Streamlit dashboard (tag sidebar + PlotlyFigure viewer), `make_streamlit` scaffolding writer -├── server.py # legacy Flask/Grafana server, hardcoded path, largely dead -├── local_server.py # more generic Flask JSON API over a products dir, also Grafana-oriented -└── production_server.py # waitress wrapper to run a Dash app or DataProductCollection in "production" -``` - -Other loose files at repo root (`alternative_tag_selectors.py`, `custom_handler.py`, -`implementation_recommendation.py`, `improved_tag_selection.py`, `sample_hierarchical_data.py`, -`test.py`) are **not part of the installed package** (they live outside `src/`) — they read like -scratch experiments/prototypes for streamlit tag selection UI. Worth a skim before the rewrite in -case they contain ideas already validated, but they are not part of the current shipped behavior. - -## 3. The data model - -### 3.1 `DataProduct` — the polymorphic base (`api/base/data_product.py`) - -- Pydantic `BaseModel`, `model_config = ConfigDict(extra="allow")` on the base class (subclasses - mostly override to `extra="forbid"`). -- Fields: `tags: Tags` (required), `metadata: dict[str, str] = {}`. -- `product_type: str` is a `@computed_field` property returning `type(self).__name__` — this is - what gets serialized into JSON and is the polymorphism discriminator. -- `__init_subclass__` auto-registers every subclass by class name into a module-level - `_data_product_subclass_registry: dict[str, type[DataProduct]]`. **This means product types are - looked up by bare class name, globally, at import time** — two different classes named - `Trace2D` in different modules would collide. Worth deciding deliberately in the rewrite whether - to keep name-based polymorphism or move to `pydantic`'s built-in discriminated unions / - `Annotated[Union[...], Field(discriminator=...)]`. -- `deserialize_child_classes(cls, key, **kwargs)`: manually walks `kwargs[key]` (a list of raw - dicts), pops `"product_type"` from each, looks up the class in the registry, and constructs it. - This is how `DataProductCollection.__init__` turns a raw `elements: [...]` JSON list into actual - typed objects instead of relying on pydantic's own polymorphic validation — a hand-rolled - substitute for `SerializeAsAny`/discriminated unions. -- `append_to_list(l)` / `set_metadata(new)`: fluent helpers so example code can do - `Trace2D(...).append_to_list(products).set_metadata({...})` inline in a list comprehension. -- `ProductList = list[SerializeAsAny[InstanceOf[DataProduct]]]` — the type alias used everywhere a - list of heterogeneous products is expected; `SerializeAsAny` is what makes `model_dump_json()` - include subclass-specific fields instead of truncating to the base class's fields. -- `ProductGenerator = Callable[[Path], ProductList]` — the type user code must implement. - -### 3.2 Concrete `DataProduct` subclasses (the actual schema surface) - -All in `pydantic_schemas.json`. Summarized here with every field, default, and constraint: - -| Class | Base | Fields (name: type = default) | `extra` | -|---|---|---|---| -| `TableEntry` | `DataProduct` | `row: float\|str`, `col: float\|str`, `value: float\|str\|bool`, `unit: str\|None = None` | forbid | -| `PlottableData2D` | `DataProduct` | `format2d: Format2D\|None = None` | (inherits `allow`) | -| `XYData` | `PlottableData2D` | *(no new fields — pure marker base class)* | (inherits) | -| `Point2D` | `XYData` | `x: float\|str`, `y: float\|str`, `marker: Marker\|None = Marker()` | forbid | -| `Trace2D` | `XYData` | `points: list[Point2D]`, `pen: Pen = Pen()` | forbid | -| `AxLine` | `PlottableData2D` | `value: float`, `orientation: LineOrientation`, `pen: Pen = Pen()` | forbid | -| `HistogramEntry` | `PlottableData2D` | `value: float\|str`, `tags: Tags` (redeclared), `style: HistogramStyle\|None = HistogramStyle()` | forbid | - -Every `DataProduct` (via base) also carries `tags: Tags`, `metadata: dict[str,str] = {}`, and the -computed `product_type: str`. - -`Tag = Union[tuple[Hashable, ...], Hashable]`, `Tags = list[Tag]` — tags are either scalars -(`"foo"`) or tuples (`("foo", "bar")`, which becomes nested folders `foo/bar/` when sorting). -Note: `Hashable` is extremely permissive — in practice tags are strings or tuples of strings; the -rewrite might want to narrow this type for safety. - -### 3.3 Style / format value objects (not `DataProduct`s themselves — used as fields) - -- **`Pen`** (`HashableBase`, `extra="forbid"`): `color: tuple[float,float,float]|tuple[float,float,float,float]|str = "k"`, `size: float = 1`, `alpha: float = 1`, `zorder: float = 0`, `linestyle: str|tuple[int,tuple[int,...]] = "-"`, `label: str|None = None`. Methods: `as_scatter_plot_kwargs()` (→ matplotlib `plot` kwargs), `_convert_linestyle_to_plotly()`, `rgba`/`rgb` properties, `get_contrast_color(background_luminance=1.0)` (WCAG-style relative luminance blend for legible text/hover color). -- **`Marker`** (`HashableBase`, `extra="forbid"`): `color: str = "k"`, `size: float = 5`, `alpha: float = 1`, `zorder: float = 0`, `label: str|None = None`, `symbol: str = "."`. `from_pen(pen, symbol=".")` classmethod (note: **this method is buggy** — `pen.model_dump().pop("linestyle")` pops and returns just the *value* of `linestyle`, discarding the rest of the dict, then tries to pass that single value as `**kwargs`, which will raise `TypeError` on any real invocation; grep shows it's called from `Trace2D.propagate_format2d_and_pen`, which itself appears unused elsewhere — confirm before quietly reimplementing "the same way"). `as_scatter_plot_kwargs()` (has a duplicate `"marker"` key literal — harmless dict-literal bug, last one wins). `plotly_symbol` property maps a fixed matplotlib marker-char set to plotly symbol names (unmapped symbols silently fall back to `"circle"`). `rgba`, `get_contrast_color()` mirror `Pen`'s. -- **`Legend`** (`HashableBase`): `visible: bool = True`, `title: str|None`, `framealpha: float = 1`, `loc: LegendLocation = BEST`, `ncol: int = 1`, `fancybox: bool = True`, `edgecolor: str = "black"`, `zorder: int = 10`, `bbox_to_anchor: tuple[float,float]|None = None`. `LegendLocation` StrEnum mirrors matplotlib's location strings. `to_kwargs()` → matplotlib legend kwargs subset (does *not* include `zorder`, `edgecolor`, or `bbox_to_anchor` — those are applied separately by the caller). `plotly_location` property: hand-maintained lookup table mapping each `LegendLocation` to `{x,y,xanchor,yanchor}` plus a `bbox_to_anchor`-override branch with its own anchor-inference logic. -- **`GridAxis`** (`HashableBase`, `extra="forbid"`): `show: bool = False`, `pen: Pen = Pen(color="gray", alpha=1.0, size=0.75, linestyle="-")`. -- **`Grid`** (`HashableBase`, `extra="forbid"`): `major: GridAxis = GridAxis(show=False)`, `minor: GridAxis = GridAxis(show=False)`, `enable_minor_ticks: bool = False`, `zorder: float = -1`. `GridTheme` enum (`MATLAB`, `LIGHT`, `DARK`) with `Grid.from_theme(name)` classmethod producing hand-tuned pen presets. `union_from_iterable` requires all inputs to have *identical* major/minor/enable_minor_ticks/zorder (raises via tuple-unpack of a length-checked set if they differ) — same "must all agree" merge pattern as `Format2D`. -- **`Format2D`** (`HashableBase`, `extra="forbid"`): `title_fig`, `title_ax`, `label_x`, `label_y: str|None = None`; `legend: Legend|None = Legend()`; `lim_x_min/max`, `lim_y_min/max: float|None = None`; `grid: Grid|None = None`; `scale_x`, `scale_y: AxisScale = LINEAR`; `figure_width: float = 6.4`, `figure_height: float = 4.8`. `union_from_iterable(format2ds)`: title/legend/labels must be identical across the set (single-element `set()` unpack — raises `ValueError` on mismatch); limits take `min`/`max` across the group; grid is unioned via `Grid.union_from_iterable`. This is the mechanism by which multiple products sharing a tag "agree" on one figure's formatting — it's a hard failure mode if two products on the same tag specify conflicting titles/labels, which the rewrite should probably surface as a clearer error rather than an unpacking `ValueError`. -- **`HistogramStyle`** (`HashableBase`): `color: str = "k"`, `label: str|None`, `histtype: str = "stepfilled"`, `alpha_edge: float = 0`, `alpha_face: float = 0.3`, `linewidth: float = 2`, `zorder: int = 1`, `bins: int|list[int]|tuple[int]|NDArray|None = None`. `as_plot_kwargs()` → matplotlib `hist()` kwargs. `rgba_face`/`rgba_edge`/`rgb_face`/`rgb_edge`/`get_face_contrast_color()` mirror `Pen`. - -All the `*_contrast_color` / `rgba` implementations (`Pen`, `Marker`, `HistogramStyle`) are -**copy-pasted three times** with identical logic — a natural dedup target for the rewrite (e.g. a -shared `ColorMixin` or free functions taking `color, alpha`). - -### 3.4 Collections and bookkeeping (`api/generator/data_product_collection.py`) - -- **`DataProductCollection`** (plain `BaseModel`, not `DataProduct`): `derived_from: Path|None`, - `elements: ProductList = []`. Custom `__init__` calls - `DataProduct.deserialize_child_classes(key="elements", **kwargs)` before `super().__init__` — this - is the polymorphic-load hook. Rich query API: `get_tags(type|None)`, `add_products(*products)` - (flattens nested lists/generators via `flatten()`), `drop_products(tag=, object_type=)`, - `get_products(tag=, object_type=)` (returns a new collection), `get_products_of_type(object_type, - tag=)` (returns a typed `list[R]`, more convenient than `get_products(...).elements`), `union(*collections)` - classmethod, `collect_from_all_jsons(*dirs, recursive=, data_products_filename=)` classmethod - (glob + union), `sort_by_tags` / `sort_by_tags_single_directory` (the sort step described in §1), - `process_collection` (the static-asset-rendering step described in §1), - `process_tables_for_tag`, `process_tag_for_streamlit` (the Streamlit-only rendering path), - `generate_plotly_dashboard`/`serve_plotly_dashboard`/`collect_and_serve_plotly_dashboard`. -- **`ProductEntryMetadata`**: `{source: Path}`, hashed via its own JSON dump (used as a dict key). -- **`ProductIndexMap`**: `{entries: dict[int, ProductEntryMetadata]}` persisted as a JSON file - named literally `index_map` (no extension) inside each sorted tag directory. `get_index(save_dir, - metadata)` classmethod does read-modify-write under a `FileLock` to hand out a stable integer - index per source file per tag directory — this is what keeps re-running the pipeline from - duplicating or renumbering already-sorted product files, and is also what the Streamlit UI's - `get_tags()` uses to discover which folders are "real" tags (it globs for files literally named - `index_map`). -- Free functions `flatten(obj)` (recursive flatten that stops at `str`/`bytes`/`DataProduct`), - `atleast_1d(obj)`, `_squeeze(obj)` — small utilities used throughout for accepting either a - scalar tag or tuple tag interchangeably. -- Three multi-line UQL query string constants (`UQL_TableEntry`, `UQL_Point2D`, `UQL_Trace2D`) and - a fully commented-out `make_grafana_panels` classmethod — dead Grafana integration, see §1. - -## 4. Rendering pipelines (kept deliberately separate today — a rewrite could unify them) - -| | Static (matplotlib) | Interactive (Plotly/Dash) | Interactive (Streamlit) | -|---|---|---|---| -| Entry point | `DataProductCollection.process_collection` | `plotly_dashboard.generate_plotly_dashboard` | `streamlit.make_dashboard` | -| Driven by | sorted-by-tag directory tree on disk | one `DataProductCollection` in memory | sorted-by-tag directory tree on disk (`index_map` discovery) | -| Per-tag output | one shared matplotlib `Axes` (`SingleAxisFigure`), XY + histogram overlaid, saved to `.jpg` | one Dash "tab" per tag with XY graph + table + histogram sections, dropdown-driven | one `PlotlyFigure` per tag built by `process_tag_for_streamlit`, calling each product's `add_to_plotly` | -| `add_to_plotly` used? | No (matplotlib-only `plot_to_ax`) | No (dashboard rebuilds traces from raw fields, duplicating logic in `_create_xy_figure`/`_create_histogram_figure`) | Yes — the only caller of `Point2D.add_to_plotly`, `Trace2D.add_to_plotly`, `AxLine.add_to_plotly`, `HistogramEntry.add_to_plotly` | -| Format handling | `Format2D.union_from_iterable` across all products for the tag, applied once | ad hoc: takes the *first* product's `format2d` and applies a hand-rolled subset of fields directly to Dash's `go.Figure.update_layout` | `Format2D.union_from_iterable`, applied via `PlotlyFigure.apply_format`/`apply_grid` | - -Consequence for the rewrite: **`add_to_plotly` is a real, load-bearing interface** (each -`PlottableData2D` subclass implements it) but it's currently only exercised by the Streamlit path -— the Dash dashboard (`plotly_dashboard.py`) reimplements equivalent logic from scratch with its -own color-cycling and legend-dedup bookkeeping. `PlotlyFigure.add_data_product` in `plotting.py` -is a stub that literally raises `NotImplementedError()` before an unreachable line calling -`product.add_to_plotly` — dead/aspirational code for a unification that never happened. If the -rewrite unifies these three renderers, `add_to_plotly` + `Format2D`/`Grid`/`Legend` "union and -apply" is the design to standardize on; the Dash-specific bespoke logic in `plotly_dashboard.py` -is the one to retire. - -## 5. CLI (`cli.py`) - -`trendify` (argparse, subcommands via `add_subparsers`): - -- `trendify make static -i -g -o [-n procs] [-f data-products-filename]` - — full pipeline: generate → sort → static assets. -- `trendify make dashboard -o ` — writes a `streamlit_run.py` launcher script into - `/assets/dashboard/` (does **not** itself generate/sort products — assumes that already happened). -- `trendify make gallery [-o ]` — runs the bundled example generator (`gallery.py`), then - shells out to `trendify products-sort` and `trendify assets-make-static` as subprocesses. -- `trendify serve plotly -i -g [--title] [--host] [--port]` — - generate then serve Dash dashboard directly (no sort/asset step). -- 1:1 API wrappers: `products-make`, `products-sort`, `products-serve`, `assets-make-static` — thin - argparse shims over `api.make_products` / `api.sort_products` / - `api.serve_products_to_plotly_dashboard` / `api.make_tables_and_figures`. -- Global `-v`/`-vv` verbosity flag → `logging.basicConfig` writing to both stdout and - `./trendify.log` (relative to CWD, always append mode — this is likely the "multiprocessing - logging broken on Windows" TODO item, since each subprocess calling `basicConfig` again / writing - to the same file without coordination is a known cross-platform hazard). -- `UserMethod.process_argument` resolves `-g/--product-generator` from a string like - `package.module:Class.method` or `/path/to/file.py:function`, supporting dotted attribute access - for `Class.method` — this is the mechanism for pointing the CLI at user code without a plugin - system. -- **Known bug**: `pyproject.toml`'s `[project.scripts]` maps `trendify = "trendify.CLI:trendify"` - but the module is `trendify/cli.py` (lowercase). This only works on case-insensitive filesystems - (macOS default, Windows) and would fail to import on Linux/case-sensitive installs. Worth fixing - outright rather than "preserving" in the rewrite. - -## 6. Other entry points / helper modules - -- **`examples.py`**: `make_example_data(workdir, n_folders=10)` synthesizes noisy multi-frequency - sine-wave CSVs (`results.csv` + `stdin.csv` per numbered subfolder under `workdir/models/`). - `example_data_product_generator(workdir)` is the reference implementation of a `ProductGenerator` - — demonstrates nearly every product type and format option (traces with multiple tags on the - same data, log/linear scale combinations, `AxLine`s, `Point2D` scatter of point-count vs run, - `TableEntry` + `HistogramEntry` + companion mean `AxLine`). Good source of "what must still work" - examples for rewrite acceptance tests. Also exposes a `trendify_make_sample_data` console script - (`make_sample_data`) and a `_main()` used as `python -m trendify.examples`-style smoke test - (generates 100 runs, makes products, sorts, renders tables/figures — no dashboard). -- **`gallery.py`**: independent of `examples.py`; hand-builds a small fixed set of products (sine - wave with peak detection, two Gaussian clusters + centroids, three-distribution histogram - comparison, a distributions×metrics stats table), asserts on `product.py`... actually copies - itself (`gallery.py`) into the output dir for user reference, writes `data_products.json` - directly (skipping the generate step), then **shells out** to the `trendify` console script - (`subprocess.run(["trendify", "products-sort", ...])` then `["trendify", - "assets-make-static", ...])`, with a Windows `shell=True` branch. This is the only place in the - codebase that invokes trendify as a subprocess rather than calling the Python API directly — - worth deciding whether the rewrite keeps that indirection (it does exercise the actual installed - console script, which is a plausible intentional integration-test-like design) or calls the API - functions in-process like everywhere else. -- **`streamlit.py`**: `make_streamlit(trendify_dir)` writes a small launcher script + a - `.streamlit/config.toml` theme file (hardcoded to `trendify` pink `#e92063`). `make_dashboard` - itself does the actual UI: sidebar built by recursively grouping the tag tuples found via - `get_tags` (which walks for files named `index_map`) into nested `st.expander`s with buttons, - `st.session_state.selected_tags` tracks selection, main page uses `@st.cache_data` on - `process_tag` (keyed by tag+dir) to avoid recomputation, then renders one `PlotlyFigure` with a - small form for height/tooltip-mode controls. Only handles the "collection produced a - `PlotlyFigure`" case; anything else shows `st.warning(...)`. Note the docs/issue-tracker URLs and - `st.logo` reference bundled SVG assets (`trendify.assets/logo.svg`, `logo_white_bg.svg`) that - must ship with the package (`importlib.resources`). -- **`production_server.py`**: thin `waitress.serve(app.server, ...)` wrapper; `run_production_server` - accepts either a `dash.Dash` or a `DataProductCollection` (builds the dashboard for you in the - latter case) and requires `waitress`+`dash` be importable or exits via `sys.exit(1)` with a - printed message (not a raised exception — inconsistent with the rest of the codebase's use of - `logger`). -- **`server.py`** / **`local_server.py`**: see §1, candidates for deletion. - -## 7. Cross-cutting behaviors worth preserving deliberately - -- **Parallelism model**: `map_callable` in `api.py` is the single place that decides - sequential-`for`-loop vs `ProcessPoolExecutor`, based on `n_procs`. Every stage (generate, sort, - render) goes through it, so `n_procs=1` is explicitly documented as the "get a real traceback" - debug mode. Any rewrite of the execution model should preserve an easy "run everything in-process - with full tracebacks" switch. -- **Tag-driven nested directories**: a tuple tag `("a", "b")` becomes a two-level directory, a - scalar tag `"a"` becomes one level. This convention is depended on by: the sort step (path - construction), the Streamlit tag discovery (splitting `Path.relative_to(products_dir).parts`), - and `make_include_files`. If tag typing gets stricter in the rewrite, this folder convention is - the main external contract to keep, since users' existing sorted-output directories (and anyone - scripting around them, e.g. MkDocs includes) depend on it. -- **JSON compatibility / discriminator field**: every serialized `DataProduct` JSON object has a - `product_type` string key holding the exact class name. If the rewrite wants old - `data_products.json` files (already generated and sitting on disk from prior runs) to keep - loading, either keep class names identical or write an explicit migration/alias step — don't - rename `Trace2D`/`Point2D`/etc. without a plan for existing data. - [`pydantic_schemas.json`](pydantic_schemas.json) is the field-level source of truth to diff - against for any planned schema change. - Similarly, `HashableBase.__hash__` (`hash((type(self),) + tuple(self.__dict__.values()))`) is - used to de-duplicate `Pen`/`Marker`/`Grid`/`HistogramStyle`/`Format2D` instances via `set()` in - several places (`Trace2D` grouping by pen in `plotly_dashboard`, `Histogrammer` grouping by - style, `Format2D.union_from_iterable`, `Grid.union_from_iterable`). This requires every field on - those classes to itself be hashable — e.g. `bbox_to_anchor` is a `tuple` not a `list`, - `linestyle` accepts a `tuple[int, tuple[int,...]]` not `list[int]`, precisely so instances stay - hashable. Any new field added to these classes must preserve hashability or these `set()`-based - dedup/merge operations will start raising `TypeError: unhashable type`. -- **`extra="forbid"` vs `extra="allow"`**: the `DataProduct` base class allows extra fields (so old - JSON with now-unknown extra keys still loads), but essentially every concrete subclass and every - style class overrides to `extra="forbid"` (stricter, catches typos). Worth keeping this pattern - intentionally rather than picking one globally. -- **Metadata dict** (`dict[str,str]`) on every product is surfaced as a hover tooltip in both the - Streamlit-fed Plotly figures (`add_to_plotly` implementations build an HTML `
`-joined - `hovertemplate`) and was intended for Grafana tooltips (per docstrings) — a real, used feature to - keep, not a documentation artifact. - -## 8. Known bugs / rough edges observed while reading (not exhaustive, worth triaging before porting "as-is") - -1. `Marker.from_pen` (`marker.py`) — `pen.model_dump().pop("linestyle")` discards the whole dict - and returns one value, then splats it as `**kwargs` into `Marker(...)`. Will raise at runtime if - ever actually called with a realistic `Pen`. Only caller: `Trace2D.propagate_format2d_and_pen` - (itself grep-unreferenced elsewhere in `src/`). -2. `Marker.as_scatter_plot_kwargs` has the dict key `"marker"` twice (last wins; harmless but - dead code). -3. `PlotlyFigure.apply_format`'s x/y-range-under-log-scale branches both check - `if format2d.scale_x == AxisScale.LOG` / `elif format2d.scale_x == AxisScale.LOG` (the `elif` - should almost certainly be `AxisScale.LINEAR` given the surrounding log10-transform logic) — the - non-log branch for setting a plain range is currently unreachable. -4. `PlotlyFigure.add_data_product` raises `NotImplementedError()` unconditionally with unreachable - code after it — stub method, never completed, never called (Dash path doesn't use it). -5. `Histogrammer.plotly_histogram` also raises `NotImplementedError()` — histogram Plotly rendering - actually happens via `HistogramEntry.add_to_plotly` instead; this method looks unused/orphaned. -6. `pyproject.toml` console script points at `trendify.CLI:trendify` — wrong case vs. actual - `trendify/cli.py`. -7. `server.py` has a hardcoded absolute path (`/Users/talbotknighton/...`) as `DATABASE_ROOT` — - can't work on any other machine as-is. -8. Grid/Format2D "union" merges silently assume homogeneity (single-element `set()` unpacking - raises a bare `ValueError: too many values to unpack` with no context if two products sharing a - tag disagree on title/label/grid) — a confusing failure mode for end users that a rewrite could - turn into a clear, actionable error. -9. Static asset rendering (`process_collection`) draws XY data and histogram data onto the *same* - `SingleAxisFigure`/axes for a shared tag — if a tag is used for both `Point2D`/`Trace2D` and - `HistogramEntry` simultaneously, they'll overlay on one plot, which is very likely unintended - given the interactive dashboards keep these as separate sections per tag. -10. `TableEntry.value: float | str | bool` but the class docstring only documents `float | str` — - minor doc/type drift. - -## 9. Dependencies (from `pyproject.toml`) - -Runtime: `dash`, `filelock`, `flask`, `grafana-api` (dead weight per §1/§6), `jinja2`, `matplotlib`, -`numpy`, `numpydantic`, `pandas`, `plotly`, `pydantic>=2`, `scipy` (only used, optionally, for KDE -in the Dash histogram section), `streamlit`, `strenum` (redundant with the stdlib `enum.StrEnum` -already used directly in `format2d.py`/`legend.py`/`grid.py` on Python ≥3.11 — the project already -requires `>=3.11`, so the `strenum` dependency in `helpers.py`/`examples.py` is likely vestigial), -`supervisor`, `waitress`. Python `>=3.11`. - -## 10. Suggested reading order if resuming this rewrite later - -1. `api/base/data_product.py` + `api/base/helpers.py` — the polymorphism and tagging foundation. -2. `api/generator/data_product_collection.py` — the central data structure and sort/query/process logic. -3. `pydantic_schemas.json` — exact current wire format, field by field. -4. `api/plotting/*.py` + `api/formats/format2d.py` — the concrete product types and their - `plot_to_ax`/`add_to_plotly` dual implementations. -5. `api/generator/{histogrammer,table_builder,xy_data_plotter}.py` + `api/api.py` — how products - become static assets. -6. `plotly_dashboard.py` vs `streamlit.py` — the two divergent interactive renderers (§4 table). -7. `cli.py` — how it's all wired together for end users. diff --git a/rewrite_reference/dump_schemas.py b/rewrite_reference/dump_schemas.py deleted file mode 100644 index a2c2b76..0000000 --- a/rewrite_reference/dump_schemas.py +++ /dev/null @@ -1,48 +0,0 @@ -""" -Dumps JSON schemas for every pydantic model in trendify's public API surface. -Run with the project's venv: .venv/bin/python dump_schemas.py -""" - -import json -from pathlib import Path - -import trendify as t -from trendify.api.base.data_product import DataProduct, _data_product_subclass_registry -from trendify.api.generator.data_product_collection import ( - DataProductCollection, - ProductEntryMetadata, - ProductIndexMap, -) - -# All pydantic BaseModel classes that make up the public schema surface. -models = { - # base - "DataProduct": DataProduct, - # data product subclasses (auto-registered via __init_subclass__) - **_data_product_subclass_registry, - # collection / bookkeeping - "DataProductCollection": DataProductCollection, - "ProductEntryMetadata": ProductEntryMetadata, - "ProductIndexMap": ProductIndexMap, - # style / format - "Pen": t.Pen, - "Marker": t.Marker, - "Legend": t.Legend, - "Grid": t.Grid, - "GridAxis": t.GridAxis, - "Format2D": t.Format2D, - "HistogramStyle": t.HistogramStyle, -} - -out = {} -for name, cls in sorted(models.items()): - try: - out[name] = cls.model_json_schema() - except Exception as e: - out[name] = {"__error__": str(e)} - -dest = Path("/home/gable/git/trendify/rewrite_reference/pydantic_schemas.json") -dest.write_text(json.dumps(out, indent=2, default=str)) -print(f"Wrote {len(out)} schemas to {dest}") -for name in sorted(out): - print(" -", name) diff --git a/rewrite_reference/pydantic_schemas.json b/rewrite_reference/pydantic_schemas.json deleted file mode 100644 index f432280..0000000 --- a/rewrite_reference/pydantic_schemas.json +++ /dev/null @@ -1,4479 +0,0 @@ -{ - "AxLine": { - "$defs": { - "AxisScale": { - "enum": [ - "linear", - "log" - ], - "title": "AxisScale", - "type": "string" - }, - "Format2D": { - "additionalProperties": false, - "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", - "properties": { - "title_fig": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Fig" - }, - "legend": { - "anyOf": [ - { - "$ref": "#/$defs/Legend" - }, - { - "type": "null" - } - ], - "default": { - "visible": true, - "title": null, - "framealpha": 1.0, - "loc": "best", - "ncol": 1, - "fancybox": true, - "edgecolor": "black", - "zorder": 10, - "bbox_to_anchor": null - } - }, - "title_ax": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Ax" - }, - "label_x": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label X" - }, - "label_y": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label Y" - }, - "lim_x_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Min" - }, - "lim_x_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Max" - }, - "lim_y_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Min" - }, - "lim_y_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Max" - }, - "grid": { - "anyOf": [ - { - "$ref": "#/$defs/Grid" - }, - { - "type": "null" - } - ], - "default": null - }, - "scale_x": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "scale_y": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "figure_width": { - "default": 6.4, - "title": "Figure Width", - "type": "number" - }, - "figure_height": { - "default": 4.8, - "title": "Figure Height", - "type": "number" - } - }, - "title": "Format2D", - "type": "object" - }, - "Grid": { - "additionalProperties": false, - "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", - "properties": { - "major": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "minor": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "enable_minor_ticks": { - "default": false, - "title": "Enable Minor Ticks", - "type": "boolean" - }, - "zorder": { - "default": -1, - "title": "Zorder", - "type": "number" - } - }, - "title": "Grid", - "type": "object" - }, - "GridAxis": { - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "Legend": { - "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", - "properties": { - "visible": { - "default": true, - "title": "Visible", - "type": "boolean" - }, - "title": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title" - }, - "framealpha": { - "default": 1, - "title": "Framealpha", - "type": "number" - }, - "loc": { - "$ref": "#/$defs/LegendLocation", - "default": "best" - }, - "ncol": { - "default": 1, - "title": "Ncol", - "type": "integer" - }, - "fancybox": { - "default": true, - "title": "Fancybox", - "type": "boolean" - }, - "edgecolor": { - "default": "black", - "title": "Edgecolor", - "type": "string" - }, - "zorder": { - "default": 10, - "title": "Zorder", - "type": "integer" - }, - "bbox_to_anchor": { - "anyOf": [ - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bbox To Anchor" - } - }, - "title": "Legend", - "type": "object" - }, - "LegendLocation": { - "enum": [ - "best", - "upper right", - "upper left", - "lower left", - "lower right", - "right", - "center left", - "center right", - "lower center", - "upper center", - "center" - ], - "title": "LegendLocation", - "type": "string" - }, - "LineOrientation": { - "description": "Defines orientation for axis lines\n\nAttributes:\n HORIZONTAL (LineOrientation): Horizontal line\n VERTICAL (LineOrientation): Vertical line", - "enum": [ - "horizontal", - "vertical" - ], - "title": "LineOrientation", - "type": "string" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - } - }, - "additionalProperties": false, - "description": "Defines a horizontal or vertical line to be drawn on a plot.\n\nAttributes:\n value (float): Value at which to draw the line (x-value for vertical, y-value for horizontal)\n orientation (LineOrientation): Whether line should be horizontal or vertical\n pen (Pen): Style and label information for drawing to matplotlib axes\n tags (Tags): Tags to be used for sorting data\n metadata (dict[str, str]): A dictionary of metadata", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - }, - "format2d": { - "anyOf": [ - { - "$ref": "#/$defs/Format2D" - }, - { - "type": "null" - } - ], - "default": null - }, - "value": { - "title": "Value", - "type": "number" - }, - "orientation": { - "$ref": "#/$defs/LineOrientation" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "k", - "size": 1.0, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "required": [ - "tags", - "value", - "orientation" - ], - "title": "AxLine", - "type": "object" - }, - "DataProduct": { - "additionalProperties": true, - "description": "Base class for data products to be generated and handled.\n\nAttributes:\n product_type (str): Product type should be the same as the class name.\n The product type is used to search for products from a [DataProductCollection][trendify.api.DataProductCollection].\n tags (Tags): Tags to be used for sorting data.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - } - }, - "required": [ - "tags" - ], - "title": "DataProduct", - "type": "object" - }, - "DataProductCollection": { - "$defs": { - "DataProduct": { - "additionalProperties": true, - "description": "Base class for data products to be generated and handled.\n\nAttributes:\n product_type (str): Product type should be the same as the class name.\n The product type is used to search for products from a [DataProductCollection][trendify.api.DataProductCollection].\n tags (Tags): Tags to be used for sorting data.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - } - }, - "required": [ - "tags" - ], - "title": "DataProduct", - "type": "object" - } - }, - "description": "A collection of data products.\n\nUse this class to serialize data products to JSON, de-serialized them from JSON, filter the products, etc.\n\nAttributes:\n elements (ProductList): A list of data products.", - "properties": { - "derived_from": { - "anyOf": [ - { - "format": "path", - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Derived From" - }, - "elements": { - "items": { - "$ref": "#/$defs/DataProduct" - }, - "title": "Elements", - "type": "array" - } - }, - "title": "DataProductCollection", - "type": "object" - }, - "Format2D": { - "$defs": { - "AxisScale": { - "enum": [ - "linear", - "log" - ], - "title": "AxisScale", - "type": "string" - }, - "Grid": { - "additionalProperties": false, - "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", - "properties": { - "major": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "minor": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "enable_minor_ticks": { - "default": false, - "title": "Enable Minor Ticks", - "type": "boolean" - }, - "zorder": { - "default": -1, - "title": "Zorder", - "type": "number" - } - }, - "title": "Grid", - "type": "object" - }, - "GridAxis": { - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "Legend": { - "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", - "properties": { - "visible": { - "default": true, - "title": "Visible", - "type": "boolean" - }, - "title": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title" - }, - "framealpha": { - "default": 1, - "title": "Framealpha", - "type": "number" - }, - "loc": { - "$ref": "#/$defs/LegendLocation", - "default": "best" - }, - "ncol": { - "default": 1, - "title": "Ncol", - "type": "integer" - }, - "fancybox": { - "default": true, - "title": "Fancybox", - "type": "boolean" - }, - "edgecolor": { - "default": "black", - "title": "Edgecolor", - "type": "string" - }, - "zorder": { - "default": 10, - "title": "Zorder", - "type": "integer" - }, - "bbox_to_anchor": { - "anyOf": [ - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bbox To Anchor" - } - }, - "title": "Legend", - "type": "object" - }, - "LegendLocation": { - "enum": [ - "best", - "upper right", - "upper left", - "lower left", - "lower right", - "right", - "center left", - "center right", - "lower center", - "upper center", - "center" - ], - "title": "LegendLocation", - "type": "string" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - } - }, - "additionalProperties": false, - "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", - "properties": { - "title_fig": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Fig" - }, - "legend": { - "anyOf": [ - { - "$ref": "#/$defs/Legend" - }, - { - "type": "null" - } - ], - "default": { - "visible": true, - "title": null, - "framealpha": 1.0, - "loc": "best", - "ncol": 1, - "fancybox": true, - "edgecolor": "black", - "zorder": 10, - "bbox_to_anchor": null - } - }, - "title_ax": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Ax" - }, - "label_x": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label X" - }, - "label_y": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label Y" - }, - "lim_x_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Min" - }, - "lim_x_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Max" - }, - "lim_y_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Min" - }, - "lim_y_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Max" - }, - "grid": { - "anyOf": [ - { - "$ref": "#/$defs/Grid" - }, - { - "type": "null" - } - ], - "default": null - }, - "scale_x": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "scale_y": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "figure_width": { - "default": 6.4, - "title": "Figure Width", - "type": "number" - }, - "figure_height": { - "default": 4.8, - "title": "Figure Height", - "type": "number" - } - }, - "title": "Format2D", - "type": "object" - }, - "Grid": { - "$defs": { - "GridAxis": { - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - } - }, - "additionalProperties": false, - "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", - "properties": { - "major": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "minor": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "enable_minor_ticks": { - "default": false, - "title": "Enable Minor Ticks", - "type": "boolean" - }, - "zorder": { - "default": -1, - "title": "Zorder", - "type": "number" - } - }, - "title": "Grid", - "type": "object" - }, - "GridAxis": { - "$defs": { - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - } - }, - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "HistogramEntry": { - "$defs": { - "AxisScale": { - "enum": [ - "linear", - "log" - ], - "title": "AxisScale", - "type": "string" - }, - "Format2D": { - "additionalProperties": false, - "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", - "properties": { - "title_fig": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Fig" - }, - "legend": { - "anyOf": [ - { - "$ref": "#/$defs/Legend" - }, - { - "type": "null" - } - ], - "default": { - "visible": true, - "title": null, - "framealpha": 1.0, - "loc": "best", - "ncol": 1, - "fancybox": true, - "edgecolor": "black", - "zorder": 10, - "bbox_to_anchor": null - } - }, - "title_ax": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Ax" - }, - "label_x": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label X" - }, - "label_y": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label Y" - }, - "lim_x_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Min" - }, - "lim_x_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Max" - }, - "lim_y_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Min" - }, - "lim_y_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Max" - }, - "grid": { - "anyOf": [ - { - "$ref": "#/$defs/Grid" - }, - { - "type": "null" - } - ], - "default": null - }, - "scale_x": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "scale_y": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "figure_width": { - "default": 6.4, - "title": "Figure Width", - "type": "number" - }, - "figure_height": { - "default": 4.8, - "title": "Figure Height", - "type": "number" - } - }, - "title": "Format2D", - "type": "object" - }, - "Grid": { - "additionalProperties": false, - "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", - "properties": { - "major": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "minor": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "enable_minor_ticks": { - "default": false, - "title": "Enable Minor Ticks", - "type": "boolean" - }, - "zorder": { - "default": -1, - "title": "Zorder", - "type": "number" - } - }, - "title": "Grid", - "type": "object" - }, - "GridAxis": { - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "HistogramStyle": { - "description": "Label and style data for generating histogram bars\n\nAttributes:\n color (str): Color of bars\n label (str|None): Legend entry\n histtype (str): Histogram type corresponding to matplotlib argument of same name\n alpha_edge (float): Opacity of bar edge\n alpha_face (float): Opacity of bar face\n linewidth (float): Line width of bar outline\n bins (int | list[int] | Tuple[int] | NDArray[Shape[\"*\"], int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist])", - "properties": { - "color": { - "default": "k", - "title": "Color", - "type": "string" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - }, - "histtype": { - "default": "stepfilled", - "title": "Histtype", - "type": "string" - }, - "alpha_edge": { - "default": 0, - "title": "Alpha Edge", - "type": "number" - }, - "alpha_face": { - "default": 0.3, - "title": "Alpha Face", - "type": "number" - }, - "linewidth": { - "default": 2, - "title": "Linewidth", - "type": "number" - }, - "zorder": { - "default": 1, - "title": "Zorder", - "type": "integer" - }, - "bins": { - "anyOf": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - }, - { - "maxItems": 1, - "minItems": 1, - "prefixItems": [ - { - "type": "integer" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bins" - } - }, - "title": "HistogramStyle", - "type": "object" - }, - "Legend": { - "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", - "properties": { - "visible": { - "default": true, - "title": "Visible", - "type": "boolean" - }, - "title": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title" - }, - "framealpha": { - "default": 1, - "title": "Framealpha", - "type": "number" - }, - "loc": { - "$ref": "#/$defs/LegendLocation", - "default": "best" - }, - "ncol": { - "default": 1, - "title": "Ncol", - "type": "integer" - }, - "fancybox": { - "default": true, - "title": "Fancybox", - "type": "boolean" - }, - "edgecolor": { - "default": "black", - "title": "Edgecolor", - "type": "string" - }, - "zorder": { - "default": 10, - "title": "Zorder", - "type": "integer" - }, - "bbox_to_anchor": { - "anyOf": [ - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bbox To Anchor" - } - }, - "title": "Legend", - "type": "object" - }, - "LegendLocation": { - "enum": [ - "best", - "upper right", - "upper left", - "lower left", - "lower right", - "right", - "center left", - "center right", - "lower center", - "upper center", - "center" - ], - "title": "LegendLocation", - "type": "string" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - } - }, - "additionalProperties": false, - "description": "Use this class to specify a value to be collected into a matplotlib histogram.\n\nAttributes:\n tags (Tags): Tags used to sort data products\n value (float | str): Value to be binned\n style (HistogramStyle): Style of histogram display", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - }, - "format2d": { - "anyOf": [ - { - "$ref": "#/$defs/Format2D" - }, - { - "type": "null" - } - ], - "default": null - }, - "value": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Value" - }, - "style": { - "anyOf": [ - { - "$ref": "#/$defs/HistogramStyle" - }, - { - "type": "null" - } - ] - } - }, - "required": [ - "tags", - "value" - ], - "title": "HistogramEntry", - "type": "object" - }, - "HistogramStyle": { - "description": "Label and style data for generating histogram bars\n\nAttributes:\n color (str): Color of bars\n label (str|None): Legend entry\n histtype (str): Histogram type corresponding to matplotlib argument of same name\n alpha_edge (float): Opacity of bar edge\n alpha_face (float): Opacity of bar face\n linewidth (float): Line width of bar outline\n bins (int | list[int] | Tuple[int] | NDArray[Shape[\"*\"], int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist])", - "properties": { - "color": { - "default": "k", - "title": "Color", - "type": "string" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - }, - "histtype": { - "default": "stepfilled", - "title": "Histtype", - "type": "string" - }, - "alpha_edge": { - "default": 0, - "title": "Alpha Edge", - "type": "number" - }, - "alpha_face": { - "default": 0.3, - "title": "Alpha Face", - "type": "number" - }, - "linewidth": { - "default": 2, - "title": "Linewidth", - "type": "number" - }, - "zorder": { - "default": 1, - "title": "Zorder", - "type": "integer" - }, - "bins": { - "anyOf": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - }, - { - "maxItems": 1, - "minItems": 1, - "prefixItems": [ - { - "type": "integer" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bins" - } - }, - "title": "HistogramStyle", - "type": "object" - }, - "Legend": { - "$defs": { - "LegendLocation": { - "enum": [ - "best", - "upper right", - "upper left", - "lower left", - "lower right", - "right", - "center left", - "center right", - "lower center", - "upper center", - "center" - ], - "title": "LegendLocation", - "type": "string" - } - }, - "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", - "properties": { - "visible": { - "default": true, - "title": "Visible", - "type": "boolean" - }, - "title": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title" - }, - "framealpha": { - "default": 1, - "title": "Framealpha", - "type": "number" - }, - "loc": { - "$ref": "#/$defs/LegendLocation", - "default": "best" - }, - "ncol": { - "default": 1, - "title": "Ncol", - "type": "integer" - }, - "fancybox": { - "default": true, - "title": "Fancybox", - "type": "boolean" - }, - "edgecolor": { - "default": "black", - "title": "Edgecolor", - "type": "string" - }, - "zorder": { - "default": 10, - "title": "Zorder", - "type": "integer" - }, - "bbox_to_anchor": { - "anyOf": [ - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bbox To Anchor" - } - }, - "title": "Legend", - "type": "object" - }, - "Marker": { - "additionalProperties": false, - "description": "Defines marker for scattering to matplotlib\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n zorder (float): Prioritization\n label (Union[str, None]): Legend label\n symbol (str): Matplotlib symbol string", - "properties": { - "color": { - "default": "k", - "title": "Color", - "type": "string" - }, - "size": { - "default": 5, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - }, - "symbol": { - "default": ".", - "title": "Symbol", - "type": "string" - } - }, - "title": "Marker", - "type": "object" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - }, - "PlottableData2D": { - "$defs": { - "AxisScale": { - "enum": [ - "linear", - "log" - ], - "title": "AxisScale", - "type": "string" - }, - "Format2D": { - "additionalProperties": false, - "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", - "properties": { - "title_fig": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Fig" - }, - "legend": { - "anyOf": [ - { - "$ref": "#/$defs/Legend" - }, - { - "type": "null" - } - ], - "default": { - "visible": true, - "title": null, - "framealpha": 1.0, - "loc": "best", - "ncol": 1, - "fancybox": true, - "edgecolor": "black", - "zorder": 10, - "bbox_to_anchor": null - } - }, - "title_ax": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Ax" - }, - "label_x": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label X" - }, - "label_y": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label Y" - }, - "lim_x_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Min" - }, - "lim_x_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Max" - }, - "lim_y_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Min" - }, - "lim_y_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Max" - }, - "grid": { - "anyOf": [ - { - "$ref": "#/$defs/Grid" - }, - { - "type": "null" - } - ], - "default": null - }, - "scale_x": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "scale_y": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "figure_width": { - "default": 6.4, - "title": "Figure Width", - "type": "number" - }, - "figure_height": { - "default": 4.8, - "title": "Figure Height", - "type": "number" - } - }, - "title": "Format2D", - "type": "object" - }, - "Grid": { - "additionalProperties": false, - "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", - "properties": { - "major": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "minor": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "enable_minor_ticks": { - "default": false, - "title": "Enable Minor Ticks", - "type": "boolean" - }, - "zorder": { - "default": -1, - "title": "Zorder", - "type": "number" - } - }, - "title": "Grid", - "type": "object" - }, - "GridAxis": { - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "Legend": { - "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", - "properties": { - "visible": { - "default": true, - "title": "Visible", - "type": "boolean" - }, - "title": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title" - }, - "framealpha": { - "default": 1, - "title": "Framealpha", - "type": "number" - }, - "loc": { - "$ref": "#/$defs/LegendLocation", - "default": "best" - }, - "ncol": { - "default": 1, - "title": "Ncol", - "type": "integer" - }, - "fancybox": { - "default": true, - "title": "Fancybox", - "type": "boolean" - }, - "edgecolor": { - "default": "black", - "title": "Edgecolor", - "type": "string" - }, - "zorder": { - "default": 10, - "title": "Zorder", - "type": "integer" - }, - "bbox_to_anchor": { - "anyOf": [ - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bbox To Anchor" - } - }, - "title": "Legend", - "type": "object" - }, - "LegendLocation": { - "enum": [ - "best", - "upper right", - "upper left", - "lower left", - "lower right", - "right", - "center left", - "center right", - "lower center", - "upper center", - "center" - ], - "title": "LegendLocation", - "type": "string" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - } - }, - "additionalProperties": true, - "description": "Base class for children of DataProduct to be plotted ax xy data on a 2D plot\n\nAttributes:\n format2d (Format2D|None): Format to apply to plot\n tags (Tags): Tags to be used for sorting data.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - }, - "format2d": { - "anyOf": [ - { - "$ref": "#/$defs/Format2D" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "tags" - ], - "title": "PlottableData2D", - "type": "object" - }, - "Point2D": { - "$defs": { - "AxisScale": { - "enum": [ - "linear", - "log" - ], - "title": "AxisScale", - "type": "string" - }, - "Format2D": { - "additionalProperties": false, - "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", - "properties": { - "title_fig": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Fig" - }, - "legend": { - "anyOf": [ - { - "$ref": "#/$defs/Legend" - }, - { - "type": "null" - } - ], - "default": { - "visible": true, - "title": null, - "framealpha": 1.0, - "loc": "best", - "ncol": 1, - "fancybox": true, - "edgecolor": "black", - "zorder": 10, - "bbox_to_anchor": null - } - }, - "title_ax": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Ax" - }, - "label_x": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label X" - }, - "label_y": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label Y" - }, - "lim_x_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Min" - }, - "lim_x_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Max" - }, - "lim_y_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Min" - }, - "lim_y_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Max" - }, - "grid": { - "anyOf": [ - { - "$ref": "#/$defs/Grid" - }, - { - "type": "null" - } - ], - "default": null - }, - "scale_x": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "scale_y": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "figure_width": { - "default": 6.4, - "title": "Figure Width", - "type": "number" - }, - "figure_height": { - "default": 4.8, - "title": "Figure Height", - "type": "number" - } - }, - "title": "Format2D", - "type": "object" - }, - "Grid": { - "additionalProperties": false, - "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", - "properties": { - "major": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "minor": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "enable_minor_ticks": { - "default": false, - "title": "Enable Minor Ticks", - "type": "boolean" - }, - "zorder": { - "default": -1, - "title": "Zorder", - "type": "number" - } - }, - "title": "Grid", - "type": "object" - }, - "GridAxis": { - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "Legend": { - "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", - "properties": { - "visible": { - "default": true, - "title": "Visible", - "type": "boolean" - }, - "title": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title" - }, - "framealpha": { - "default": 1, - "title": "Framealpha", - "type": "number" - }, - "loc": { - "$ref": "#/$defs/LegendLocation", - "default": "best" - }, - "ncol": { - "default": 1, - "title": "Ncol", - "type": "integer" - }, - "fancybox": { - "default": true, - "title": "Fancybox", - "type": "boolean" - }, - "edgecolor": { - "default": "black", - "title": "Edgecolor", - "type": "string" - }, - "zorder": { - "default": 10, - "title": "Zorder", - "type": "integer" - }, - "bbox_to_anchor": { - "anyOf": [ - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bbox To Anchor" - } - }, - "title": "Legend", - "type": "object" - }, - "LegendLocation": { - "enum": [ - "best", - "upper right", - "upper left", - "lower left", - "lower right", - "right", - "center left", - "center right", - "lower center", - "upper center", - "center" - ], - "title": "LegendLocation", - "type": "string" - }, - "Marker": { - "additionalProperties": false, - "description": "Defines marker for scattering to matplotlib\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n zorder (float): Prioritization\n label (Union[str, None]): Legend label\n symbol (str): Matplotlib symbol string", - "properties": { - "color": { - "default": "k", - "title": "Color", - "type": "string" - }, - "size": { - "default": 5, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - }, - "symbol": { - "default": ".", - "title": "Symbol", - "type": "string" - } - }, - "title": "Marker", - "type": "object" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - } - }, - "additionalProperties": false, - "description": "Defines a point to be scattered onto xy plot.\n\nAttributes:\n tags (Tags): Tags to be used for sorting data.\n x (float | str): X value for the point.\n y (float | str): Y value for the point.\n marker (Marker | None): Style and label information for scattering points to matplotlib axes.\n Only the label information is used in Grafana.\n Eventually style information will be used in grafana.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - }, - "format2d": { - "anyOf": [ - { - "$ref": "#/$defs/Format2D" - }, - { - "type": "null" - } - ], - "default": null - }, - "x": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "X" - }, - "y": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Y" - }, - "marker": { - "anyOf": [ - { - "$ref": "#/$defs/Marker" - }, - { - "type": "null" - } - ], - "default": { - "color": "k", - "size": 5.0, - "alpha": 1.0, - "zorder": 0.0, - "label": null, - "symbol": "." - } - } - }, - "required": [ - "tags", - "x", - "y" - ], - "title": "Point2D", - "type": "object" - }, - "ProductEntryMetadata": { - "properties": { - "source": { - "format": "path", - "title": "Source", - "type": "string" - } - }, - "required": [ - "source" - ], - "title": "ProductEntryMetadata", - "type": "object" - }, - "ProductIndexMap": { - "$defs": { - "ProductEntryMetadata": { - "properties": { - "source": { - "format": "path", - "title": "Source", - "type": "string" - } - }, - "required": [ - "source" - ], - "title": "ProductEntryMetadata", - "type": "object" - } - }, - "properties": { - "entries": { - "additionalProperties": { - "$ref": "#/$defs/ProductEntryMetadata" - }, - "title": "Entries", - "type": "object" - } - }, - "title": "ProductIndexMap", - "type": "object" - }, - "TableEntry": { - "additionalProperties": false, - "description": "Defines an entry to be collected into a table.\n\nCollected table entries will be printed in three forms when possible: melted, pivot (when possible), and stats (on pivot columns, when possible).\n\nAttributes:\n tags (Tags): Tags used to sort data products\n row (float | str): Row Label\n col (float | str): Column Label\n value (float | str): Value\n unit (str | None): Units for value\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - }, - "row": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Row" - }, - "col": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Col" - }, - "value": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - }, - { - "type": "boolean" - } - ], - "title": "Value" - }, - "unit": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Unit" - } - }, - "required": [ - "tags", - "row", - "col", - "value" - ], - "title": "TableEntry", - "type": "object" - }, - "Trace2D": { - "$defs": { - "AxisScale": { - "enum": [ - "linear", - "log" - ], - "title": "AxisScale", - "type": "string" - }, - "Format2D": { - "additionalProperties": false, - "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", - "properties": { - "title_fig": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Fig" - }, - "legend": { - "anyOf": [ - { - "$ref": "#/$defs/Legend" - }, - { - "type": "null" - } - ], - "default": { - "visible": true, - "title": null, - "framealpha": 1.0, - "loc": "best", - "ncol": 1, - "fancybox": true, - "edgecolor": "black", - "zorder": 10, - "bbox_to_anchor": null - } - }, - "title_ax": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Ax" - }, - "label_x": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label X" - }, - "label_y": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label Y" - }, - "lim_x_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Min" - }, - "lim_x_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Max" - }, - "lim_y_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Min" - }, - "lim_y_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Max" - }, - "grid": { - "anyOf": [ - { - "$ref": "#/$defs/Grid" - }, - { - "type": "null" - } - ], - "default": null - }, - "scale_x": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "scale_y": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "figure_width": { - "default": 6.4, - "title": "Figure Width", - "type": "number" - }, - "figure_height": { - "default": 4.8, - "title": "Figure Height", - "type": "number" - } - }, - "title": "Format2D", - "type": "object" - }, - "Grid": { - "additionalProperties": false, - "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", - "properties": { - "major": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "minor": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "enable_minor_ticks": { - "default": false, - "title": "Enable Minor Ticks", - "type": "boolean" - }, - "zorder": { - "default": -1, - "title": "Zorder", - "type": "number" - } - }, - "title": "Grid", - "type": "object" - }, - "GridAxis": { - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "Legend": { - "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", - "properties": { - "visible": { - "default": true, - "title": "Visible", - "type": "boolean" - }, - "title": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title" - }, - "framealpha": { - "default": 1, - "title": "Framealpha", - "type": "number" - }, - "loc": { - "$ref": "#/$defs/LegendLocation", - "default": "best" - }, - "ncol": { - "default": 1, - "title": "Ncol", - "type": "integer" - }, - "fancybox": { - "default": true, - "title": "Fancybox", - "type": "boolean" - }, - "edgecolor": { - "default": "black", - "title": "Edgecolor", - "type": "string" - }, - "zorder": { - "default": 10, - "title": "Zorder", - "type": "integer" - }, - "bbox_to_anchor": { - "anyOf": [ - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bbox To Anchor" - } - }, - "title": "Legend", - "type": "object" - }, - "LegendLocation": { - "enum": [ - "best", - "upper right", - "upper left", - "lower left", - "lower right", - "right", - "center left", - "center right", - "lower center", - "upper center", - "center" - ], - "title": "LegendLocation", - "type": "string" - }, - "Marker": { - "additionalProperties": false, - "description": "Defines marker for scattering to matplotlib\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n zorder (float): Prioritization\n label (Union[str, None]): Legend label\n symbol (str): Matplotlib symbol string", - "properties": { - "color": { - "default": "k", - "title": "Color", - "type": "string" - }, - "size": { - "default": 5, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - }, - "symbol": { - "default": ".", - "title": "Symbol", - "type": "string" - } - }, - "title": "Marker", - "type": "object" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - }, - "Point2D": { - "additionalProperties": false, - "description": "Defines a point to be scattered onto xy plot.\n\nAttributes:\n tags (Tags): Tags to be used for sorting data.\n x (float | str): X value for the point.\n y (float | str): Y value for the point.\n marker (Marker | None): Style and label information for scattering points to matplotlib axes.\n Only the label information is used in Grafana.\n Eventually style information will be used in grafana.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - }, - "format2d": { - "anyOf": [ - { - "$ref": "#/$defs/Format2D" - }, - { - "type": "null" - } - ], - "default": null - }, - "x": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "X" - }, - "y": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "string" - } - ], - "title": "Y" - }, - "marker": { - "anyOf": [ - { - "$ref": "#/$defs/Marker" - }, - { - "type": "null" - } - ], - "default": { - "color": "k", - "size": 5.0, - "alpha": 1.0, - "zorder": 0.0, - "label": null, - "symbol": "." - } - } - }, - "required": [ - "tags", - "x", - "y" - ], - "title": "Point2D", - "type": "object" - } - }, - "additionalProperties": false, - "description": "A collection of points comprising a trace.\nUse the [Trace2D.from_xy][trendify.api.Trace2D.from_xy] constructor.\n\nAttributes:\n points (List[Point2D]): List of points. Usually the points would have null values\n for `marker` and `format2d` fields to save space.\n pen (Pen): Style and label information for drawing to matplotlib axes.\n Only the label information is used in Grafana.\n Eventually style information will be used in grafana.\n tags (Tags): Tags to be used for sorting data.\n metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - }, - "format2d": { - "anyOf": [ - { - "$ref": "#/$defs/Format2D" - }, - { - "type": "null" - } - ], - "default": null - }, - "points": { - "items": { - "$ref": "#/$defs/Point2D" - }, - "title": "Points", - "type": "array" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "k", - "size": 1.0, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "required": [ - "tags", - "points" - ], - "title": "Trace2D", - "type": "object" - }, - "XYData": { - "$defs": { - "AxisScale": { - "enum": [ - "linear", - "log" - ], - "title": "AxisScale", - "type": "string" - }, - "Format2D": { - "additionalProperties": false, - "description": "Formatting data for matplotlib figure and axes\n\nAttributes:\n title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None.\n legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend().\n title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None.\n label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None.\n label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None.\n lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None.\n lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None.\n grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None.\n scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR\n figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4.\n figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8.", - "properties": { - "title_fig": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Fig" - }, - "legend": { - "anyOf": [ - { - "$ref": "#/$defs/Legend" - }, - { - "type": "null" - } - ], - "default": { - "visible": true, - "title": null, - "framealpha": 1.0, - "loc": "best", - "ncol": 1, - "fancybox": true, - "edgecolor": "black", - "zorder": 10, - "bbox_to_anchor": null - } - }, - "title_ax": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title Ax" - }, - "label_x": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label X" - }, - "label_y": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label Y" - }, - "lim_x_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Min" - }, - "lim_x_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim X Max" - }, - "lim_y_min": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Min" - }, - "lim_y_max": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Lim Y Max" - }, - "grid": { - "anyOf": [ - { - "$ref": "#/$defs/Grid" - }, - { - "type": "null" - } - ], - "default": null - }, - "scale_x": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "scale_y": { - "$ref": "#/$defs/AxisScale", - "default": "linear" - }, - "figure_width": { - "default": 6.4, - "title": "Figure Width", - "type": "number" - }, - "figure_height": { - "default": 4.8, - "title": "Figure Height", - "type": "number" - } - }, - "title": "Format2D", - "type": "object" - }, - "Grid": { - "additionalProperties": false, - "description": "Container for major and minor grid line configuration.\n\nAttributes:\n major (GridAxis): Configuration for major grid lines.\n minor (GridAxis): Configuration for minor grid lines.\n enable_minor_ticks (bool): Whether to enable minor ticks on the axes.", - "properties": { - "major": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "minor": { - "$ref": "#/$defs/GridAxis", - "default": { - "show": false, - "pen": { - "alpha": 1.0, - "color": "gray", - "label": null, - "linestyle": "-", - "size": 0.75, - "zorder": 0.0 - } - } - }, - "enable_minor_ticks": { - "default": false, - "title": "Enable Minor Ticks", - "type": "boolean" - }, - "zorder": { - "default": -1, - "title": "Zorder", - "type": "number" - } - }, - "title": "Grid", - "type": "object" - }, - "GridAxis": { - "additionalProperties": false, - "description": "Controls styling and visibility for one type of grid (major or minor).\n\nAttributes:\n show (bool): Whether to display this grid axis.\n pen (Pen): Style and label information for drawing to matplotlib axes.", - "properties": { - "show": { - "default": false, - "title": "Show", - "type": "boolean" - }, - "pen": { - "$ref": "#/$defs/Pen", - "default": { - "color": "gray", - "size": 0.75, - "alpha": 1.0, - "zorder": 0.0, - "linestyle": "-", - "label": null - } - } - }, - "title": "GridAxis", - "type": "object" - }, - "Legend": { - "description": "Configuration container for Matplotlib legend styling and placement.\n\nThe `Legend` class controls the appearance and position of the plot legend.\nPlacement is governed by a combination of the `loc` and `bbox_to_anchor`\nparameters, mirroring Matplotlib's `Axes.legend()`.\n\nAttributes:\n visible (bool): Whether the legend should be displayed. Defaults to True.\n title (str | None): Title displayed above the legend entries.\n framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent.\n loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options.\n ncol (int): Number of columns to arrange legend entries into.\n fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame.\n edgecolor (str): Color of the legend frame border. Default is \"black\".\n bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`.\n\n Good starter values for common placements:\n\n - **Inside (default)**:\n ```python\n bbox_to_anchor=None\n ```\n - **Outside right**:\n ```python\n loc=LegendLocation.CENTER_LEFT\n bbox_to_anchor=(1.02, 0.5)\n ```\n - **Outside left**:\n ```python\n loc=LegendLocation.CENTER_RIGHT\n bbox_to_anchor=(-0.02, 0.5)\n ```\n - **Outside top**:\n ```python\n loc=LegendLocation.LOWER_CENTER\n bbox_to_anchor=(0.5, 1.02)\n ```\n - **Outside bottom**:\n ```python\n loc=LegendLocation.UPPER_CENTER\n bbox_to_anchor=(0.5, -0.02)\n ```", - "properties": { - "visible": { - "default": true, - "title": "Visible", - "type": "boolean" - }, - "title": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Title" - }, - "framealpha": { - "default": 1, - "title": "Framealpha", - "type": "number" - }, - "loc": { - "$ref": "#/$defs/LegendLocation", - "default": "best" - }, - "ncol": { - "default": 1, - "title": "Ncol", - "type": "integer" - }, - "fancybox": { - "default": true, - "title": "Fancybox", - "type": "boolean" - }, - "edgecolor": { - "default": "black", - "title": "Edgecolor", - "type": "string" - }, - "zorder": { - "default": 10, - "title": "Zorder", - "type": "integer" - }, - "bbox_to_anchor": { - "anyOf": [ - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Bbox To Anchor" - } - }, - "title": "Legend", - "type": "object" - }, - "LegendLocation": { - "enum": [ - "best", - "upper right", - "upper left", - "lower left", - "lower right", - "right", - "center left", - "center right", - "lower center", - "upper center", - "center" - ], - "title": "LegendLocation", - "type": "string" - }, - "Pen": { - "additionalProperties": false, - "description": "Defines the pen drawing to matplotlib.\n\nAttributes:\n color (str): Color of line\n size (float): Line width\n alpha (float): Opacity from 0 to 1 (inclusive)\n linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)).\n zorder (float): Prioritization\n label (Union[str, None]): Legend label", - "properties": { - "color": { - "anyOf": [ - { - "maxItems": 3, - "minItems": 3, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "maxItems": 4, - "minItems": 4, - "prefixItems": [ - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - }, - { - "type": "number" - } - ], - "type": "array" - }, - { - "type": "string" - } - ], - "default": "k", - "title": "Color" - }, - "size": { - "default": 1, - "title": "Size", - "type": "number" - }, - "alpha": { - "default": 1, - "title": "Alpha", - "type": "number" - }, - "zorder": { - "default": 0, - "title": "Zorder", - "type": "number" - }, - "linestyle": { - "anyOf": [ - { - "type": "string" - }, - { - "maxItems": 2, - "minItems": 2, - "prefixItems": [ - { - "type": "integer" - }, - { - "items": { - "type": "integer" - }, - "type": "array" - } - ], - "type": "array" - } - ], - "default": "-", - "title": "Linestyle" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "title": "Label" - } - }, - "title": "Pen", - "type": "object" - } - }, - "additionalProperties": true, - "description": "Base class for children of DataProduct to be plotted ax xy data on a 2D plot", - "properties": { - "tags": { - "items": { - "anyOf": [ - { - "items": {}, - "type": "array" - }, - {} - ] - }, - "title": "Tags", - "type": "array" - }, - "metadata": { - "additionalProperties": { - "type": "string" - }, - "default": {}, - "title": "Metadata", - "type": "object" - }, - "format2d": { - "anyOf": [ - { - "$ref": "#/$defs/Format2D" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "tags" - ], - "title": "XYData", - "type": "object" - } -} \ No newline at end of file diff --git a/sample_hierarchical_data.py b/sample_hierarchical_data.py deleted file mode 100644 index 6ae0c08..0000000 --- a/sample_hierarchical_data.py +++ /dev/null @@ -1,239 +0,0 @@ -""" -Generate sample data with hierarchical tags for testing the Trendify Plotly dashboard. -This script creates various data products organized under hierarchical tag structures. -""" - -import numpy as np -import sys -from pathlib import Path - -# Add the project to path to allow importing -project_root = Path(__file__).parent -if str(project_root) not in sys.path: - sys.path.insert(0, str(project_root)) - -from trendify.api.api import ( - DataProductCollection, - Point2D, - Trace2D, - TableEntry, - HistogramEntry, - AxLine, - LineOrientation, - Format2D, - Pen, -) - - -def generate_sample_data(): - """Generate a collection of data products with hierarchical tags.""" - # First, create a list of data products - data_products = [] - - # Define hierarchical tag categories - categories = { - "Performance": ["CPU", "Memory", "Disk", "Network"], - "Analytics": ["Users", "Sessions", "Conversions", "Revenue"], - "Infrastructure": ["Servers", "Databases", "Load Balancers", "Cache"], - "Monitoring": ["Errors", "Latency", "Uptime", "Throughput"], - "Finance": ["Revenue", "Costs", "ROI", "Growth"], - } - - # Create Format2D objects for different plot types - time_series_format = Format2D( - title_ax="Time Series Data", - label_x="Time (s)", - label_y="Value", - title_legend="Metrics", - ) - - scatter_format = Format2D( - title_ax="Correlation Analysis", - label_x="X Value", - label_y="Y Value", - title_legend="Data Points", - ) - - histogram_format = Format2D( - title_ax="Distribution Analysis", - label_x="Value", - label_y="Frequency", - title_legend="Distributions", - ) - - # Generate data for each category - for category, subcategories in categories.items(): - for subcategory in subcategories: - # Create a hierarchical tag - tag_str = f"{category}/{subcategory}" - - # Add time series traces (1-3 per subcategory) - for i in range(1, np.random.randint(2, 5)): - x = np.linspace(0, 10, 100) - noise = np.random.normal(0, 0.5, 100) - amplitude = np.random.uniform(1, 5) - frequency = np.random.uniform(0.5, 2) - - y = amplitude * np.sin(frequency * x) + noise - - data_products.append( - Trace2D.from_xy( - x=x, - y=y, - pen=Pen(label=f"{subcategory} Metric {i}"), - format2d=time_series_format, - tags=[tag_str], - ) - ) - - # Add scatter points (for some subcategories) - if np.random.random() > 0.3: # 70% chance of adding points - num_points = np.random.randint(20, 100) - x = np.random.normal(5, 2, num_points) - y = 2 * x + np.random.normal(0, 3, num_points) - - data_products.append( - Trace2D.from_xy( - x=x, - y=y, - pen=Pen(label=f"{subcategory} Data Points"), - format2d=scatter_format, - tags=[tag_str], - ) - ) - - # Add histogram data (for some subcategories) - if np.random.random() > 0.5: # 50% chance of adding histogram - # Generate some sample distribution data - if np.random.random() > 0.5: - # Normal distribution - values = np.random.normal(50, 15, 1000) - dist_type = "Normal" - else: - # Bimodal distribution - values = np.concatenate( - [np.random.normal(30, 10, 500), np.random.normal(70, 10, 500)] - ) - dist_type = "Bimodal" - from trendify import HistogramStyle - - for v in values: - data_products.append( - HistogramEntry( - value=v, - style=HistogramStyle(label=f"{subcategory} {dist_type}"), - format2d=histogram_format, - tags=[tag_str], - ) - ) - - # Add table data (for some subcategories) - if np.random.random() > 0.6: # 40% chance of adding table - # Create a sample table with metrics - metrics = ["Count", "Avg", "Min", "Max", "Std Dev"] - features = [f"Feature {i}" for i in range(1, 4)] - - for metric in metrics: - for feature in features: - value = np.random.uniform(10, 100) - data_products.append( - TableEntry( - row=metric, - col=feature, - value=value, - tags=[tag_str], - unit=None, - ) - ) - - # Add reference lines (for some subcategories) - if np.random.random() > 0.7: # 30% chance of adding reference lines - # Add horizontal threshold line - threshold = np.random.uniform(1, 4) - data_products.append( - AxLine( - value=threshold, - orientation=LineOrientation.HORIZONTAL, - pen=Pen(label=f"{subcategory} Threshold"), - tags=[tag_str], - ) - ) - - # Maybe add vertical reference - if np.random.random() > 0.5: - ref_x = np.random.uniform(3, 7) - data_products.append( - AxLine( - value=ref_x, - orientation=LineOrientation.VERTICAL, - pen=Pen(label=f"{subcategory} Reference"), - tags=[tag_str], - ) - ) - - # Add some flat (non-hierarchical) tags as well for comparison - flat_tags = ["Summary", "Overview", "Highlights", "Alerts"] - - for tag_name in flat_tags: - # Add a couple of traces - x = np.linspace(0, 10, 100) - for i in range(2): - y = np.random.normal(5, 2, 100) + i * 2 - data_products.append( - Trace2D.from_xy( - x=x, - y=y, - pen=Pen(label=f"Metric {i + 1}"), - format2d=time_series_format, - tags=[tag_name], - ) - ) - - # Add a table - for row in ["Total", "Average", "Change"]: - for col in ["Yesterday", "Today", "Weekly"]: - value = np.random.uniform(100, 1000) - data_products.append( - TableEntry(row=row, col=col, value=value, tags=[tag_name]) - ) - - # Create collection from data products - collection = DataProductCollection(elements=data_products) - - return collection - - -def main(): - """Main function to generate and display sample data.""" - print("Generating sample hierarchical data for Trendify Plotly dashboard...") - collection = generate_sample_data() - - # Print summary of what was generated - tags = collection.get_tags() - print(f"Generated {len(collection.elements)} data products across {len(tags)} tags") - - print("\nTag hierarchy:") - for tag in sorted([str(t) for t in tags]): - print(f" - {tag}") - - print("\nData product counts by type:") - trace_count = len(collection.get_products(object_type=Trace2D).elements or []) - point_count = len(collection.get_products(object_type=Point2D).elements or []) - table_count = len(collection.get_products(object_type=TableEntry).elements or []) - hist_count = len(collection.get_products(object_type=HistogramEntry).elements or []) - axline_count = len(collection.get_products(object_type=AxLine).elements or []) - - print(f" - Traces: {trace_count}") - print(f" - Points: {point_count}") - print(f" - Tables: {table_count}") - print(f" - Histograms: {hist_count}") - print(f" - AxLines: {axline_count}") - - # Launch the Plotly dashboard - print("\nLaunching Plotly dashboard...") - app = collection.generate_plotly_dashboard(title="Hierarchical Tag Demo") - app.run_server(debug=True) - - -if __name__ == "__main__": - main() diff --git a/src/trendify/__init__.py b/src/trendify/__init__.py index c7e908e..0dd05b3 100644 --- a/src/trendify/__init__.py +++ b/src/trendify/__init__.py @@ -2,12 +2,20 @@ Provides top-level imports """ -from trendify import base -from trendify import formats -from trendify import plotting -from trendify import store -from trendify import styling - +from trendify import ( + base, + cli, + color, + examples, + formats, + generator, + log, + pipeline, + plotting, + store, + styling, + typing, +) from trendify.base import ( DataProduct, HashableBase, @@ -22,6 +30,16 @@ helpers, pen, ) +from trendify.cli import ( + app, +) +from trendify.color import ( + Color, +) +from trendify.examples import ( + example_data_product_generator, + make_example_data, +) from trendify.formats import ( AxisScale, Format2D, @@ -31,6 +49,30 @@ format2d, table, ) +from trendify.generator import ( + Histogrammer, + TableBuilder, + XYDataPlotter, + generate, + generate_products, + get_sorted_dirs, + histogrammer, + make_include_files, + render, + render_assets, + table_builder, + xy_data_plotter, +) +from trendify.log import ( + create_queue_listener, + get_logger, + set_log_level, + setup_logger, + worker_init, +) +from trendify.pipeline import ( + TrendifyPipeline, +) from trendify.plotting import ( AxLine, HistogramEntry, @@ -47,13 +89,14 @@ trace, ) from trendify.store import ( - ProductStore, SCHEMA_VERSION, + ProductStore, connect, db, decode_tag, encode_tag, product_store, + tag_to_path_parts, tags, ) from trendify.styling import ( @@ -67,11 +110,16 @@ legend, marker, ) +from trendify.typing import ( + MatN, + VecN, +) __all__ = [ "SCHEMA_VERSION", "AxLine", "AxisScale", + "Color", "DataProduct", "Format2D", "Grid", @@ -80,10 +128,12 @@ "HashableBase", "HistogramEntry", "HistogramStyle", + "Histogrammer", "Legend", "LegendLocation", "LineOrientation", "Marker", + "MatN", "Pen", "PlotlyFigure", "PlottableData2D", @@ -94,33 +144,62 @@ "ProductType", "R", "SingleAxisFigure", + "TableBuilder", "TableEntry", "Tag", "Tags", "Trace2D", + "TrendifyPipeline", + "VecN", "XYData", + "XYDataPlotter", + "app", "axline", "base", + "cli", + "color", "connect", + "create_queue_listener", "data_product", "db", "decode_tag", "encode_tag", + "example_data_product_generator", + "examples", "figure", "format2d", "formats", + "generate", + "generate_products", + "generator", + "get_logger", + "get_sorted_dirs", "grid", "helpers", "histogram", + "histogrammer", "legend", + "log", + "make_example_data", + "make_include_files", "marker", "pen", + "pipeline", "plotting", "point", "product_store", + "render", + "render_assets", + "set_log_level", + "setup_logger", "store", "styling", "table", + "table_builder", + "tag_to_path_parts", "tags", "trace", + "typing", + "worker_init", + "xy_data_plotter", ] diff --git a/src/trendify/base/data_product.py b/src/trendify/base/data_product.py index a637daf..dc40ef3 100644 --- a/src/trendify/base/data_product.py +++ b/src/trendify/base/data_product.py @@ -1,9 +1,15 @@ +""" +Base `DataProduct` pydantic model, the `ProductGenerator`/`ProductList` type aliases user code +implements against, and the subclass registry `ProductStore` uses to deserialize a stored +`product_type` string back into its concrete pydantic class. +""" + from __future__ import annotations +import logging +from collections.abc import Callable from pathlib import Path from typing import Any -from collections.abc import Callable -import logging from pydantic import ( BaseModel, @@ -16,7 +22,6 @@ from trendify.base.helpers import Tags - logger = logging.getLogger(__name__) __all__ = ["DataProduct", "ProductGenerator", "ProductList"] @@ -74,21 +79,22 @@ def __init_subclass__(cls, **kwargs: Any) -> None: """ super().__init_subclass__(**kwargs) _data_product_subclass_registry[cls.__name__] = cls + logger.debug(f"Registered DataProduct subclass {cls.__name__!r}") model_config = ConfigDict(extra="allow") - def append_to_list(self, l: list): + def append_to_list(self, to_add_to: list): """ Appends self to list. Args: - l (List): list to which `self` will be appended + to_add_to (List): list to which `self` will be appended Returns: (Self): returns instance of `self` """ - l.append(self) + to_add_to.append(self) return self @classmethod @@ -115,7 +121,15 @@ def deserialize(cls, product_type: str, payload: str) -> DataProduct: (DataProduct): the reconstructed, correctly-typed product instance """ - duck_type = _data_product_subclass_registry[product_type] + try: + duck_type = _data_product_subclass_registry[product_type] + except KeyError: + logger.error( + f"No registered DataProduct subclass named {product_type!r}. Known types: " + f"{sorted(_data_product_subclass_registry)}. This usually means the module " + f"defining that subclass hasn't been imported in this process." + ) + raise return duck_type.model_validate_json(payload) def set_metadata(self, new: dict[str, str]): diff --git a/src/trendify/base/helpers.py b/src/trendify/base/helpers.py index 7ed5e30..ac3b595 100644 --- a/src/trendify/base/helpers.py +++ b/src/trendify/base/helpers.py @@ -1,11 +1,20 @@ +""" +Small shared building blocks used across the rest of the package: the `Tag`/`Tags` type +aliases every `DataProduct` and the store's tag-encoding logic build on, `HashableBase` for +pydantic models that need to go in a `set`, and the `ProductType` enum. +""" + from __future__ import annotations import logging -from enum import StrEnum, auto -from typing import TypeVar +from enum import StrEnum +from typing import TYPE_CHECKING, TypeVar from pydantic import BaseModel +if TYPE_CHECKING: + from trendify.base.data_product import DataProduct + logger = logging.getLogger(__name__) __all__ = [ @@ -16,16 +25,18 @@ "Tags", ] -R = TypeVar("R") +R = TypeVar("R", bound="DataProduct") +"""Bound to `DataProduct`: used by `ProductStore.get_products`/`get_products_of_type` so a +call like `get_products_of_type(Point2D)` returns `list[Point2D]` rather than `list[DataProduct]`. +""" Tag = str | int | tuple[str | int, ...] """ Determines what types can be used to define a tag. -Narrower than v1's ``Union[tuple[Hashable, ...], Hashable]``: tags must be reliably -JSON-encodable (str/int, or tuples thereof) because the store canonicalizes a tag into a -`tag_key` via `json.dumps` for indexed lookup (see `trendify.store.tags`). A bare `Hashable` -can't guarantee a stable, 1:1 JSON encoding. +Tags must be reliably JSON-encodable (str/int, or tuples thereof) because the store +canonicalizes a tag into a `tag_key` via `json.dumps` for indexed lookup (see +`trendify.store.tags`). """ Tags = list[Tag] @@ -60,9 +71,9 @@ class ProductType(StrEnum): """ - DataProduct = auto() - XYData = auto() - Trace2D = auto() - Point2D = auto() - TableEntry = auto() - HistogramEntry = auto() + DATA_PRODUCT = "data_product" + XY_DATA = "xy_data" + TRACE_2D = "trace_2d" + POINT_2D = "point_2d" + TABLE_ENTRY = "table_entry" + HISTOGRAM_ENTRY = "histogram_entry" diff --git a/src/trendify/base/pen.py b/src/trendify/base/pen.py index 7d5a046..25513bd 100644 --- a/src/trendify/base/pen.py +++ b/src/trendify/base/pen.py @@ -1,3 +1,8 @@ +""" +`Pen`: shared line/marker styling (color, size, alpha, linestyle, zorder, label) used by +`Trace2D`, `AxLine`, and anything else that draws a line to matplotlib or Plotly. +""" + from __future__ import annotations diff --git a/src/trendify/cli.py b/src/trendify/cli.py new file mode 100644 index 0000000..a2df73b --- /dev/null +++ b/src/trendify/cli.py @@ -0,0 +1,218 @@ +""" +`trendify` CLI, built on Typer. It is a thin argument-parsing layer over `TrendifyPipeline`: +every command resolves its arguments then calls straight into the same pipeline class a Python +caller would use directly, so the CLI and the Python API can never drift apart. +""" + +from __future__ import annotations + +import glob as glob_module +import importlib +import importlib.util +import logging +import os +import sys +from pathlib import Path +from typing import cast + +import typer + +from trendify.base.data_product import ProductGenerator +from trendify.log import setup_logger +from trendify.pipeline import TrendifyPipeline + +__all__ = ["app"] + +logger = logging.getLogger(__name__) + +app = typer.Typer( + name="trendify", + help="Generate visual data products and static assets from raw data.", + no_args_is_help=True, +) + +InputDirectoriesOption = typer.Option( + ..., + "-i", + "--input-directories", + help="Raw data directories (or glob patterns) to map the product generator over.", +) +ProductGeneratorOption = typer.Option( + ..., + "-g", + "--product-generator", + help=( + "ProductGenerator to map over input directories, given as 'module:function', " + "'module:Class.method', or '/path/to/file.py:function'." + ), +) +OutputDirectoryOption = typer.Option( + ..., "-o", "--output-directory", help="Directory the pipeline reads/writes under." +) +NProcsOption = typer.Option( + 1, "-n", "--n-procs", help="Number of parallel worker processes." +) +VerboseOption = typer.Option( + 0, "-v", "--verbose", count=True, help="Increase log verbosity." +) +DpiOption = typer.Option( + 500, "--dpi", help="Resolution (dots per inch) for saved matplotlib figures." +) +NoTablesOption = typer.Option( + False, "--no-tables", help="Suppress TableEntry CSV output." +) +NoXyPlotsOption = typer.Option( + False, "--no-xy-plots", help="Suppress Point2D/Trace2D/AxLine plot output." +) +NoHistogramsOption = typer.Option( + False, "--no-histograms", help="Suppress HistogramEntry plot output." +) +NoIncludeFilesOption = typer.Option( + False, "--no-include-files", help="Suppress MkDocs include.md generation." +) + + +def _configure_logging(verbose: int) -> None: + """ + Configures the root logger via `trendify.log.setup_logger` (Rich console output plus a + rotating `trendify.log` file) rather than a one-off `logging.basicConfig`. This way a CLI + run gets the same beautiful, concurrent-safe logging setup a Python caller gets by calling + `setup_logger()` themselves, and `generate_products`'s multiprocess path picks up these + same handlers via its `QueueListener` (see `trendify.generator.generate`). + """ + level = logging.DEBUG if verbose >= 1 else logging.INFO + setup_logger(level=level) + + +def _cap_n_procs(n_procs: int) -> int: + """Caps `n_procs` at `5 * os.cpu_count()`, as a precaution against overwhelming the machine.""" + max_procs = 5 * (os.cpu_count() or 1) + if n_procs > max_procs: + logger.info( + f"Requested {n_procs = } exceeds {max_procs = }; capping to {max_procs}" + ) + return max_procs + return n_procs + + +def _resolve_input_directories(patterns: list[str]) -> list[Path]: + """ + Expands glob patterns (and plain paths) into a list of directories. A match on a file + resolves to its parent directory. + """ + dirs: list[Path] = [] + for pattern in patterns: + for match in glob_module.glob(pattern, root_dir=os.getcwd(), recursive=True): + path = Path(match) + dirs.append((path.parent if path.is_file() else path).resolve()) + return dirs + + +def _import_from_path(module_name: str, file_path: Path): + spec = importlib.util.spec_from_file_location(module_name, file_path) + if spec is None or spec.loader is None: + raise typer.BadParameter(f"Could not import {file_path} as a Python module") + module = importlib.util.module_from_spec(spec) + sys.modules[module_name] = module + spec.loader.exec_module(module) + return module + + +def _resolve_product_generator(spec: str) -> ProductGenerator: + """ + Resolves a `"module:function"` / `"module:Class.method"` / `"/path/to/file.py:function"` + spec string into a callable. + """ + module_path, _, attr_path = spec.partition(":") + if not attr_path: + raise typer.BadParameter( + f"{spec!r} must be in the form 'module:function' or 'path/to/file.py:function'" + ) + + if Path(module_path).exists(): + module = _import_from_path(Path(module_path).stem, Path(module_path)) + else: + module = importlib.import_module(module_path) + + obj: object = module + for part in attr_path.split("."): + obj = getattr(obj, part) + return cast(ProductGenerator, obj) + + +@app.command() +def generate( + input_directories: list[str] = InputDirectoriesOption, + product_generator: str = ProductGeneratorOption, + output_directory: Path = OutputDirectoryOption, + n_procs: int = NProcsOption, + verbose: int = VerboseOption, +) -> None: + """Generate tagged data products from raw data directories.""" + _configure_logging(verbose) + pipeline = TrendifyPipeline( + output_dir=output_directory, n_procs=_cap_n_procs(n_procs) + ) + total = pipeline.generate( + product_generator=_resolve_product_generator(product_generator), + data_dirs=_resolve_input_directories(input_directories), + ) + typer.echo(f"Wrote {total} products to {pipeline.db_path}") + + +@app.command() +def render( + output_directory: Path = OutputDirectoryOption, + dpi: int = DpiOption, + no_tables: bool = NoTablesOption, + no_xy_plots: bool = NoXyPlotsOption, + no_histograms: bool = NoHistogramsOption, + no_include_files: bool = NoIncludeFilesOption, + verbose: int = VerboseOption, +) -> None: + """Render CSV tables and matplotlib figures from already-generated products.""" + _configure_logging(verbose) + pipeline = TrendifyPipeline(output_dir=output_directory) + pipeline.render( + dpi=dpi, + no_tables=no_tables, + no_xy_plots=no_xy_plots, + no_histograms=no_histograms, + ) + if not no_include_files: + pipeline.make_include_files() + typer.echo(f"Rendered assets to {pipeline.assets_dir}") + + +@app.command() +def run( + input_directories: list[str] = InputDirectoriesOption, + product_generator: str = ProductGeneratorOption, + output_directory: Path = OutputDirectoryOption, + n_procs: int = NProcsOption, + dpi: int = DpiOption, + no_tables: bool = NoTablesOption, + no_xy_plots: bool = NoXyPlotsOption, + no_histograms: bool = NoHistogramsOption, + no_include_files: bool = NoIncludeFilesOption, + verbose: int = VerboseOption, +) -> None: + """Generate products and render assets in one step.""" + _configure_logging(verbose) + pipeline = TrendifyPipeline( + output_dir=output_directory, n_procs=_cap_n_procs(n_procs) + ) + total = pipeline.run( + product_generator=_resolve_product_generator(product_generator), + data_dirs=_resolve_input_directories(input_directories), + dpi=dpi, + no_tables=no_tables, + no_xy_plots=no_xy_plots, + no_histograms=no_histograms, + no_include_files=no_include_files, + ) + typer.echo(f"Wrote {total} products; assets under {pipeline.assets_dir}") + + +if __name__ == "__main__": + app() diff --git a/src/trendify/color.py b/src/trendify/color.py new file mode 100644 index 0000000..c87dad0 --- /dev/null +++ b/src/trendify/color.py @@ -0,0 +1,260 @@ +""" +`Color`: the Tailwind CSS color palette as a `StrEnum` of hex values, for consistent styling +defaults across `Pen`/`Marker`/`HistogramStyle` and friends. +""" + +import logging +from enum import StrEnum + +logger = logging.getLogger(__name__) + +__all__ = ["Color"] + + +class Color(StrEnum): + """Contains color aliases and converters to go between the various color formats. The color values are defined by the standard [Tailwind CSS](https://tailwindcss.com/docs/colors) color theme.""" + + BLACK = "#000000" + WHITE = "#FFFFFF" + SLATE_50 = "#F8FAFC" + SLATE_100 = "#F1F5F9" + SLATE_200 = "#E2E8F0" + SLATE_300 = "#CBD5E1" + SLATE_400 = "#94A3B8" + SLATE_500 = "#64748B" + SLATE_600 = "#475569" + SLATE_700 = "#334155" + SLATE_800 = "#1E293B" + SLATE_900 = "#0F172A" + SLATE_950 = "#020617" + GRAY_50 = "#F9FAFB" + GRAY_100 = "#F3F4F6" + GRAY_200 = "#E5E7EB" + GRAY_300 = "#D1D5DB" + GRAY_400 = "#9CA3AF" + GRAY_500 = "#6B7280" + GRAY_600 = "#4B5563" + GRAY_700 = "#374151" + GRAY_800 = "#1F2937" + GRAY_900 = "#111827" + GRAY_950 = "#030712" + ZINC_50 = "#FAFAFA" + ZINC_100 = "#F4F4F5" + ZINC_200 = "#E4E4E7" + ZINC_300 = "#D4D4D8" + ZINC_400 = "#A1A1AA" + ZINC_500 = "#71717A" + ZINC_600 = "#52525B" + ZINC_700 = "#3F3F46" + ZINC_800 = "#27272A" + ZINC_900 = "#18181B" + ZINC_950 = "#09090B" + NEUTRAL_50 = "#FAFAFA" + NEUTRAL_100 = "#F5F5F5" + NEUTRAL_200 = "#E5E5E5" + NEUTRAL_300 = "#D4D4D4" + NEUTRAL_400 = "#A3A3A3" + NEUTRAL_500 = "#737373" + NEUTRAL_600 = "#525252" + NEUTRAL_700 = "#404040" + NEUTRAL_800 = "#262626" + NEUTRAL_900 = "#171717" + NEUTRAL_950 = "#0A0A0A" + STONE_50 = "#FAFAF9" + STONE_100 = "#F5F5F4" + STONE_200 = "#E7E5E4" + STONE_300 = "#D6D3D1" + STONE_400 = "#A8A29E" + STONE_500 = "#78716C" + STONE_600 = "#57534E" + STONE_700 = "#44403C" + STONE_800 = "#292524" + STONE_900 = "#1C1917" + STONE_950 = "#0C0A09" + RED_50 = "#FEF2F2" + RED_100 = "#FEE2E2" + RED_200 = "#FECACA" + RED_300 = "#FCA5A5" + RED_400 = "#F87171" + RED_500 = "#EF4444" + RED_600 = "#DC2626" + RED_700 = "#B91C1C" + RED_800 = "#991B1B" + RED_900 = "#7F1D1D" + RED_950 = "#450A0A" + ORANGE_50 = "#FFF7ED" + ORANGE_100 = "#FFEDD5" + ORANGE_200 = "#FED7AA" + ORANGE_300 = "#FDBA74" + ORANGE_400 = "#FB923C" + ORANGE_500 = "#F97316" + ORANGE_600 = "#EA580C" + ORANGE_700 = "#C2410C" + ORANGE_800 = "#9A3412" + ORANGE_900 = "#7C2D12" + ORANGE_950 = "#431407" + AMBER_50 = "#FFFBEB" + AMBER_100 = "#FEF3C7" + AMBER_200 = "#FDE68A" + AMBER_300 = "#FCD34D" + AMBER_400 = "#FBBF24" + AMBER_500 = "#F59E0B" + AMBER_600 = "#D97706" + AMBER_700 = "#B45309" + AMBER_800 = "#92400E" + AMBER_900 = "#78350F" + AMBER_950 = "#451A03" + YELLOW_50 = "#FEFCE8" + YELLOW_100 = "#FEF9C3" + YELLOW_200 = "#FEF08A" + YELLOW_300 = "#FDE047" + YELLOW_400 = "#FACC15" + YELLOW_500 = "#EAB308" + YELLOW_600 = "#CA8A04" + YELLOW_700 = "#A16207" + YELLOW_800 = "#854D0E" + YELLOW_900 = "#713F12" + YELLOW_950 = "#422006" + LIME_50 = "#F7FEE7" + LIME_100 = "#ECFCCB" + LIME_200 = "#D9F99D" + LIME_300 = "#BEF264" + LIME_400 = "#A3E635" + LIME_500 = "#84CC16" + LIME_600 = "#65A30D" + LIME_700 = "#4D7C0F" + LIME_800 = "#3F6212" + LIME_900 = "#365314" + LIME_950 = "#1A2E05" + GREEN_50 = "#F0FDF4" + GREEN_100 = "#DCFCE7" + GREEN_200 = "#BBF7D0" + GREEN_300 = "#86EFAC" + GREEN_400 = "#4ADE80" + GREEN_500 = "#22C55E" + GREEN_600 = "#16A34A" + GREEN_700 = "#15803D" + GREEN_800 = "#166534" + GREEN_900 = "#14532D" + GREEN_950 = "#052E16" + EMERALD_50 = "#ECFDF5" + EMERALD_100 = "#D1FAE5" + EMERALD_200 = "#A7F3D0" + EMERALD_300 = "#6EE7B7" + EMERALD_400 = "#34D399" + EMERALD_500 = "#10B981" + EMERALD_600 = "#059669" + EMERALD_700 = "#047857" + EMERALD_800 = "#065F46" + EMERALD_900 = "#064E3B" + EMERALD_950 = "#022C22" + TEAL_50 = "#F0FDFA" + TEAL_100 = "#CCFBF1" + TEAL_200 = "#99F6E4" + TEAL_300 = "#5EEAD4" + TEAL_400 = "#2DD4BF" + TEAL_500 = "#14B8A6" + TEAL_600 = "#0D9488" + TEAL_700 = "#0F766E" + TEAL_800 = "#115E59" + TEAL_900 = "#134E4A" + TEAL_950 = "#042F2E" + CYAN_50 = "#ECFEFF" + CYAN_100 = "#CFFAFE" + CYAN_200 = "#A5F3FC" + CYAN_300 = "#67E8F9" + CYAN_400 = "#22D3EE" + CYAN_500 = "#06B6D4" + CYAN_600 = "#0891B2" + CYAN_700 = "#0E7490" + CYAN_800 = "#155E75" + CYAN_900 = "#164E63" + CYAN_950 = "#083344" + SKY_50 = "#F0F9FF" + SKY_100 = "#E0F2FE" + SKY_200 = "#BAE6FD" + SKY_300 = "#7DD3FC" + SKY_400 = "#38BDF8" + SKY_500 = "#0EA5E9" + SKY_600 = "#0284C7" + SKY_700 = "#0369A1" + SKY_800 = "#075985" + SKY_900 = "#0C4A6E" + SKY_950 = "#082F49" + BLUE_50 = "#EFF6FF" + BLUE_100 = "#DBEAFE" + BLUE_200 = "#BFDBFE" + BLUE_300 = "#93C5FD" + BLUE_400 = "#60A5FA" + BLUE_500 = "#3B82F6" + BLUE_600 = "#2563EB" + BLUE_700 = "#1D4ED8" + BLUE_800 = "#1E40AF" + BLUE_900 = "#1E3A8A" + BLUE_950 = "#172554" + INDIGO_50 = "#EEF2FF" + INDIGO_100 = "#E0E7FF" + INDIGO_200 = "#C7D2FE" + INDIGO_300 = "#A5B4FC" + INDIGO_400 = "#818CF8" + INDIGO_500 = "#6366F1" + INDIGO_600 = "#4F46E5" + INDIGO_700 = "#4338CA" + INDIGO_800 = "#3730A3" + INDIGO_900 = "#312E81" + INDIGO_950 = "#1E1B4B" + VIOLET_50 = "#F5F3FF" + VIOLET_100 = "#EDE9FE" + VIOLET_200 = "#DDD6FE" + VIOLET_300 = "#C4B5FD" + VIOLET_400 = "#A78BFA" + VIOLET_500 = "#8B5CF6" + VIOLET_600 = "#7C3AED" + VIOLET_700 = "#6D28D9" + VIOLET_800 = "#5B21B6" + VIOLET_900 = "#4C1D95" + VIOLET_950 = "#2E1065" + PURPLE_50 = "#FAF5FF" + PURPLE_100 = "#F3E8FF" + PURPLE_200 = "#E9D5FF" + PURPLE_300 = "#D8B4FE" + PURPLE_400 = "#C084FC" + PURPLE_500 = "#A855F7" + PURPLE_600 = "#9333EA" + PURPLE_700 = "#7E22CE" + PURPLE_800 = "#6B21A8" + PURPLE_900 = "#581C87" + PURPLE_950 = "#3B0764" + FUCHSIA_50 = "#FDF4FF" + FUCHSIA_100 = "#FAE8FF" + FUCHSIA_200 = "#F5D0FE" + FUCHSIA_300 = "#F0ABFC" + FUCHSIA_400 = "#E879F9" + FUCHSIA_500 = "#D946EF" + FUCHSIA_600 = "#C026D3" + FUCHSIA_700 = "#A21CAF" + FUCHSIA_800 = "#86198F" + FUCHSIA_900 = "#701A75" + FUCHSIA_950 = "#4A044E" + PINK_50 = "#FDF2F8" + PINK_100 = "#FCE7F3" + PINK_200 = "#FBCFE8" + PINK_300 = "#F9A8D4" + PINK_400 = "#F472B6" + PINK_500 = "#EC4899" + PINK_600 = "#DB2777" + PINK_700 = "#BE185D" + PINK_800 = "#9D174D" + PINK_900 = "#831843" + PINK_950 = "#500724" + ROSE_50 = "#FFF1F2" + ROSE_100 = "#FFE4E6" + ROSE_200 = "#FECDD3" + ROSE_300 = "#FDA4AF" + ROSE_400 = "#FB7185" + ROSE_500 = "#F43F5E" + ROSE_600 = "#E11D48" + ROSE_700 = "#BE123C" + ROSE_800 = "#9F1239" + ROSE_900 = "#881337" + ROSE_950 = "#4C0519" diff --git a/src/trendify_old/examples.py b/src/trendify/examples.py similarity index 75% rename from src/trendify_old/examples.py rename to src/trendify/examples.py index 14eb9e3..13e5124 100644 --- a/src/trendify_old/examples.py +++ b/src/trendify/examples.py @@ -1,38 +1,26 @@ """ -Module defines a method for making sample data and defines a +Sample data + a `ProductGenerator` used as a fixture for exercising the `trendify` pipeline end to end. """ from __future__ import annotations -# Standard imports +from enum import StrEnum from pathlib import Path -from enum import auto -from strenum import StrEnum +from typing import cast -# Common imports import numpy as np -import pandas as pd +import polars as pl -# Local imports import trendify __all__ = ["example_data_product_generator", "make_example_data"] class Channels(StrEnum): - """ - Attributes: - time (str): `'time'` - wave1 (str): `'wave1'` - wave2 (str): `'wave2'` - wave3 (str): `'wave3'` - - """ - - time = auto() - wave1 = auto() - wave2 = auto() - wave3 = auto() + TIME = "time" + WAVE_1 = "wave_1" + WAVE_2 = "wave_2" + WAVE_3 = "wave_3" def make_example_data(workdir: Path, n_folders: int = 10): @@ -56,31 +44,22 @@ def make_example_data(workdir: Path, n_folders: int = 10): periods = [1, 2, 3] amplitudes = np.random.uniform(low=0.5, high=1.5, size=3) - n_inputs = {"n_samples": n_samples} - p_inputs = {f"p{n}": p for n, p in enumerate(periods)} - a_inputs = {f"a{n}": a for n, a in enumerate(amplitudes)} - inputs = {} - inputs.update(n_inputs) - inputs.update(p_inputs) - inputs.update(a_inputs) - pd.Series(inputs).to_csv(subdir.joinpath("stdin.csv"), header=False) + inputs = {"n_samples": n_samples} + inputs.update({f"p{i}": p for i, p in enumerate(periods)}) + inputs.update({f"a{i}": a for i, a in enumerate(amplitudes)}) + pl.DataFrame( + {"key": list(inputs.keys()), "value": [str(v) for v in inputs.values()]} + ).write_csv(subdir.joinpath("stdin.csv"), include_header=False) rng = np.random.default_rng(seed=42) noise_level = 0.05 - d = [t] + [ + waves = [ a * np.sin(t * (2 * np.pi / p)) + noise_level * rng.normal(size=len(t)) for p, a in zip(periods, amplitudes) ] - df = pd.DataFrame(np.array(d).transpose(), columns=[e.name for e in Channels]) - df.to_csv(subdir.joinpath("results.csv"), index=False) - - csv_files = list(models_dir.glob("**/stdin.csv")) - csv_files.sort() - input_series = [] - for csv in csv_files: - series: pd.Series = pd.read_csv(csv, index_col=0, header=None).squeeze() - series.name = int(csv.parent.stem) - input_series.append(series) + pl.DataFrame(dict(zip([e.name for e in Channels], [t, *waves]))).write_csv( + subdir.joinpath("results.csv") + ) def transform(data: np.ndarray, scale: trendify.AxisScale) -> np.ndarray: @@ -102,10 +81,10 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: """ products = [] - df = pd.read_csv(workdir.joinpath("results.csv")) - df = df.set_index(Channels.time.name, drop=True) + df = pl.read_csv(workdir.joinpath("results.csv")) + time = df[Channels.TIME.name].to_numpy() + value_columns = [c for c in df.columns if c != Channels.TIME.name] - # colors = list(plt.rcParams["axes.prop_cycle"].by_key()["color"]) colors = ["#FF0000", "#000B81", "#FFAA00"] alphas = [1.0, 0.3, 1.0] linestyles = ["-", ":", (0, (3, 1, 1, 1))] @@ -114,8 +93,8 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: traces = [ trendify.Trace2D.from_xy( - x=df.index, - y=df[col].values, + x=time, + y=df[col].to_numpy(), tags=[("an_xy_plot", "trace_plot")], pen=trendify.Pen( label=col, @@ -131,13 +110,13 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: ) .append_to_list(products) .set_metadata({"run_num": run_num}) - for i, col in enumerate(df.columns) + for i, col in enumerate(value_columns) ] traces = [ trendify.Trace2D.from_xy( - x=df.index, - y=df[col].values, + x=time, + y=df[col].to_numpy(), tags=[("an_xy_plot", "another_trace_plot")], pen=trendify.Pen( label=col, @@ -153,13 +132,13 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: ) .append_to_list(products) .set_metadata({"run_num": run_num}) - for i, col in enumerate(df.columns) + for i, col in enumerate(value_columns) ] traces = [ trendify.Trace2D.from_xy( - x=df.index, - y=df[col].values, + x=time, + y=df[col].to_numpy(), tags=[("another_xy_plot", "trace_plot")], pen=trendify.Pen( label=col, @@ -178,7 +157,7 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: ) .append_to_list(products) .set_metadata({"run_num": run_num}) - for i, col in enumerate(df.columns) + for i, col in enumerate(value_columns) ] trendify.AxLine( tags=[("another_xy_plot", "trace_plot")], @@ -195,8 +174,8 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: traces = [ trendify.Trace2D.from_xy( - x=df.index, - y=transform(df[col].values, trendify.AxisScale.LOG), + x=time, + y=transform(df[col].to_numpy(), trendify.AxisScale.LOG), tags=["trace_plot_log_y"], pen=trendify.Pen( label=col, @@ -217,13 +196,13 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: ) .append_to_list(products) .set_metadata({"run_num": run_num}) - for i, col in enumerate(df.columns) + for i, col in enumerate(value_columns) ] traces = [ trendify.Trace2D.from_xy( - x=transform(df.index, trendify.AxisScale.LOG), - y=transform(df[col].values, trendify.AxisScale.LOG), + x=transform(time, trendify.AxisScale.LOG), + y=transform(df[col].to_numpy(), trendify.AxisScale.LOG), tags=["trace_plot_log_xy"], pen=trendify.Pen( label=col, @@ -249,7 +228,7 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: ) .append_to_list(products) .set_metadata({"run_num": run_num}) - for i, col in enumerate(df.columns) + for i, col in enumerate(value_columns) ] trendify.AxLine( tags=["trace_plot_log_xy"], @@ -262,8 +241,8 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: traces = [ trendify.Trace2D.from_xy( - x=transform(df.index, trendify.AxisScale.LOG), - y=df[col].values, + x=transform(time, trendify.AxisScale.LOG), + y=df[col].to_numpy(), tags=["trace_plot_log_x"], pen=trendify.Pen( label=col, @@ -280,13 +259,13 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: ) .append_to_list(products) .set_metadata({"run_num": run_num}) - for i, col in enumerate(df.columns) + for i, col in enumerate(value_columns) ] for i, trace in enumerate(traces): trendify.Point2D( x=workdir.name, - y=len(trace.y), + y=len(trace.points), marker=trendify.Marker( size=10, label=trace.pen.label, @@ -297,18 +276,20 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: tags=["scatter_plot"], ).append_to_list(products).set_metadata({"run_num": run_num}) - for name, series in df.items(): + for col in value_columns: + series = df[col] trendify.TableEntry( row=workdir.name, - col=name, - value=len(series), + col=col, + value=series.len(), tags=["table"], unit=None, ).append_to_list(products) + mean = cast(float, series.mean()) trendify.HistogramEntry( tags=["histogram"], - value=series.mean(), + value=mean, format2d=trendify.Format2D( title_ax="Idk lol", title_fig="Idk lol2", @@ -330,7 +311,7 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: trendify.AxLine( tags=["histogram"], - value=series.mean(), + value=mean, orientation=trendify.LineOrientation.VERTICAL, pen=trendify.Pen(color="r", label="mean", zorder=2), ).append_to_list(products) @@ -342,7 +323,6 @@ def make_sample_data(): """ Generates sample data to run the trendify code on """ - from trendify.examples import make_example_data import argparse parser = argparse.ArgumentParser( @@ -370,7 +350,7 @@ def make_sample_data(): def _main(): """ - Makes sample data, processes it, and serves it for importing into Grafana + Makes sample data and runs the generate pipeline against it. """ here = Path(__file__).parent workdir = here.joinpath("workdir") @@ -378,35 +358,15 @@ def _main(): make_example_data(workdir=workdir, n_folders=100) process_dirs = list(workdir.joinpath("models").glob("*/")) - products_dir = workdir.joinpath("products") - outputs_dir = workdir.joinpath("outputs") - grafana_dir = workdir.joinpath("grafana") + db_path = workdir.joinpath("trendify.db") n_procs = 30 - trendify.make_products( + trendify.generate_products( product_generator=example_data_product_generator, data_dirs=process_dirs, + db_path=db_path, n_procs=n_procs, ) - trendify.sort_products( - data_dirs=process_dirs, - output_dir=products_dir, - ) - # trendify.make_grafana_dashboard( - # products_dir=products_dir, - # output_dir=grafana_dir, - # n_procs=n_procs, - # ) - trendify.make_tables_and_figures( - products_dir=products_dir, - output_dir=outputs_dir, - dpi=500, - n_procs=n_procs, - ) - # trendify.make_include_files( - # root_dir=outputs_dir, - # heading_level=2, - # ) if __name__ == "__main__": diff --git a/src/trendify/formats/format2d.py b/src/trendify/formats/format2d.py index e7a6091..b6142b9 100644 --- a/src/trendify/formats/format2d.py +++ b/src/trendify/formats/format2d.py @@ -1,3 +1,9 @@ +""" +`Format2D` (axis/legend/grid/scale/limit settings shared by every 2D plot type) and the +`PlottableData2D`/`XYData` base classes that carry an optional `Format2D` and know how to draw +themselves onto a Plotly figure. +""" + from __future__ import annotations import logging @@ -81,13 +87,21 @@ def union_from_iterable(cls, format2ds: Iterable[Format2D]): """ formats = list(set(format2ds) - {None}) - [title_fig] = set(i.title_fig for i in formats if i is not None) - [legend] = set(i.legend for i in formats if i is not None) - [title_ax] = set(i.title_ax for i in formats if i is not None) - [label_x] = set(i.label_x for i in formats if i is not None) - [label_y] = set(i.label_y for i in formats if i is not None) - [figure_width] = set(i.figure_width for i in formats) - [figure_height] = set(i.figure_height for i in formats) + try: + [title_fig] = set(i.title_fig for i in formats if i is not None) + [legend] = set(i.legend for i in formats if i is not None) + [title_ax] = set(i.title_ax for i in formats if i is not None) + [label_x] = set(i.label_x for i in formats if i is not None) + [label_y] = set(i.label_y for i in formats if i is not None) + [figure_width] = set(i.figure_width for i in formats) + [figure_height] = set(i.figure_height for i in formats) + except ValueError: + logger.error( + "Format2D.union_from_iterable: products sharing a tag disagree on a field " + "that must be identical across all of them (title_fig, legend, title_ax, " + f"label_x, label_y, figure_width, or figure_height). {formats = }" + ) + raise x_min = [i.lim_x_min for i in formats if i.lim_x_min is not None] x_max = [i.lim_x_max for i in formats if i.lim_x_max is not None] @@ -101,8 +115,15 @@ def union_from_iterable(cls, format2ds: Iterable[Format2D]): grid = Grid.union_from_iterable(f.grid for f in formats if f.grid is not None) - [scale_x] = set(i.scale_x for i in formats) - [scale_y] = set(i.scale_y for i in formats) + try: + [scale_x] = set(i.scale_x for i in formats) + [scale_y] = set(i.scale_y for i in formats) + except ValueError: + logger.error( + f"Format2D.union_from_iterable: products sharing a tag disagree on " + f"scale_x/scale_y. {formats = }" + ) + raise return cls( title_fig=title_fig, diff --git a/src/trendify/formats/table.py b/src/trendify/formats/table.py index 22c5c21..af3870d 100644 --- a/src/trendify/formats/table.py +++ b/src/trendify/formats/table.py @@ -1,3 +1,9 @@ +""" +`TableEntry`: the one `DataProduct` subclass the store gives real SQL columns instead of an +opaque JSON payload, since its whole purpose (pivoting into a wide table, then computing +per-column stats) is naturally SQL-shaped. See `trendify.generator.table_builder`. +""" + from __future__ import annotations import logging diff --git a/src/trendify/generator/__init__.py b/src/trendify/generator/__init__.py new file mode 100644 index 0000000..b10f601 --- /dev/null +++ b/src/trendify/generator/__init__.py @@ -0,0 +1,38 @@ +from trendify.generator import generate +from trendify.generator import histogrammer +from trendify.generator import render +from trendify.generator import table_builder +from trendify.generator import xy_data_plotter + +from trendify.generator.generate import ( + generate_products, + get_sorted_dirs, +) +from trendify.generator.histogrammer import ( + Histogrammer, +) +from trendify.generator.render import ( + make_include_files, + render_assets, +) +from trendify.generator.table_builder import ( + TableBuilder, +) +from trendify.generator.xy_data_plotter import ( + XYDataPlotter, +) + +__all__ = [ + "Histogrammer", + "TableBuilder", + "XYDataPlotter", + "generate", + "generate_products", + "get_sorted_dirs", + "histogrammer", + "make_include_files", + "render", + "render_assets", + "table_builder", + "xy_data_plotter", +] diff --git a/src/trendify/generator/generate.py b/src/trendify/generator/generate.py new file mode 100644 index 0000000..293490a --- /dev/null +++ b/src/trendify/generator/generate.py @@ -0,0 +1,140 @@ +""" +Generate pipeline: maps a user-supplied `ProductGenerator` over raw-data run directories and +writes the resulting products straight to a `ProductStore`-backed `.db` file. + +There is no separate "sort" step: tags are indexed at write time, so retrieving products by +tag is an indexed query against `ProductStore`, not a physical grouping step that has to run +before rendering can start. +""" + +from __future__ import annotations + +import logging +from concurrent.futures import ProcessPoolExecutor +from pathlib import Path +from typing import Any + +from trendify.base.data_product import ProductGenerator +from trendify.log import create_queue_listener +from trendify.log import worker_init as _init_worker_logging +from trendify.store.product_store import ProductStore + +__all__ = ["generate_products", "get_sorted_dirs"] + +logger = logging.getLogger(__name__) + +# Per-process globals set by `_init_worker`, one `ProductStore` connection per worker process +# (WAL mode lets every worker write directly to the same `.db` file, see `store/db.py`). +_worker_store: ProductStore | None = None +_worker_generator: ProductGenerator | None = None + + +def get_sorted_dirs(dirs: list[Path]) -> list[Path]: + """ + Sorts dirs numerically if possible, else alphabetically. + + Args: + dirs (list[Path]): Directories to sort + + Returns: + (list[Path]): Sorted list of directories + + """ + dirs = list(dirs) + try: + dirs.sort(key=lambda p: int(p.name)) + except ValueError: + dirs.sort() + return dirs + + +def _init_worker(db_path: str, product_generator: ProductGenerator) -> None: + global _worker_store, _worker_generator + _worker_store = ProductStore.open(Path(db_path)) + _worker_generator = product_generator + + +def _init_worker_with_logging( + db_path: str, + product_generator: ProductGenerator, + log_queue: Any, + log_level: int, +) -> None: + # Route this worker's logging through the parent's QueueListener before anything else + # runs, so no worker ever opens a file/console handler directly. See trendify.log for why + # that matters (Windows spawn semantics, and fork-inherited-handler races on POSIX). + _init_worker_logging(log_queue, log_level) + _init_worker(db_path, product_generator) + + +def _generate_and_write(run_dir: Path) -> int: + assert _worker_store is not None and _worker_generator is not None + logger.info(f"Processing {run_dir = }") + products = _worker_generator(run_dir) + return _worker_store.write_run(run_dir, products) + + +def generate_products( + product_generator: ProductGenerator, + data_dirs: list[Path], + db_path: Path, + n_procs: int = 1, +) -> int: + """ + Maps `product_generator` over `data_dirs`, writing each directory's products directly to + the `ProductStore` at `db_path` (one `write_run` transaction per directory). There is no + intermediate file and no separate sort step, since tag-based retrieval from `ProductStore` + is an indexed query. + + Args: + product_generator (ProductGenerator): A callable that returns a list of data products + given a working directory. Must be picklable (e.g. a module-level function) when + `n_procs > 1`, since it is sent to worker processes. + data_dirs (list[Path]): Directories over which to map `product_generator`. + db_path (Path): Path to the trendify output directory's `.db` file. Created if it + doesn't already exist. + n_procs (int): Number of worker processes. `n_procs == 1` runs sequentially in this + process (easier to debug with full tracebacks). `n_procs > 1` uses a + `ProcessPoolExecutor`, with one `ProductStore` connection opened per worker. + + Returns: + (int): total number of products written across all directories. + + """ + sorted_dirs = get_sorted_dirs(data_dirs) + db_path = Path(db_path) + + # Bootstrap the schema up front, from this process, before workers race to open it. + ProductStore.open(db_path).close() + + logger.info(f"Generating and writing DataProducts for {len(sorted_dirs)} run(s)...") + if n_procs > 1: + root_logger = logging.getLogger() + log_queue, listener = create_queue_listener(*root_logger.handlers) + listener.start() + try: + with ProcessPoolExecutor( + max_workers=n_procs, + initializer=_init_worker_with_logging, + initargs=( + str(db_path), + product_generator, + log_queue, + root_logger.level, + ), + ) as executor: + results = list(executor.map(_generate_and_write, sorted_dirs)) + finally: + # Blocks until every already-queued log record has been dispatched, so worker + # log output isn't lost or interleaved with what follows. + listener.stop() + else: + _init_worker(str(db_path), product_generator) + results = [_generate_and_write(d) for d in sorted_dirs] + + total = sum(results) + logger.info( + f"Finished generating DataProducts: {total} products written across " + f"{len(sorted_dirs)} run(s)" + ) + return total diff --git a/src/trendify/generator/histogrammer.py b/src/trendify/generator/histogrammer.py new file mode 100644 index 0000000..e8c79e2 --- /dev/null +++ b/src/trendify/generator/histogrammer.py @@ -0,0 +1,62 @@ +""" +Draws `HistogramEntry` products onto a matplotlib figure. Fed directly by `ProductStore` query +results, so there's no directory-loading state to manage. +""" + +from __future__ import annotations + +import logging + +from pydantic import BaseModel + +from trendify.base.helpers import Tag +from trendify.plotting.figure import SingleAxisFigure +from trendify.plotting.histogram import HistogramEntry + +__all__ = ["Histogrammer"] + +logger = logging.getLogger(__name__) + + +class Histogrammer(BaseModel): + """ + Draws `HistogramEntry` products sharing a tag onto a matplotlib axes, grouped by style. + """ + + @classmethod + def handle_histogram_entries( + cls, + tag: Tag, + histogram_entries: list[HistogramEntry], + saf: SingleAxisFigure | None = None, + ) -> SingleAxisFigure: + """ + Histograms the provided entries onto `saf` (creating a new figure if not given). + + Args: + tag (Tag): tag these entries belong to (used only if a new figure is created) + histogram_entries (list[HistogramEntry]): entries to histogram, grouped by + `HistogramStyle` (each distinct style becomes one `ax.hist` call/series) + saf (SingleAxisFigure | None): figure to draw onto; a new one is created if `None` + + Returns: + (SingleAxisFigure): the figure drawn onto + + """ + if saf is None: + saf = SingleAxisFigure.new(tag=tag) + + histogram_styles = set(h.style for h in histogram_entries) + logger.debug( + f"Histogramming {len(histogram_entries)} entries into {len(histogram_styles)} " + f"style(s) for {tag = }" + ) + for style in histogram_styles: + matching_entries = [e for e in histogram_entries if e.style == style] + values = [e.value for e in matching_entries] + if style is not None: + saf.ax.hist(values, **style.as_plot_kwargs()) + else: + saf.ax.hist(values) + + return saf diff --git a/src/trendify/generator/render.py b/src/trendify/generator/render.py new file mode 100644 index 0000000..88559e0 --- /dev/null +++ b/src/trendify/generator/render.py @@ -0,0 +1,193 @@ +""" +Static rendering pipeline: renders CSV tables and matplotlib figures directly from a +`ProductStore`. + +Design note: XY data (`Point2D`/`Trace2D`/`AxLine`) and histogram data (`HistogramEntry`) +sharing a tag are always rendered to separate figures/files (`.jpg` for XY, +`_histogram.jpg` for histograms), never overlaid onto one shared axes, so a tag used for +both product kinds gets two clean plots instead of a histogram silently drawn on top of an XY +plot. +""" + +from __future__ import annotations + +import logging +from pathlib import Path + +from trendify.formats.format2d import Format2D +from trendify.generator.histogrammer import Histogrammer +from trendify.generator.table_builder import TableBuilder +from trendify.generator.xy_data_plotter import XYDataPlotter +from trendify.plotting.axline import AxLine +from trendify.plotting.histogram import HistogramEntry +from trendify.plotting.point import Point2D +from trendify.plotting.trace import Trace2D +from trendify.store.product_store import ProductStore +from trendify.store.tags import tag_to_path_parts + +__all__ = ["make_include_files", "render_assets"] + +logger = logging.getLogger(__name__) + +INCLUDE_FILENAME = "include.md" + + +def render_assets( + store: ProductStore, + output_dir: Path, + dpi: int = 500, + no_tables: bool = False, + no_xy_plots: bool = False, + no_histograms: bool = False, +) -> None: + """ + Renders CSV tables and matplotlib figures for every tag in `store`, writing them under + `output_dir` (nested per tag). + + Args: + store (ProductStore): store to read products from (a read-only connection is fine, + since `render_assets` never writes; see `ProductStore.open(..., readonly=True)`) + output_dir (Path): directory tables/figures are written under + dpi (int): resolution for saved matplotlib figures + no_tables (bool): suppress `TableEntry` -> CSV output + no_xy_plots (bool): suppress `Point2D`/`Trace2D`/`AxLine` -> matplotlib XY plot output + no_histograms (bool): suppress `HistogramEntry` -> matplotlib histogram output + + """ + output_dir = Path(output_dir) + + for tag in store.tag_tree(): + if not no_tables: + melted = store.get_table_entries(tag) + if melted.height > 0: + logger.info(f"Making tables for {tag = }") + TableBuilder.process_table_entries( + tag=tag, melted=melted, out_dir=output_dir + ) + logger.info(f"Finished tables for {tag = }") + + if not no_xy_plots: + points = store.get_products_of_type(Point2D, tag=tag) + traces = store.get_products_of_type(Trace2D, tag=tag) + axlines = store.get_products_of_type(AxLine, tag=tag) + + if points or traces or axlines: + logger.info(f"Making xy plot for {tag = }") + saf = XYDataPlotter.handle_points_and_traces( + tag=tag, points=points, traces=traces, axlines=axlines + ) + format2ds = [ + p.format2d + for p in (*points, *traces, *axlines) + if p.format2d is not None + ] + if format2ds: + saf.apply_format(Format2D.union_from_iterable(format2ds)) + + save_path = output_dir.joinpath(*tag_to_path_parts(tag)).with_suffix( + ".jpg" + ) + save_path.parent.mkdir(parents=True, exist_ok=True) + logger.info(f"Saving to {save_path}") + saf.savefig(save_path, dpi=dpi) + logger.info(f"Finished xy plot for {tag = }") + + if not no_histograms: + histogram_entries = store.get_products_of_type(HistogramEntry, tag=tag) + + if histogram_entries: + logger.info(f"Making histogram for {tag = }") + saf = Histogrammer.handle_histogram_entries( + tag=tag, histogram_entries=histogram_entries + ) + format2ds = [ + h.format2d for h in histogram_entries if h.format2d is not None + ] + if format2ds: + saf.apply_format(Format2D.union_from_iterable(format2ds)) + + *parents, stem = tag_to_path_parts(tag) + save_path = output_dir.joinpath(*parents, f"{stem}_histogram.jpg") + save_path.parent.mkdir(parents=True, exist_ok=True) + logger.info(f"Saving to {save_path}") + saf.savefig(save_path, dpi=dpi) + logger.info(f"Finished histogram for {tag = }") + + +def make_include_files( + root_dir: Path, + local_server_path: str | Path | None = None, + mkdocs_include_dir: str | Path | None = None, + heading_level: int | None = None, +) -> None: + """ + Makes nested `include.md` files (MkDocs `{% include %}`/`{{ read_csv(...) }}` snippets) for + the figures/tables/subdirectories under `root_dir`. This is a pure filesystem walk over + already-rendered assets and doesn't touch `ProductStore` at all. + + Args: + root_dir (Path): directory for which include files should be recursively generated + local_server_path (str | Path | None): prefix to use for figure paths, for serving + figures from a local dev server alongside `mkdocs serve` + mkdocs_include_dir (str | Path | None): path matching mkdocs.yml's `include_dir`, used + to make included paths relative to it + heading_level (int | None): base Markdown heading level for per-directory headers + + """ + root_dir = Path(root_dir) + dirs = sorted(root_dir.glob("**/")) + if not dirs: + return + + min_len = min(len(list(p.parents)) for p in dirs) + for s in dirs: + child_dirs = sorted(s.glob("*/")) + tables_to_include = [ + x + for pattern in ("*pivot.csv", "*stats.csv") + for x in s.glob(pattern, case_sensitive=False) + ] + figures_to_include = [ + x + for pattern in ("*.jpg", "*.png") + for x in s.glob(pattern, case_sensitive=False) + ] + children_to_include = [ + c.resolve().joinpath(INCLUDE_FILENAME) for c in child_dirs + ] + + if local_server_path is not None: + figures_to_include = [ + Path(local_server_path).joinpath(x.relative_to(root_dir)) + for x in figures_to_include + ] + if mkdocs_include_dir is not None: + mkdocs_include_dir = Path(mkdocs_include_dir) + tables_to_include = [ + x.relative_to(mkdocs_include_dir.parent) for x in tables_to_include + ] + children_to_include = [ + x.relative_to(mkdocs_include_dir) for x in children_to_include + ] + + fig_inclusion_statements = sorted(f"![]({x})" for x in figures_to_include) + table_inclusion_statements = sorted( + f"{{{{ read_csv('{x}', disable_numparse=True) }}}}" + for x in tables_to_include + ) + child_inclusion_statements = sorted( + "{% include '" + str(x) + "' %}" for x in children_to_include + ) + inclusions = ( + table_inclusion_statements + + fig_inclusion_statements + + child_inclusion_statements + ) + + header = "" + if heading_level is not None and len(inclusions) > 1: + depth = len(list(s.parents)) - min_len + header = "#" * (depth + heading_level) + s.name + + text = "\n\n".join([header, *inclusions]) + s.joinpath(INCLUDE_FILENAME).write_text(text) diff --git a/src/trendify/generator/table_builder.py b/src/trendify/generator/table_builder.py new file mode 100644 index 0000000..32609e4 --- /dev/null +++ b/src/trendify/generator/table_builder.py @@ -0,0 +1,173 @@ +""" +Builds melted/pivot/stats CSV tables for `TableEntry` products, from `ProductStore` query +results, using Polars. `ProductStore.get_table_entries` already hands back the melted +row/col/value/unit shape as a `pl.DataFrame` via one indexed SQL query, so this module only +needs to pivot and compute statistics, not reparse or reshape raw records. +""" + +from __future__ import annotations + +import logging +from pathlib import Path + +import polars as pl +from pydantic import BaseModel + +from trendify.base.helpers import Tag +from trendify.store.tags import tag_to_path_parts + +__all__ = ["TableBuilder"] + +logger = logging.getLogger(__name__) + + +class TableBuilder(BaseModel): + """ + Builds tables (melted, pivot, and stats) from `TableEntry` products for a given tag. + """ + + @classmethod + def process_table_entries( + cls, tag: Tag, melted: pl.DataFrame, out_dir: Path + ) -> None: + """ + Saves CSV files for the melted data frame, pivot dataframe, and pivot dataframe stats. + + File names all use the tag with different suffixes: `_melted.csv`, + `_pivot.csv`, `_stats.csv`. + + Args: + tag (Tag): product tag these entries belong to + melted (pl.DataFrame): row/col/value/unit table, as returned by + `ProductStore.get_table_entries` + out_dir (Path): directory under which the CSVs are saved (nested per tag) + + """ + if melted.height == 0: + return + + *parents, stem = tag_to_path_parts(tag) + save_dir = out_dir.joinpath(*parents) + save_dir.mkdir(parents=True, exist_ok=True) + logger.info(f"Saving tables for {tag = } to {save_dir}/{stem}_*.csv") + + _write_csv(melted, save_dir / f"{stem}_melted.csv") + + pivot = cls.pivot_table(melted) + if pivot is not None: + _write_csv(pivot, save_dir / f"{stem}_pivot.csv") + + try: + stats = cls.get_stats_table(pivot) + if stats is not None: + stats.write_csv(save_dir / f"{stem}_stats.csv") + else: + logger.debug( + f"No stats table for {tag = }: no numeric pivoted columns" + ) + except Exception as e: + logger.error( + f"Could not generate stats table for {tag = }. Error: {e!s}" + ) + else: + logger.debug( + f"No pivot table for {tag = }: a (row, col) pair repeats in the melted table" + ) + + @classmethod + def pivot_table(cls, melted: pl.DataFrame) -> pl.DataFrame | None: + """ + Attempts to pivot a melted row/col/value DataFrame into wide form. + + Args: + melted (pl.DataFrame): DataFrame with `row`/`col`/`value` columns + + Returns: + (pl.DataFrame | None): pivoted DataFrame, or `None` if the pivot fails because a + `(row, col)` pair repeats. + + """ + try: + return melted.pivot(on="col", index="row", values="value") + except pl.exceptions.ComputeError: + return None + + @classmethod + def get_stats_table(cls, pivot: pl.DataFrame) -> pl.DataFrame | None: + """ + Computes min/mean/max/3-sigma statistics for each pivoted column. + + Non-numeric values are coerced to null rather than causing the whole column to be + skipped. + + Args: + pivot (pl.DataFrame): pivoted table (as returned by `pivot_table`), with a `"row"` + index column plus one column per pivoted `col` value. + + Returns: + (pl.DataFrame | None): stats table with a `"Name"` column (one row per pivoted + column) plus `min`/`mean`/`max`/`sigma3` columns, or `None` if there are no + value columns or every computed statistic is null. + + """ + value_columns = [c for c in pivot.columns if c != "row"] + if not value_columns: + return None + + rows = [] + any_stat = False + for col in value_columns: + numeric = _coerce_numeric(pivot[col]) + mn, mean, mx, std = ( + numeric.min(), + numeric.mean(), + numeric.max(), + numeric.std(), + ) + if any(v is not None for v in (mn, mean, mx, std)): + any_stat = True + rows.append( + { + "Name": col, + "min": mn, + "mean": mean, + "max": mx, + "sigma3": None if std is None else std * 3, + } + ) + if not any_stat: + return None + return pl.DataFrame(rows) + + +def _coerce_numeric(series: pl.Series) -> pl.Series: + """Best-effort element-wise cast to float, `None` for values that don't convert.""" + if series.dtype != pl.Object: + return series.cast(pl.Float64, strict=False) + + def _to_float(v): + if v is None: + return None + try: + return float(v) + except (TypeError, ValueError): + return None + + return pl.Series( + series.name, [_to_float(v) for v in series.to_list()], dtype=pl.Float64 + ) + + +def _write_csv(df: pl.DataFrame, path: Path) -> None: + """ + Writes `df` to CSV, stringifying any `Object`-dtype columns first. Polars' CSV writer + doesn't support `Object` directly, and `TableEntry.value`'s heterogeneous float/str/bool + union is stored as `Object` by `ProductStore.get_table_entries`. + """ + object_cols = [c for c, dtype in df.schema.items() if dtype == pl.Object] + if object_cols: + df = df.with_columns( + pl.Series(c, [None if v is None else str(v) for v in df[c].to_list()]) + for c in object_cols + ) + df.write_csv(path) diff --git a/src/trendify/generator/xy_data_plotter.py b/src/trendify/generator/xy_data_plotter.py new file mode 100644 index 0000000..963dc13 --- /dev/null +++ b/src/trendify/generator/xy_data_plotter.py @@ -0,0 +1,77 @@ +""" +Draws `Point2D`/`Trace2D`/`AxLine` products onto a matplotlib figure. Fed directly by +`ProductStore` query results, so there's no directory-loading state to manage. +""" + +from __future__ import annotations + +import logging + +from pydantic import BaseModel + +from trendify.base.helpers import Tag +from trendify.plotting.axline import AxLine +from trendify.plotting.figure import SingleAxisFigure +from trendify.plotting.point import Point2D +from trendify.plotting.trace import Trace2D + +__all__ = ["XYDataPlotter"] + +logger = logging.getLogger(__name__) + + +class XYDataPlotter(BaseModel): + """ + Draws `Point2D`/`Trace2D`/`AxLine` products sharing a tag onto a matplotlib axes. + """ + + @classmethod + def handle_points_and_traces( + cls, + tag: Tag, + points: list[Point2D], + traces: list[Trace2D], + axlines: list[AxLine], + saf: SingleAxisFigure | None = None, + ) -> SingleAxisFigure: + """ + Plots points (scattered, grouped by marker), traces, and axlines onto `saf`. + + Args: + tag (Tag): tag these products belong to (used only if a new figure is created) + points (list[Point2D]): points to scatter, grouped by `Marker` (each distinct + marker becomes one `ax.scatter` call/series) + traces (list[Trace2D]): traces to plot + axlines (list[AxLine]): axis lines to plot + saf (SingleAxisFigure | None): figure to draw onto; a new one is created if `None` + + Returns: + (SingleAxisFigure): the figure drawn onto + + """ + if saf is None: + saf = SingleAxisFigure.new(tag=tag) + + logger.debug( + f"Plotting {len(points)} point(s), {len(traces)} trace(s), {len(axlines)} " + f"axline(s) for {tag = }" + ) + if points: + markers = set(p.marker for p in points) + for marker in markers: + matching_points = [p for p in points if p.marker == marker] + x = [p.x for p in matching_points] + y = [p.y for p in matching_points] + if x and y: + if marker is not None: + saf.ax.scatter(x, y, **marker.as_scatter_plot_kwargs()) + else: + saf.ax.scatter(x, y) + + for trace in traces: + trace.plot_to_ax(saf.ax) + + for axline in axlines: + axline.plot_to_ax(saf.ax) + + return saf diff --git a/src/trendify/log.py b/src/trendify/log.py new file mode 100644 index 0000000..19cbc6c --- /dev/null +++ b/src/trendify/log.py @@ -0,0 +1,195 @@ +""" +Trendify's logging setup: a Rich-formatted console handler plus a rotating log file +(`setup_logger`), a multiprocessing-safe queue/listener pair for routing worker-process log +records back through those same handlers (`create_queue_listener`/`worker_init`), and +`set_log_level` for a Python caller who just wants to control verbosity. +""" + +from __future__ import annotations + +import logging +import multiprocessing +from logging.handlers import QueueHandler, QueueListener, RotatingFileHandler +from pathlib import Path +from typing import Any + +from rich.console import Console +from rich.logging import RichHandler +from rich.theme import Theme + +__all__ = [ + "create_queue_listener", + "get_logger", + "set_log_level", + "setup_logger", + "worker_init", +] + +# Library-standard courtesy: don't let logging print "No handlers could be found for logger +# trendify.*" if the consuming application never configures logging at all. This only affects +# the "nothing configured anywhere" case. An application that calls `logging.basicConfig()` +# or `setup_logger()` still sees everything, since a `NullHandler` doesn't stop propagation. +logging.getLogger("trendify").addHandler(logging.NullHandler()) + +theme = Theme( + { + "logging.level.debug": "bold dodger_blue1", + "logging.level.info": "bold green", + "logging.level.warning": "bold yellow", + "logging.level.error": "bold red", + "path": "dim white", + "message": "white", + } +) + + +class TerminalFilter(logging.Filter): + def filter(self, record: logging.LogRecord): + # Block if 'file_only' is True + return not getattr(record, "file_only", False) + + +class FileFilter(logging.Filter): + def filter(self, record: logging.LogRecord): + # Block if 'terminal_only' is True + return not getattr(record, "terminal_only", False) + + +def get_logger(name: str): + logger = logging.getLogger(name) + + if not logger.hasHandlers(): + logger.addHandler(logging.NullHandler()) + return logger + + +def setup_logger( + level=logging.INFO, + terminal: bool = True, + log_file: Path | str | None = Path("trendify.log"), + max_bytes: int = 10 * 1024 * 1024, # 10MB + backup_count: int = 5, +) -> logging.Logger: + """Shortcut to a sensible trendify logger using Rich for the terminal.""" + logger = logging.getLogger() + logger.setLevel(level) + + # avoid double logging by preventing logs from being sent to the root logger + logger.propagate = False + + if not terminal and log_file is None: + return logger + + # clear existing handlers + if logger.hasHandlers(): + logger.handlers.clear() + + # --- RICH HANDLER FOR TERMINAL --- + if terminal: + console = Console(theme=theme) + rich_handler = RichHandler( + console=console, + show_time=True, + log_time_format="[%Y-%m-%d %H:%M:%S]", + show_path=True, + enable_link_path=False, + # highlighter=None, + markup=True, # allows color in the log message itself currently disabled in case an array is logged. Square brackets will break logging. + rich_tracebacks=True, + ) + rich_handler.addFilter(TerminalFilter()) + logger.addHandler(rich_handler) + + # --- PLAIN TEXT HANDLER --- + if log_file is not None: + log_file = Path(log_file) + log_file.parent.mkdir(parents=True, exist_ok=True) + + file_format = ( + "%(asctime)s [%(levelname)s] %(pathname)s:%(lineno)d - %(message)s" + ) + file_handler = RotatingFileHandler( + log_file, maxBytes=max_bytes, backupCount=backup_count + ) + file_handler.setFormatter(logging.Formatter(file_format)) + file_handler.addFilter(FileFilter()) + logger.addHandler(file_handler) + + return logger + + +def create_queue_listener( + *handlers: logging.Handler, +) -> tuple[multiprocessing.Queue[Any], QueueListener]: + """ + Creates a multiprocessing-safe log queue plus a `QueueListener` that drains it in the + calling process and dispatches records to `handlers`. + + This is what makes multiprocess logging safe, including on Windows: pair it with + `worker_init` in each worker process, so that no worker ever opens the real console/file + handlers directly. Only the listener, running in the parent process, does that. On Windows, + the default `spawn` start method means workers don't inherit the parent's configured + handlers at all; on POSIX with `fork`, workers *do* inherit them, which is its own hazard + (multiple processes writing to the same file concurrently). Routing everything through one + queue and one listener avoids both failure modes uniformly. + + Caller owns the listener's lifecycle: call `.start()` before spinning up worker processes + and `.stop()` once they've finished (a `try`/`finally` around a `ProcessPoolExecutor` block + is the natural place, since `.stop()` blocks until every already-queued record has been + dispatched, so no log messages are lost when the pool shuts down). + + Args: + *handlers (logging.Handler): the real handlers worker log records should ultimately + reach (e.g. the handlers already attached to the root logger by `setup_logger`) + + Returns: + (tuple[multiprocessing.Queue, QueueListener]): the queue to hand to worker processes + (via `ProcessPoolExecutor`'s `initializer`/`initargs`, calling `worker_init` in + each) and the not-yet-started listener draining it + + """ + log_queue: multiprocessing.Queue[Any] = multiprocessing.Queue(-1) + listener = QueueListener(log_queue, *handlers, respect_handler_level=True) + return log_queue, listener + + +def worker_init(queue: multiprocessing.Queue[Any], level: int) -> None: + """ + Initializes a worker process's root logger to ship every record through `queue` instead of + touching a real handler directly. Pair with `create_queue_listener`, called once in the + parent process before workers start. + + Args: + queue (multiprocessing.Queue): queue created by `create_queue_listener` + level (int): log level to apply to this worker's root logger + + """ + root = logging.getLogger() + + # Clear any handlers inherited via fork (POSIX default) so this worker never writes + # directly to a file/console shared with the parent or sibling workers. Only the + # QueueHandler below is installed, so everything funnels through the parent's + # QueueListener. + root.handlers.clear() + + handler = QueueHandler(queue) + root.addHandler(handler) + + root.setLevel(level) + + +def set_log_level(level: int | str, logger_name: str = "trendify") -> None: + """ + Sets the log level for `logger_name` (defaults to the top-level `"trendify"` logger, i.e. + every `trendify.*` module logger, since none of them set an explicit level of their own + and so inherit whatever their nearest ancestor has set). This is the supported way for + a Python caller to control trendify's log verbosity without needing to call `setup_logger` + or otherwise touch logging internals directly. + + Args: + level (int | str): a `logging` level (e.g. `logging.DEBUG`) or level name (e.g. + `"DEBUG"`) + logger_name (str): logger to set the level on; defaults to `"trendify"` + + """ + logging.getLogger(logger_name).setLevel(level) diff --git a/src/trendify/pipeline.py b/src/trendify/pipeline.py new file mode 100644 index 0000000..03de6b7 --- /dev/null +++ b/src/trendify/pipeline.py @@ -0,0 +1,150 @@ +""" +Top-level pipeline API: generate -> render -> include files, backed by one `ProductStore` +`.db` file per output directory. `TrendifyPipeline` is the single implementation both the +`trendify` CLI (`trendify.cli`) and direct Python callers use. The CLI is a thin +argument-parsing layer over this class, not a separate code path. +""" + +from __future__ import annotations + +import logging +from pathlib import Path + +from pydantic import BaseModel, Field + +from trendify.base.data_product import ProductGenerator +from trendify.generator.generate import generate_products +from trendify.generator.render import make_include_files, render_assets +from trendify.store.product_store import ProductStore + +__all__ = ["TrendifyPipeline"] + +logger = logging.getLogger(__name__) + + +class TrendifyPipeline(BaseModel): + """ + Runs the trendify pipeline (generate -> render -> include files) against one output + directory, backed by a single `ProductStore` `.db` file. + + Args: + output_dir (Path): directory the pipeline reads/writes under. Holds `trendify.db` + (the `ProductStore`) and an `assets/` subdirectory (rendered CSVs/figures). + n_procs (int): number of worker processes used by `generate`. + + """ + + output_dir: Path + n_procs: int = Field(default=1, ge=1) + + @property + def db_path(self) -> Path: + return self.output_dir / "trendify.db" + + @property + def assets_dir(self) -> Path: + return self.output_dir / "assets" + + def generate( + self, + product_generator: ProductGenerator, + data_dirs: list[Path], + ) -> int: + """ + Maps `product_generator` over `data_dirs`, writing products directly to this + pipeline's `ProductStore`. See `trendify.generator.generate.generate_products`. + + Returns: + (int): total number of products written + + """ + logger.info( + f"Generating products for {len(data_dirs)} directory(ies) into {self.db_path} " + f"({self.n_procs} worker process(es))" + ) + total = generate_products( + product_generator=product_generator, + data_dirs=data_dirs, + db_path=self.db_path, + n_procs=self.n_procs, + ) + logger.info(f"Generated {total} product(s)") + return total + + def render( + self, + dpi: int = 500, + no_tables: bool = False, + no_xy_plots: bool = False, + no_histograms: bool = False, + ) -> None: + """ + Renders CSV tables and matplotlib figures for every tag into `self.assets_dir`. See + `trendify.generator.render.render_assets`. + + """ + logger.info(f"Rendering assets from {self.db_path} into {self.assets_dir}") + with ProductStore.open(self.db_path, readonly=True) as store: + render_assets( + store, + self.assets_dir, + dpi=dpi, + no_tables=no_tables, + no_xy_plots=no_xy_plots, + no_histograms=no_histograms, + ) + logger.info(f"Finished rendering assets into {self.assets_dir}") + + def make_include_files( + self, + heading_level: int | None = 2, + local_server_path: str | Path | None = None, + mkdocs_include_dir: str | Path | None = None, + ) -> None: + """ + Writes nested MkDocs `include.md` files for `self.assets_dir`. See + `trendify.generator.render.make_include_files`. + + """ + logger.info(f"Writing include.md files under {self.assets_dir}") + make_include_files( + root_dir=self.assets_dir, + local_server_path=local_server_path, + mkdocs_include_dir=mkdocs_include_dir, + heading_level=heading_level, + ) + + def run( + self, + product_generator: ProductGenerator, + data_dirs: list[Path], + dpi: int = 500, + no_tables: bool = False, + no_xy_plots: bool = False, + no_histograms: bool = False, + no_include_files: bool = False, + ) -> int: + """ + Runs the full pipeline: generate, then render (unless all three asset kinds are + suppressed), then write include files (unless suppressed). + + Returns: + (int): total number of products written by `generate` + + """ + logger.info(f"Running full pipeline (generate -> render) for {self.output_dir}") + total = self.generate(product_generator=product_generator, data_dirs=data_dirs) + + no_assets = no_tables and no_xy_plots and no_histograms + if not no_assets: + self.render( + dpi=dpi, + no_tables=no_tables, + no_xy_plots=no_xy_plots, + no_histograms=no_histograms, + ) + if not no_include_files: + self.make_include_files() + + logger.info(f"Finished full pipeline for {self.output_dir}") + return total diff --git a/src/trendify/plotting/axline.py b/src/trendify/plotting/axline.py index b8c2ea4..3297ec0 100644 --- a/src/trendify/plotting/axline.py +++ b/src/trendify/plotting/axline.py @@ -1,7 +1,11 @@ +""" +`AxLine`: a horizontal or vertical reference line drawn on a plot, styled with a `Pen`. +""" + from __future__ import annotations import logging -from enum import Enum +from enum import StrEnum from matplotlib.axes import Axes from pydantic import ConfigDict @@ -15,7 +19,7 @@ logger = logging.getLogger(__name__) -class LineOrientation(Enum): +class LineOrientation(StrEnum): """ Defines orientation for axis lines diff --git a/src/trendify/plotting/figure.py b/src/trendify/plotting/figure.py index 8bf76d4..d1a31e7 100644 --- a/src/trendify/plotting/figure.py +++ b/src/trendify/plotting/figure.py @@ -1,3 +1,10 @@ +""" +`SingleAxisFigure` (matplotlib) and `PlotlyFigure` (Plotly) wrap a figure/axes pair and know how +to apply a `Format2D`/`Grid` to it and save it to disk. These are the two rendering targets +every `PlottableData2D` subclass draws itself onto (`plot_to_ax` for matplotlib, `add_to_plotly` +for Plotly). +""" + from __future__ import annotations from dataclasses import dataclass, field @@ -6,6 +13,8 @@ import warnings import logging +from typing import Any, cast + import numpy as np import plotly.graph_objects as go @@ -163,6 +172,7 @@ def savefig(self, path: Path, dpi: int = 500): (Self): Returns self """ + logger.debug(f"Saving matplotlib figure for {self.tag = } to {path} ({dpi = })") self.fig.savefig(path, dpi=dpi) return self @@ -203,7 +213,7 @@ def apply_format(self, format2d: Format2D): format2d (Format2D): format information to apply to the figure """ - layout_updates = {} + layout_updates: dict[str, Any] = {} # Set titles if format2d.title_fig is not None and format2d.title_ax is not None: @@ -215,9 +225,9 @@ def apply_format(self, format2d: Format2D): # Set axis labels if format2d.label_x is not None: - layout_updates["xaxis"] = {"title": format2d.label_x} + layout_updates["xaxis"] = cast(dict[str, Any], {"title": format2d.label_x}) if format2d.label_y is not None: - layout_updates["yaxis"] = {"title": format2d.label_y} + layout_updates["yaxis"] = cast(dict[str, Any], {"title": format2d.label_y}) # Set axis ranges def _log10(v: float | None): @@ -225,7 +235,7 @@ def _log10(v: float | None): if format2d.lim_x_min is not None or format2d.lim_x_max is not None: if "xaxis" not in layout_updates: - layout_updates["xaxis"] = {} + layout_updates["xaxis"] = cast(dict[str, Any], {}) if format2d.scale_x == AxisScale.LOG: layout_updates["xaxis"]["range"] = [ @@ -233,8 +243,9 @@ def _log10(v: float | None): _log10(format2d.lim_x_max), ] elif format2d.scale_x == AxisScale.LINEAR: - # v1 bugfix: this branch previously re-checked `== AxisScale.LOG`, - # making the plain (non-log) range-setting path unreachable. + # Deliberately checks LINEAR explicitly rather than falling through an + # unconditional else, so a third AxisScale value can't silently reuse the + # log-scaled range below. layout_updates["xaxis"]["range"] = [ format2d.lim_x_min, format2d.lim_x_max, @@ -242,14 +253,14 @@ def _log10(v: float | None): if format2d.lim_y_min is not None or format2d.lim_y_max is not None: if "yaxis" not in layout_updates: - layout_updates["yaxis"] = {} + layout_updates["yaxis"] = cast(dict[str, Any], {}) if format2d.scale_y == AxisScale.LOG: layout_updates["yaxis"]["range"] = [ _log10(format2d.lim_y_min), _log10(format2d.lim_y_max), ] elif format2d.scale_y == AxisScale.LINEAR: - # same fix as above, for the y axis + # Same reasoning as the x-axis branch above. layout_updates["yaxis"]["range"] = [ format2d.lim_y_min, format2d.lim_y_max, @@ -258,12 +269,12 @@ def _log10(v: float | None): # Set axis scales if format2d.scale_x is not None: if "xaxis" not in layout_updates: - layout_updates["xaxis"] = {} + layout_updates["xaxis"] = cast(dict[str, Any], {}) layout_updates["xaxis"]["type"] = format2d.scale_x.value if format2d.scale_y is not None: if "yaxis" not in layout_updates: - layout_updates["yaxis"] = {} + layout_updates["yaxis"] = cast(dict[str, Any], {}) layout_updates["yaxis"]["type"] = format2d.scale_y.value # Set legend diff --git a/src/trendify/plotting/histogram.py b/src/trendify/plotting/histogram.py index cbe8b22..bdc2669 100644 --- a/src/trendify/plotting/histogram.py +++ b/src/trendify/plotting/histogram.py @@ -1,3 +1,9 @@ +""" +`HistogramEntry` (a single value to be binned into a matplotlib/Plotly histogram) and its +`HistogramStyle` (bar color, opacity, bin count, and the derived RGBA/contrast-color helpers +used by both renderers). +""" + from __future__ import annotations import logging @@ -5,12 +11,12 @@ import plotly.graph_objects as go from matplotlib.colors import to_rgba -from numpydantic import NDArray, Shape from pydantic import ConfigDict, Field from trendify.base.helpers import HashableBase, Tags from trendify.formats.format2d import PlottableData2D from trendify.plotting.figure import PlotlyFigure +from trendify.typing import VecN __all__ = ["HistogramEntry", "HistogramStyle"] @@ -28,7 +34,7 @@ class HistogramStyle(HashableBase): alpha_edge (float): Opacity of bar edge alpha_face (float): Opacity of bar face linewidth (float): Line width of bar outline - bins (int | list[int] | Tuple[int] | NDArray[Shape["*"], int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist]) + bins (int | list[int] | Tuple[int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist]) """ @@ -39,7 +45,7 @@ class HistogramStyle(HashableBase): alpha_face: float = 0.3 linewidth: float = 2 zorder: int = 1 - bins: int | list[int] | tuple[int] | NDArray[Shape["*"], int] | None = None + bins: int | list[int] | tuple[int] | VecN | None = None def as_plot_kwargs(self): """ @@ -197,7 +203,7 @@ def add_to_plotly(self, plotly_figure: PlotlyFigure): for trace in traces: if trace.legendgroup == legend_key: # Append the value to the existing trace's x data - trace.x = list(trace.x) + [self.value] + trace.x = [*(trace.x or ()), self.value] return plotly_figure metadata_html = ( diff --git a/src/trendify/plotting/point.py b/src/trendify/plotting/point.py index ee7a01f..15c01af 100644 --- a/src/trendify/plotting/point.py +++ b/src/trendify/plotting/point.py @@ -1,3 +1,7 @@ +""" +`Point2D`: a single scattered (x, y) point, styled with a `Marker`. +""" + from __future__ import annotations import logging diff --git a/src/trendify/plotting/trace.py b/src/trendify/plotting/trace.py index 5970c32..7845a65 100644 --- a/src/trendify/plotting/trace.py +++ b/src/trendify/plotting/trace.py @@ -1,3 +1,8 @@ +""" +`Trace2D`: a line/scatter trace built from a list of `Point2D`s, styled with a `Pen`. Use the +`Trace2D.from_xy` constructor rather than building the `points` list by hand. +""" + from __future__ import annotations import logging @@ -5,7 +10,6 @@ import numpy as np import plotly.graph_objects as go -from numpydantic import NDArray, Shape from pydantic import ConfigDict from trendify.base.helpers import Tags @@ -14,6 +18,7 @@ from trendify.plotting.figure import PlotlyFigure from trendify.plotting.point import Point2D from trendify.styling.marker import Marker +from trendify.typing import VecN if TYPE_CHECKING: from matplotlib.axes import Axes @@ -47,23 +52,23 @@ class Trace2D(XYData): pen: Pen = Pen() @property - def x(self) -> NDArray[Shape["*"], float]: + def x(self) -> VecN: """ Returns an array of x values from `self.points` Returns: - (NDArray[Shape["*"], float]): array of x values from `self.points` + (VecN): array of x values from `self.points` """ return np.array([p.x for p in self.points]) @property - def y(self) -> NDArray[Shape["*"], float]: + def y(self) -> VecN: """ Returns an array of y values from `self.points` Returns: - (NDArray[Shape["*"], float]): array of y values from `self.points` + (VecN): array of y values from `self.points` """ return np.array([p.y for p in self.points]) @@ -91,8 +96,8 @@ def propagate_format2d_and_pen(self, marker_symbol: str = ".") -> None: def from_xy( cls, tags: Tags, - x: NDArray[Shape["*"], float], - y: NDArray[Shape["*"], float], + x: VecN, + y: VecN, pen: Pen = Pen(), format2d: Format2D | None = None, ): @@ -101,8 +106,8 @@ def from_xy( Args: tags (Tags): Tags used to sort data products - x (NDArray[Shape["*"], float]): x values - y (NDArray[Shape["*"], float]): y values + x (VecN): x values + y (VecN): y values pen (Pen): Style and label for trace format2d (Format2D | None): Format to apply to plot diff --git a/src/trendify/store/__init__.py b/src/trendify/store/__init__.py index 61d9609..858138c 100644 --- a/src/trendify/store/__init__.py +++ b/src/trendify/store/__init__.py @@ -12,6 +12,7 @@ from trendify.store.tags import ( decode_tag, encode_tag, + tag_to_path_parts, ) __all__ = [ @@ -22,5 +23,6 @@ "decode_tag", "encode_tag", "product_store", + "tag_to_path_parts", "tags", ] diff --git a/src/trendify/store/db.py b/src/trendify/store/db.py index d0ce3f0..8396672 100644 --- a/src/trendify/store/db.py +++ b/src/trendify/store/db.py @@ -1,22 +1,23 @@ """ -SQLite connection factory, pragmas, and schema management for the trendify v2 store. - -Design (see rewrite_reference/OVERVIEW.md and the v2 architecture plan for full context): +SQLite connection factory, pragmas, and schema management for the trendify store. - One `.db` file per trendify output directory, opened by every worker process independently. -- WAL mode gives concurrent readers + one writer without the readers blocking on the writer; - `busy_timeout` replaces v1's hand-rolled `FileLock` for the writer-vs-writer case. +- WAL mode gives concurrent readers plus one writer without the readers blocking on the + writer; `busy_timeout` handles the writer-vs-writer case without any external file locking. - Schema versioning via `PRAGMA user_version`, checked/applied on every `connect()` call so opening a fresh `.db` file bootstraps it and opening an existing one verifies compatibility. """ from __future__ import annotations +import logging import sqlite3 from pathlib import Path __all__ = ["SCHEMA_VERSION", "connect"] +logger = logging.getLogger(__name__) + SCHEMA_VERSION = 1 _SCHEMA_DDL = """ @@ -64,14 +65,15 @@ def connect(db_path: Path, *, readonly: bool = False) -> sqlite3.Connection: Args: db_path (Path): path to the trendify output directory's `.db` file - readonly (bool): open in read-only mode (`mode=ro` URI) — used by render workers that - only ever query, never write, so they can safely run concurrently with an + readonly (bool): open in read-only mode (`mode=ro` URI), for render workers that only + ever query and never write, so they can safely run concurrently with an in-progress writer under WAL. Returns: (sqlite3.Connection): a configured connection, with row access by column name. """ + logger.debug(f"Connecting to {db_path = } ({readonly = })") if readonly: uri = f"file:{db_path}?mode=ro" conn = sqlite3.connect(uri, uri=True) @@ -94,16 +96,23 @@ def connect(db_path: Path, *, readonly: bool = False) -> sqlite3.Connection: def _ensure_schema(conn: sqlite3.Connection) -> None: """ Bootstraps the schema on a fresh database, or verifies the on-disk schema version matches - `SCHEMA_VERSION` on an existing one. There is deliberately no migration logic yet (v2 has - only ever had one schema version) — this is the hook future migrations attach to. + `SCHEMA_VERSION` on an existing one. There is deliberately no migration logic yet, since + there has only ever been one schema version; this is the hook future migrations attach to. """ (version,) = conn.execute("PRAGMA user_version").fetchone() if version == 0: + logger.info(f"Bootstrapping fresh schema (version {SCHEMA_VERSION})") conn.executescript(_SCHEMA_DDL) conn.execute(f"PRAGMA user_version={SCHEMA_VERSION}") conn.commit() elif version != SCHEMA_VERSION: + logger.error( + f"Database schema version {version} does not match expected " + f"{SCHEMA_VERSION}, and no migration path exists yet." + ) raise RuntimeError( f"Database schema version {version} does not match expected " f"{SCHEMA_VERSION}, and no migration path exists yet." ) + else: + logger.debug(f"Schema version {version} verified") diff --git a/src/trendify/store/product_store.py b/src/trendify/store/product_store.py index 282a04a..f6a67d1 100644 --- a/src/trendify/store/product_store.py +++ b/src/trendify/store/product_store.py @@ -1,33 +1,42 @@ """ -ProductStore: the SQLite-backed replacement for v1's DataProductCollection file-glob methods. - -Pydantic objects remain what flows in and out everywhere -- only the storage/query mechanics -change. See rewrite_reference/OVERVIEW.md and the v2 architecture plan for the full design -rationale (why SQLite/WAL, why this schema shape, why no merge phase). +`ProductStore`: the SQLite-backed store for tagged `DataProduct`s. + +Pydantic objects are what flow in and out everywhere; storage and querying happen entirely +underneath that interface. Every product's full JSON payload is stored opaquely, so new +`DataProduct` subclasses are storable and queryable the moment they're registered, with no +schema migration required. Tags are normalized into an indexed join table, so a product with N +tags costs one payload row plus N small index rows rather than N duplicated payloads. `TableEntry` +is the one exception: it gets real SQL columns (row/col/value/unit) instead of an opaque payload, +since pivoting and computing per-column statistics is naturally SQL-shaped. """ from __future__ import annotations import datetime +import logging import sqlite3 from collections.abc import Iterable, Iterator +from dataclasses import dataclass from pathlib import Path +from typing import cast import polars as pl from trendify.base.data_product import DataProduct -from trendify.base.helpers import Tag +from trendify.base.helpers import R, Tag from trendify.formats.table import TableEntry from trendify.store import db from trendify.store.tags import decode_tag, encode_tag __all__ = ["ProductStore"] +logger = logging.getLogger(__name__) + def _leaf_type_names(object_type: type[DataProduct]) -> list[str]: """ Expands a (possibly non-leaf) `DataProduct` type into the list of registered leaf - `product_type` names that are instances of it -- e.g. `PlottableData2D` expands to + `product_type` names that are instances of it: `PlottableData2D`, for example, expands to `["Point2D", "Trace2D", "AxLine", "HistogramEntry"]`. This lets tag/type filtering happen as a plain SQL `product_type IN (...)` clause instead of deserializing every tag-matched row just to run an `isinstance` check in Python. @@ -44,6 +53,7 @@ def _tag_sort_key(tag: Tag): return (len(as_tuple), as_tuple) +@dataclass class ProductStore: """ SQLite-backed store for `DataProduct`s, grouped by run and queryable by tag/type. @@ -54,8 +64,7 @@ class ProductStore: traces = store.get_products_of_type(Trace2D, tag="my_tag") """ - def __init__(self, conn: sqlite3.Connection): - self._conn = conn + _conn: sqlite3.Connection @classmethod def open(cls, db_path: Path, *, readonly: bool = False) -> ProductStore: @@ -68,15 +77,14 @@ def __exit__(self, *exc_info) -> None: self.close() def close(self) -> None: + logger.debug("Closing ProductStore connection") self._conn.close() def write_run(self, run_path: Path, products: Iterable[DataProduct]) -> int: """ Replaces all products for `run_path` in a single transaction. Idempotent: calling this again for the same `run_path` (e.g. re-running a generator on the same input directory) - deletes and replaces that run's rows rather than accumulating duplicates -- this is what - replaces v1's `ProductIndexMap`/`FileLock` stable-indexing dance, since there's no - per-tag file to keep numbered anymore. + deletes and replaces that run's rows rather than accumulating duplicates. Args: run_path (Path): the raw-data run directory these products were generated from @@ -89,6 +97,7 @@ def write_run(self, run_path: Path, products: Iterable[DataProduct]) -> int: products = list(products) run_path_str = str(Path(run_path).resolve()) now = datetime.datetime.now(datetime.UTC).isoformat() + logger.debug(f"Writing {len(products)} product(s) for run {run_path_str}") conn = self._conn with conn: # transaction: commits on success, rolls back on exception @@ -153,6 +162,9 @@ def write_run(self, run_path: Path, products: Iterable[DataProduct]) -> int: ], ) + logger.debug( + f"Wrote {len(products)} product(s) for run {run_path_str} (run_id={run_id})" + ) return len(products) def get_tags(self, object_type: type[DataProduct] | None = None) -> set[Tag]: @@ -182,10 +194,8 @@ def get_tags(self, object_type: type[DataProduct] | None = None) -> set[Tag]: def tag_tree(self, object_type: type[DataProduct] | None = None) -> list[Tag]: """ Returns: - (list[Tag]): tags sorted the way v1's Streamlit sidebar expects (shallow tags - first, then lexicographically) -- direct replacement for v1's - `streamlit.get_tags()`, which discovered this list by globbing for files - literally named `index_map` in the sorted-products directory tree. + (list[Tag]): tags sorted for display in a nested sidebar or tree view: shallow + tags first, then lexicographically within each depth. """ return sorted(self.get_tags(object_type=object_type), key=_tag_sort_key) @@ -193,24 +203,24 @@ def tag_tree(self, object_type: type[DataProduct] | None = None) -> list[Tag]: def get_products( self, tag: Tag | None = None, - object_type: type[DataProduct] | None = None, - ) -> Iterator[DataProduct]: + object_type: type[R] | None = None, + ) -> Iterator[R]: """ Streams matching products, deserialized to their concrete pydantic type. Filtering by `tag` and/or `object_type` happens in SQL (indexed tag lookup, `product_type IN (...)` for the type hierarchy) before anything is deserialized, so this only ever parses JSON - for rows that actually match -- unlike v1, which reparsed every JSON in a tag directory - before filtering in Python. + for rows that actually match. Args: tag (Tag | None): tag to filter by; `None` matches every tag - object_type (type[DataProduct] | None): type (or base type) to filter by; - `None` matches every type + object_type (type[R] | None): type (or base type) to filter by; `None` matches + every type Yields: - (DataProduct): matching products, in insertion order + (R): matching products, in insertion order """ + logger.debug(f"Querying products ({tag = }, {object_type = })") select = "SELECT p.product_type, p.payload FROM products p" joins = [] where = [] @@ -234,27 +244,25 @@ def get_products( cursor = self._conn.execute(query, params) for row in cursor: - yield DataProduct.deserialize(row["product_type"], row["payload"]) + yield cast(R, DataProduct.deserialize(row["product_type"], row["payload"])) def get_products_of_type( - self, object_type: type[DataProduct], tag: Tag | None = None - ) -> list[DataProduct]: + self, object_type: type[R], tag: Tag | None = None + ) -> list[R]: """ - Same as `get_products`, but eager (a `list`) -- convenience for callers that don't need - streaming, mirroring v1's `DataProductCollection.get_products_of_type`. + Same as `get_products`, but eager (a `list`), for callers that don't need streaming. """ return list(self.get_products(tag=tag, object_type=object_type)) def get_table_entries(self, tag: Tag) -> pl.DataFrame: """ - Fetches `TableEntry` rows for `tag` directly from the `table_entries` table -- skips - deserializing full `DataProduct` payloads entirely, since row/col/value/unit are already - real columns. This is the direct replacement for `TableBuilder.load_table`'s "reparse - every JSON in every input dir" step. + Fetches `TableEntry` rows for `tag` directly from the `table_entries` table, skipping + full `DataProduct` payload deserialization entirely since row/col/value/unit are already + real columns. Note: `value` is resolved to a single Python value per row (whichever of `value_num`/`value_text`/`value_bool` is populated) before handing rows to Polars, - rather than asking Polars/SQLite to reconcile a mixed-type SQL column -- Polars expects + rather than asking Polars/SQLite to reconcile a mixed-type SQL column. Polars expects one dtype per column, so resolving the union type in Python first is the well-defined choice. @@ -262,8 +270,8 @@ def get_table_entries(self, tag: Tag) -> pl.DataFrame: tag (Tag): tag to filter by Returns: - (pl.DataFrame): columns `row`, `col`, `value`, `unit` -- same shape as v1's - `TableEntry.get_entry_dict()`. + (pl.DataFrame): a "melted" table with columns `row`, `col`, `value`, `unit`, one + row per `TableEntry` product matching `tag`. """ rows = self._conn.execute( @@ -271,6 +279,7 @@ def get_table_entries(self, tag: Tag) -> pl.DataFrame: "FROM table_entries WHERE tag_key = ?", (encode_tag(tag),), ).fetchall() + logger.debug(f"Fetched {len(rows)} table_entries row(s) for {tag = }") records = [] for r in rows: diff --git a/src/trendify/store/tags.py b/src/trendify/store/tags.py index 911fb34..727b41e 100644 --- a/src/trendify/store/tags.py +++ b/src/trendify/store/tags.py @@ -2,10 +2,8 @@ Canonical encoding between the pydantic-facing `Tag` type and the `tag_key` string stored/indexed in the `product_tags` and `table_entries` SQL tables. -This is the direct successor to v1's tuple-tag -> nested-folder-path convention: instead of -turning a tag into a filesystem path, we turn it into a single indexed string key. The same -`encode_tag` function must be used at write time and query time so lookups are exact-match -index seeks. +The same `encode_tag` function must be used at write time and query time so lookups are +exact-match index seeks. """ from __future__ import annotations @@ -14,7 +12,7 @@ from trendify.base.helpers import Tag -__all__ = ["decode_tag", "encode_tag"] +__all__ = ["decode_tag", "encode_tag", "tag_to_path_parts"] def encode_tag(tag: Tag) -> str: @@ -49,3 +47,19 @@ def decode_tag(tag_key: str) -> Tag: if isinstance(decoded, list): return tuple(decoded) return decoded + + +def tag_to_path_parts(tag: Tag) -> tuple[str, ...]: + """ + Converts a `Tag` into output-path parts: a tuple tag `("a", "b")` becomes nested path + segments `("a", "b")`, and a scalar tag `"a"` becomes a single segment `("a",)`. + + Args: + tag (Tag): tag to convert + + Returns: + (tuple[str, ...]): path parts, last one being the file stem + + """ + parts = tag if isinstance(tag, tuple) else (tag,) + return tuple(str(p) for p in parts) diff --git a/src/trendify/styling/grid.py b/src/trendify/styling/grid.py index 7926a54..596f0fc 100644 --- a/src/trendify/styling/grid.py +++ b/src/trendify/styling/grid.py @@ -1,24 +1,28 @@ +""" +`Grid` (major/minor gridline styling for a plot axes) and its `GridTheme` presets, selectable +via `Grid.from_theme`, plus the per-axis `GridAxis` settings a `Grid` is built from. +""" + from __future__ import annotations -from enum import Enum, auto -from collections.abc import Iterable import logging +from collections.abc import Iterable +from enum import StrEnum from pydantic import ConfigDict from trendify.base.helpers import HashableBase from trendify.base.pen import Pen - logger = logging.getLogger(__name__) __all__ = ["Grid", "GridAxis", "GridTheme"] -class GridTheme(Enum): - MATLAB = auto() - LIGHT = auto() - DARK = auto() +class GridTheme(StrEnum): + MATLAB = "matlab" + LIGHT = "light" + DARK = "dark" class GridAxis(HashableBase): @@ -136,10 +140,17 @@ def union_from_iterable(cls, grids: Iterable[Grid]) -> Grid: return cls() # Enforce consistent GridAxis settings - [major] = set(g.major for g in grids) - [minor] = set(g.minor for g in grids) - [enable_minor_ticks] = set(g.enable_minor_ticks for g in grids) - [zorder] = set(g.zorder for g in grids) + try: + [major] = set(g.major for g in grids) + [minor] = set(g.minor for g in grids) + [enable_minor_ticks] = set(g.enable_minor_ticks for g in grids) + [zorder] = set(g.zorder for g in grids) + except ValueError: + logger.error( + f"Grid.union_from_iterable: products sharing a tag disagree on " + f"major/minor/enable_minor_ticks/zorder. {grids = }" + ) + raise return cls( major=major, diff --git a/src/trendify/styling/legend.py b/src/trendify/styling/legend.py index dfd325f..3fcce83 100644 --- a/src/trendify/styling/legend.py +++ b/src/trendify/styling/legend.py @@ -1,3 +1,8 @@ +""" +`Legend` (matplotlib/Plotly legend styling: location, title, opacity, border) and the +`LegendLocation` enum of matplotlib-recognized location strings it validates against. +""" + from __future__ import annotations from enum import StrEnum diff --git a/src/trendify/styling/marker.py b/src/trendify/styling/marker.py index cadbc18..10948f9 100644 --- a/src/trendify/styling/marker.py +++ b/src/trendify/styling/marker.py @@ -1,3 +1,8 @@ +""" +`Marker`: scatter-point styling (color, size, alpha, symbol) for `Point2D`, including the +`from_pen` conversion used when a `Trace2D`'s `Pen` needs to render as scattered markers. +""" + from __future__ import annotations import logging @@ -18,7 +23,7 @@ class Marker(HashableBase): Defines marker for scattering to matplotlib Attributes: - color (str): Color of line + color (tuple[float, float, float] | tuple[float, float, float, float] | str): Color of line size (float): Line width alpha (float): Opacity from 0 to 1 (inclusive) zorder (float): Prioritization @@ -27,7 +32,7 @@ class Marker(HashableBase): """ - color: str = "k" + color: tuple[float, float, float] | tuple[float, float, float, float] | str = "k" size: float = 5 alpha: float = 1 zorder: float = 0 @@ -43,12 +48,9 @@ def from_pen( """ Converts Pen to marker with the option to specify a symbol. - Note (v1 bugfix): v1 did `pen.model_dump().pop("linestyle")`, which pops and - returns a single value (discarding the rest of the dict) and then tries to - splat that scalar as `**kwargs` -- guaranteed `TypeError` on any real call. - The fix is to dump the dict, drop the one field (`linestyle`) that `Pen` has - and `Marker` doesn't, and splat what's left (color/size/alpha/zorder/label, - which line up 1:1 with `Marker`'s fields). + `Pen` has one field (`linestyle`) that `Marker` doesn't, so its dumped dict can't be + splatted directly as `**kwargs` into `Marker`. This drops that one field and splats + what's left (color/size/alpha/zorder/label, which line up 1:1 with `Marker`'s fields). """ data = pen.model_dump() data.pop("linestyle", None) diff --git a/src/trendify/typing.py b/src/trendify/typing.py new file mode 100644 index 0000000..85c2652 --- /dev/null +++ b/src/trendify/typing.py @@ -0,0 +1,26 @@ +""" +Shared numeric array type aliases (`VecN`, `MatN`) used across `trendify.plotting`/ +`trendify.styling` for fields like `Trace2D.x`/`Trace2D.y` and `HistogramStyle.bins`. Backed by +`numpydantic.NDArray` for runtime pydantic validation, with a plain `TypeAlias` swapped in under +`TYPE_CHECKING` so static type checkers see an ordinary array/list/tuple union instead of +`numpydantic`'s shape-annotated generic. +""" + +from typing import TYPE_CHECKING, Annotated + +import numpy as np +from numpydantic import NDArray, Shape + +__all__ = ["MatN", "VecN"] + +if TYPE_CHECKING: + type _VecBase = np.ndarray | list[float | int] | tuple[float | int, ...] + + type VecN = _VecBase + """An N-element numeric array of arbitrary length.""" + + type MatN = _VecBase + """An NxN numeric matrix of arbitrary length.""" +else: + VecN = Annotated[NDArray[Shape["*"], float | int], ...] # type: ignore # noqa: F722 + MatN = Annotated[NDArray[Shape["*, *"], float | int], ...] # type: ignore # noqa: F722 diff --git a/src/trendify_old/assets/logo.svg b/src/trendify/viewer/templates/static/assets/logo.svg similarity index 100% rename from src/trendify_old/assets/logo.svg rename to src/trendify/viewer/templates/static/assets/logo.svg diff --git a/src/trendify_old/assets/logo_white_bg.svg b/src/trendify/viewer/templates/static/assets/logo_white_bg.svg similarity index 100% rename from src/trendify_old/assets/logo_white_bg.svg rename to src/trendify/viewer/templates/static/assets/logo_white_bg.svg diff --git a/src/trendify_old/__init__.py b/src/trendify_old/__init__.py deleted file mode 100644 index 3ab8434..0000000 --- a/src/trendify_old/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -""" -Provides top-level imports -""" - -from trendify.api import * -from trendify.server import * diff --git a/src/trendify_old/api/__init__.py b/src/trendify_old/api/__init__.py deleted file mode 100644 index f916345..0000000 --- a/src/trendify_old/api/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -from trendify.api.generator import * -from trendify.api.plotting import * -from trendify.api.base import * -from trendify.api.formats import * -from trendify.api.styling import * - -from trendify.api.api import * diff --git a/src/trendify_old/api/api.py b/src/trendify_old/api/api.py deleted file mode 100644 index eade765..0000000 --- a/src/trendify_old/api/api.py +++ /dev/null @@ -1,491 +0,0 @@ -""" -Module for generating, sorting, and plotting data products. -This uses pydantic dataclasses for JSON serialization to avoid overloading system memory. - -Some important learning material for pydantic classes and JSON (de)serialization: - -- [Nested Pydantic Models](https://bugbytes.io/posts/pydantic-nested-models-and-json-schemas/) -- [Deserializing Child Classes](https://blog.devgenius.io/deserialize-child-classes-with-pydantic-that-gonna-work-784230e1cf83) - -Attributes: - DATA_PRODUCTS_FNAME_DEFAULT (str): Hard-coded json file name 'data_products.json' - -""" - -from __future__ import annotations - -from concurrent.futures import ProcessPoolExecutor -from pathlib import Path -import time -from collections.abc import Callable -import logging - -import numpy as np - -from trendify.api.base.data_product import ProductGenerator -from trendify.api.generator.data_product_collection import ( - DataProductCollection, - flatten, -) -from trendify.api.base.helpers import DATA_PRODUCTS_FNAME_DEFAULT -from trendify.api.generator.data_product_generator import DataProductGenerator - - -logger = logging.getLogger(__name__) - -__all__ = [ - # process directories - "make_products", - "sort_products", - # "make_grafana_dashboard", - "make_tables_and_figures", - "make_include_files", - # combined process - "make_it_trendy", - "serve_products_to_plotly_dashboard", -] - - -### Runners - - -def make_include_files( - root_dir: Path, - local_server_path: str | Path | None = None, - mkdocs_include_dir: str | Path | None = None, - # products_dir_replacement_path: str | Path = None, - heading_level: int | None = None, -): - """ - Makes nested include files for inclusion into an MkDocs site. - - Note: - I recommend to create a Grafana panel and link to that from the MkDocs site instead. - - Args: - root_dir (Path): Directory for which the include files should be recursively generated - local_server_path (str|Path|None): What should the beginning of the path look like? - Use `//localhost:8001/...` something like that to work with `python -m mkdocs serve` - while running `python -m http.server 8001` in order to have interactive updates. - Use my python `convert_links.py` script to update after running `python -m mkdocs build` - in order to fix the links for the MkDocs site. See this repo for an example. - mkdocs_include_dir (str|Path|None): Path to be used for mkdocs includes. - This path should correspond to includ dir in `mkdocs.yml` file. (See `vulcan_srb_sep` repo for example). - - Note: - Here is how to setup `mkdocs.yml` file to have an `include_dir` that can be used to - include generated markdown files (and the images/CSVs that they reference). - - ``` - plugins: - - macros: - include_dir: run_for_record - ``` - - """ - INCLUDE = "include.md" - dirs = list(root_dir.glob("**/")) - dirs.sort() - if dirs: - min_len = np.min([len(list(p.parents)) for p in dirs]) - for s in dirs: - child_dirs = list(s.glob("*/")) - child_dirs.sort() - tables_to_include: list[Path] = [ - x - for x in flatten( - [ - list(s.glob(p, case_sensitive=False)) - for p in ["*pivot.csv", "*stats.csv"] - ] - ) - ] - figures_to_include: list[Path] = [ - x - for x in flatten( - [list(s.glob(p, case_sensitive=False)) for p in ["*.jpg", "*.png"]] - ) - ] - children_to_include: list[Path] = [ - c.resolve().joinpath(INCLUDE) for c in child_dirs - ] - if local_server_path is not None: - figures_to_include = [ - Path(local_server_path).joinpath(x.relative_to(root_dir)) - for x in figures_to_include - ] - if mkdocs_include_dir is not None: - mkdocs_include_dir = Path(mkdocs_include_dir) - - tables_to_include = [ - x.relative_to(mkdocs_include_dir.parent) for x in tables_to_include - ] - children_to_include = [ - x.relative_to(mkdocs_include_dir) for x in children_to_include - ] - - bb_open = r"{{" - bb_close = r"}}" - fig_inclusion_statements = [f"![]({x})" for x in figures_to_include] - table_inclusion_statements = [ - f"{bb_open} read_csv('{x}', disable_numparse=True) {bb_close}" - for x in tables_to_include - ] - child_inclusion_statments = [ - "{% include '" + str(x) + "' %}" for x in children_to_include - ] - fig_inclusion_statements.sort() - table_inclusion_statements.sort() - child_inclusion_statments.sort() - inclusions = ( - table_inclusion_statements - + fig_inclusion_statements - + child_inclusion_statments - ) - - header = ( - "".join(["#"] * ((len(list(s.parents)) - min_len) + heading_level)) - + s.name - if heading_level is not None and len(inclusions) > 1 - else "" - ) - text = "\n\n".join([header] + inclusions) - - s.joinpath(INCLUDE).write_text(text) - - -def map_callable( - f: Callable[[Path], DataProductCollection], - *iterables, - n_procs: int = 1, - mp_context=None, -): - """ - Args: - f (Callable[[Path], DataProductCollection]): Function to be mapped - iterables (Tuple[Iterable, ...]): iterables of arguments for mapped function `f` - n_procs (int): Number of parallel processes to run - mp_context (str): Context to use for creating new processes (see `multiprocessing` package documentation) - - """ - if n_procs > 1: - with ProcessPoolExecutor( - max_workers=n_procs, mp_context=mp_context - ) as executor: - result = list(executor.map(f, *iterables)) - else: - result = [f(*arg_tuple) for arg_tuple in zip(*iterables)] - - return result - - -def get_sorted_dirs(dirs: list[Path]): - """ - Sorts dirs numerically if possible, else alphabetically - - Args: - dirs (List[Path]): Directories to sort - - Returns: - (List[Path]): Sorted list of directories - - """ - dirs = list(dirs) - try: - dirs.sort(key=lambda p: int(p.name)) - except ValueError: - dirs.sort() - return dirs - - -def make_products( - product_generator: Callable[[Path], DataProductCollection] | None, - data_dirs: list[Path], - n_procs: int = 1, - data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, -): - """ - Maps `product_generator` over `dirs_in` to produce data product JSON files in those directories. - Sorts the generated data products into a nested file structure starting from `dir_products`. - Nested folders are generated for tags that are Tuples. Sorted data files are named according to the - directory from which they were loaded. - - Args: - product_generator (ProductGenerator | None): A callable function that returns - a list of data products given a working directory. - data_dirs (List[Path]): Directories over which to map the `product_generator` - n_procs (int = 1): Number of processes to run in parallel. If `n_procs==1`, directories will be - processed sequentially (easier for debugging since the full traceback will be provided). - If `n_procs > 1`, a [ProcessPoolExecutor][concurrent.futures.ProcessPoolExecutor] will - be used to load and process directories and/or tags in parallel. - data_products_fname (str): File name to be used for storing generated data products - - """ - sorted_dirs = get_sorted_dirs(dirs=data_dirs) - - if product_generator is None: - logger.error("No data product generator provided") - else: - logger.info("Generating tagged DataProducts and writing to JSON files...") - map_callable( - DataProductGenerator(processor=product_generator).process_and_save, - sorted_dirs, - [data_products_fname] * len(sorted_dirs), - n_procs=n_procs, - ) - logger.info("Finished generating tagged DataProducts and writing to JSON files") - - -def sort_products( - data_dirs: list[Path], - output_dir: Path, - n_procs: int = 1, - data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, -): - """ - Loads the tagged data products from `data_dirs` and sorts them (by tag) into a nested folder structure rooted at `output_dir`. - - Args: - data_dirs (List[Path]): Directories containing JSON data product files - output_dir (Path): Directory to which sorted products will be written - data_products_fname (str): File name in which the data products to be sorted are stored - - """ - sorted_data_dirs = get_sorted_dirs(dirs=data_dirs) - - logger.info("Sorting data by tags") - output_dir.mkdir(parents=True, exist_ok=True) - - map_callable( - DataProductCollection.sort_by_tags_single_directory, - sorted_data_dirs, - [output_dir] * len(sorted_data_dirs), - [data_products_fname] * len(sorted_data_dirs), - n_procs=n_procs, - ) - - logger.info("Finished sorting by tags") - - -# def make_grafana_dashboard( -# products_dir: Path, -# output_dir: Path, -# protocol: str, -# host: str, -# port: int, -# n_procs: int = 1, -# ): -# import grafana_api as gapi - -# """ -# Makes a JSON file to import to Grafana for displaying tagged data tables, histograms and XY plots. - -# Args: -# products_dir (Path): Root directory into which products have been sorted by tag -# output_dir (Path): Root directory into which Grafana dashboard and panal definitions will be written -# n_procs (int): Number of parallel tasks used for processing data product tags -# protocol (str): Communication protocol for data server -# host (str): Sever address for providing data to interactive dashboard -# n_procs (int): Number of parallel processes -# """ -# print( -# f"\n\n\nGenerating Grafana Dashboard JSON Spec in {output_dir} based on products in {products_dir}" -# ) -# output_dir.mkdir(parents=True, exist_ok=True) - -# product_dirs = list(products_dir.glob("**/*/")) -# panel_dir = output_dir.joinpath("panels") -# map_callable( -# DataProductCollection.make_grafana_panels, -# product_dirs, -# [panel_dir] * len(product_dirs), -# [f"{protocol}://{host}:{port}"] * len(product_dirs), -# n_procs=n_procs, -# ) - -# panels = [ -# gapi.Panel.model_validate_json(p.read_text()) for p in panel_dir.glob("*.json") -# ] -# dashboard = gapi.Dashboard(panels=panels) -# output_dir.joinpath("dashboard.json").write_text(dashboard.model_dump_json()) -# print("\nFinished Generating Grafana Dashboard JSON Spec") - - -def make_tables_and_figures( - products_dir: Path, - output_dir: Path, - dpi: int = 500, - n_procs: int = 1, - no_tables: bool = False, - no_xy_plots: bool = False, - no_histograms: bool = False, -): - """ - Makes CSV tables and creates plots (using matplotlib). - - Tags will be processed in parallel and output in nested directory structure under `output_dir`. - - Args: - products_dir (Path): Directory to which the sorted data products will be written - output_dir (Path): Directory to which tables and matplotlib histograms and plots will be written if - the appropriate boolean variables `make_tables`, `make_xy_plots`, `make_histograms` are true. - n_procs (int = 1): Number of processes to run in parallel. If `n_procs==1`, directories will be - processed sequentially (easier for debugging since the full traceback will be provided). - If `n_procs > 1`, a [ProcessPoolExecutor][concurrent.futures.ProcessPoolExecutor] will - be used to load and process directories and/or tags in parallel. - dpi (int = 500): Resolution of output plots when using matplotlib - (for `make_xy_plots==True` and/or `make_histograms==True`) - no_tables (bool): Whether or not to collect the - [`TableEntry`][trendify.api.TableEntry] products and write them - to CSV files (`_melted.csv` with `_pivot.csv` and `_stats.csv` when possible). - no_xy_plots (bool): Whether or not to plot the [`XYData`][trendify.api.XYData] products using matplotlib - no_histograms (bool): Whether or not to generate histograms of the - [`HistogramEntry`][trendify.api.HistogramEntry] products - using matplotlib. - - """ - if not (no_tables and no_xy_plots and no_histograms): - product_dirs = list(products_dir.glob("**/*/")) - map_callable( - DataProductCollection.process_collection, - product_dirs, # dir_in - [output_dir] * len(product_dirs), # dir_out - [no_tables] * len(product_dirs), # no_tables - [no_xy_plots] * len(product_dirs), # no_xy_plots - [no_histograms] * len(product_dirs), # no_histograms - [dpi] * len(product_dirs), # dpi - n_procs=n_procs, - ) - - -def _mkdir(p: Path): - p.mkdir(exist_ok=True, parents=True) - return p - - -def make_it_trendy( - data_product_generator: ProductGenerator | None, - input_dirs: list[Path], - output_dir: Path, - n_procs: int = 1, - dpi_static_plots: int = 500, - no_static_tables: bool = False, - no_static_xy_plots: bool = False, - no_static_histograms: bool = False, - no_grafana_dashboard: bool = False, - no_include_files: bool = False, - protocol: str = "http", - server: str = "0.0.0.0", - port: int = 8000, - data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, -): - """ - Maps `data_product_generator` over `dirs_in` to produce data product JSON files in those directories. - Sorts the generated data products into a nested file structure starting from `dir_products`. - Nested folders are generated for tags that are Tuples. Sorted data files are named according to the - directory from which they were loaded. - - Args: - data_product_generator (ProductGenerator | None): A callable function that returns - a list of data products given a working directory. - input_dirs (List[Path]): Directories over which to map the `product_generator` - output_dir (Path): Directory to which the trendify products and assets will be written. - n_procs (int = 1): Number of processes to run in parallel. If `n_procs==1`, directories will be - processed sequentially (easier for debugging since the full traceback will be provided). - If `n_procs > 1`, a [ProcessPoolExecutor][concurrent.futures.ProcessPoolExecutor] will - be used to load and process directories and/or tags in parallel. - dpi_static_plots (int = 500): Resolution of output plots when using matplotlib - (for `make_xy_plots==True` and/or `make_histograms==True`) - no_static_tables (bool): Suppresses static assets from the [`TableEntry`][trendify.api.TableEntry] products - no_static_xy_plots (bool): Suppresses static assets from the - [`XYData`][trendify.api.XYData] - ([Trace2D][trendify.api.Trace2D] and [Point2D][trendify.api.Point2D]) products - no_static_histograms (bool): Suppresses static assets from the [`HistogramEntry`][trendify.api.HistogramEntry] products - no_grafana_dashboard (bool): Suppresses generation of Grafana dashboard JSON definition file - no_include_files (bool): Suppresses generation of include files for importing static assets to markdown or LaTeX reports - data_products_fname (str): File name to be used for storing generated data products - - """ - input_dirs = [ - Path(p).parent if Path(p).is_file() else Path(p) for p in list(input_dirs) - ] - output_dir = Path(output_dir) - - make_products( - product_generator=data_product_generator, - data_dirs=input_dirs, - n_procs=n_procs, - data_products_fname=data_products_fname, - ) - - products_dir = _mkdir(output_dir.joinpath("products")) - - # Sort products - start = time.time() - sort_products( - data_dirs=input_dirs, - output_dir=products_dir, - n_procs=n_procs, - data_products_fname=data_products_fname, - ) - end = time.time() - logger.info(f"Time to sort = {end - start}") - - no_static_assets = no_static_tables and no_static_histograms and no_static_xy_plots - no_interactive_assets = no_grafana_dashboard - no_assets = no_static_assets and no_interactive_assets - - if not no_assets: - assets_dir = output_dir.joinpath("assets") - if not no_interactive_assets: - interactive_assets_dir = _mkdir(assets_dir.joinpath("interactive")) - if not no_grafana_dashboard: - grafana_dir = _mkdir(interactive_assets_dir.joinpath("grafana")) - # make_grafana_dashboard( - # products_dir=products_dir, - # output_dir=grafana_dir, - # n_procs=n_procs, - # protocol=protocol, - # server=server, - # port=port, - # ) - - if not no_static_assets: - static_assets_dir = _mkdir(assets_dir.joinpath("static")) - make_tables_and_figures( - products_dir=products_dir, - output_dir=static_assets_dir, - dpi=dpi_static_plots, - n_procs=n_procs, - no_tables=no_static_tables, - no_xy_plots=no_static_xy_plots, - no_histograms=no_static_histograms, - ) - - if not no_include_files: - make_include_files( - root_dir=static_assets_dir, - heading_level=2, - ) - - -def serve_products_to_plotly_dashboard( - *dirs: Path, - title: str = "Trendify Autodash", - host: str = "127.0.0.1", - port: int = 8000, - debug: bool = False, - data_products_filename: str = DATA_PRODUCTS_FNAME_DEFAULT, -): - """ """ - collection = DataProductCollection.collect_from_all_jsons( - *dirs, data_products_filename=data_products_filename - ) - - assert isinstance(collection, DataProductCollection) - collection.serve_plotly_dashboard( - title=title, - debug=debug, - host=host, - port=port, - ) diff --git a/src/trendify_old/api/base/__init__.py b/src/trendify_old/api/base/__init__.py deleted file mode 100644 index cde36fd..0000000 --- a/src/trendify_old/api/base/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# from trendify.api.data_product_collection import * -from trendify.api.base.data_product import * -from trendify.api.base.helpers import * -from trendify.api.base.pen import * diff --git a/src/trendify_old/api/base/data_product.py b/src/trendify_old/api/base/data_product.py deleted file mode 100644 index 4381082..0000000 --- a/src/trendify_old/api/base/data_product.py +++ /dev/null @@ -1,132 +0,0 @@ -from __future__ import annotations - -from pathlib import Path -from typing import Any -from collections.abc import Callable -import logging - -from pydantic import ( - BaseModel, - ConfigDict, - InstanceOf, - SerializeAsAny, - computed_field, - model_validator, -) - -from trendify.api.base.helpers import Tags - - -logger = logging.getLogger(__name__) - -__all__ = ["DataProduct", "ProductGenerator", "ProductList"] - -_data_product_subclass_registry: dict[str, type[DataProduct]] = {} - - -class DataProduct(BaseModel): - """ - Base class for data products to be generated and handled. - - Attributes: - product_type (str): Product type should be the same as the class name. - The product type is used to search for products from a [DataProductCollection][trendify.api.DataProductCollection]. - tags (Tags): Tags to be used for sorting data. - metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana - - """ - - tags: Tags - metadata: dict[str, str] = {} - - @model_validator(mode="before") - @classmethod - def _remove_computed_fields(cls, data: dict[str, Any]) -> dict[str, Any]: - """ - Removes computed fields before passing data to constructor. - - Args: - data (dict[str, Any]): Raw data to be validated before passing to pydantic class constructor. - - Returns: - (dict[str, Any]): Sanitized data to be passed to class constructor. - - """ - for f in cls.model_computed_fields: - data.pop(f, None) - return data - - @computed_field - @property - def product_type(self) -> str: - """ - Returns: - (str): Product type should be the same as the class name. - The product type is used to search for products from a - [DataProductCollection][trendify.api.DataProductCollection]. - - """ - return type(self).__name__ - - def __init_subclass__(cls, **kwargs: Any) -> None: - """ - Registers child subclasses to be able to parse them from JSON file using the - [deserialize_child_classes][trendify.api.DataProduct.deserialize_child_classes] method - """ - super().__init_subclass__(**kwargs) - _data_product_subclass_registry[cls.__name__] = cls - - model_config = ConfigDict(extra="allow") - - def append_to_list(self, l: list): - """ - Appends self to list. - - Args: - l (List): list to which `self` will be appended - - Returns: - (Self): returns instance of `self` - - """ - l.append(self) - return self - - @classmethod - def deserialize_child_classes(cls, key: str, **kwargs): - """ - Loads json data to pydandic dataclass of whatever DataProduct child time is appropriate - - Args: - key (str): json key - kwargs (dict): json entries stored under given key - - """ - type_key = "product_type" - elements = kwargs.get(key, None) - if elements: - for index in range(len(kwargs[key])): - duck_info = kwargs[key][index] - if isinstance(duck_info, dict): - product_type = duck_info.pop(type_key) - duck_type = _data_product_subclass_registry[product_type] - kwargs[key][index] = duck_type(**duck_info) - - def set_metadata(self, new: dict[str, str]): - self.metadata = new - return self - - -ProductList = list[SerializeAsAny[InstanceOf[DataProduct]]] -"""List of serializable [DataProduct][trendify.api.DataProduct] or child classes thereof""" - -ProductGenerator = Callable[[Path], ProductList] -""" -Callable method type. Users must provide a `ProductGenerator` to map over raw data. - -Args: - path (Path): Workdir holding raw data (Should be one per run from a batch) - -Returns: - (ProductList): List of data products to be sorted and used to produce assets -""" diff --git a/src/trendify_old/api/base/helpers.py b/src/trendify_old/api/base/helpers.py deleted file mode 100644 index c167742..0000000 --- a/src/trendify_old/api/base/helpers.py +++ /dev/null @@ -1,71 +0,0 @@ -from __future__ import annotations - -from enum import auto -from strenum import StrEnum -from typing import Union, TypeVar -from collections.abc import Hashable -import logging - -from pydantic import BaseModel - -logger = logging.getLogger(__name__) - -__all__ = [ - "DATA_PRODUCTS_FNAME_DEFAULT", - "HashableBase", - "ProductType", - "R", - "Tag", - "Tags", -] - -DATA_PRODUCTS_FNAME_DEFAULT = "data_products.json" -""" -Hard-coded file name for storing data products in batch-processed input directories. -""" - -R = TypeVar("R") - -Tag = Union[tuple[Hashable, ...], Hashable] -""" -Determines what types can be used to define a tag -""" - -Tags = list[Tag] -""" -List of tags -""" - - -class HashableBase(BaseModel): - """ - Defines a base for hashable pydantic data classes so that they can be reduced to a minimal set through type-casting. - """ - - def __hash__(self): - """ - Defines hash function - """ - return hash((type(self),) + tuple(self.__dict__.values())) - - -class ProductType(StrEnum): - """ - Defines all product types. Used to type-cast URL info in server to validate. - - Attributes: - DataProduct (str): class name - XYData (str): class name - Trace2D (str): class name - Point2D (str): class name - TableEntry (str): class name - HistogramEntry (str): class name - - """ - - DataProduct = auto() - XYData = auto() - Trace2D = auto() - Point2D = auto() - TableEntry = auto() - HistogramEntry = auto() diff --git a/src/trendify_old/api/base/pen.py b/src/trendify_old/api/base/pen.py deleted file mode 100644 index 132c6e5..0000000 --- a/src/trendify_old/api/base/pen.py +++ /dev/null @@ -1,136 +0,0 @@ -from __future__ import annotations - - -from pydantic import ConfigDict -from matplotlib.colors import to_rgba - -from trendify.api.base.helpers import HashableBase - -__all__ = ["Pen"] - - -class Pen(HashableBase): - """ - Defines the pen drawing to matplotlib. - - Attributes: - color (str): Color of line - size (float): Line width - alpha (float): Opacity from 0 to 1 (inclusive) - linestyle (Union[str, Tuple[int, Tuple[int, ...]]]): Linestyle to plot. Supports `str` or `tuple` definition ([matplotlib documentation](https://matplotlib.org/stable/gallery/lines_bars_and_markers/linestyles.html)). - zorder (float): Prioritization - label (Union[str, None]): Legend label - - """ - - color: tuple[float, float, float] | tuple[float, float, float, float] | str = "k" - size: float = 1 - alpha: float = 1 - zorder: float = 0 - linestyle: str | tuple[int, tuple[int, ...]] = "-" - label: str | None = None - - model_config = ConfigDict(extra="forbid") - - def as_scatter_plot_kwargs(self): - """ - Returns kwargs dictionary for passing to [matplotlib plot][matplotlib.axes.Axes.plot] method - """ - return { - "color": self.color, - "linewidth": self.size, - "linestyle": self.linestyle, - "alpha": self.alpha, - "zorder": self.zorder, - "label": self.label, - } - - def _convert_linestyle_to_plotly(self) -> str: - """Convert matplotlib linestyle to plotly dash style""" - # Handle string styles - style_map = { - "-": "solid", - "--": "dash", - ":": "dot", - "-.": "dashdot", - } - if isinstance(self.linestyle, str): - return style_map.get(self.linestyle, "solid") - - # Handle tuple styles - convert to 'dash' as approximation - return "dash" - - @property - def rgba(self) -> str: - """ - Convert the pen's color to rgba string format. - - Returns: - str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 - - """ - # Handle different color input formats - if isinstance(self.color, tuple): - if len(self.color) == 3: # RGB tuple - r, g, b = self.color - a = self.alpha - else: # RGBA tuple - r, g, b, a = self.color - # Convert 0-1 range to 0-255 for RGB - r, g, b = int(r * 255), int(g * 255), int(b * 255) - else: # String color (name or hex) - # Use matplotlib's color converter - rgba_vals = to_rgba(self.color, self.alpha) - # Convert 0-1 range to 0-255 for RGB - r, g, b = [int(x * 255) for x in rgba_vals[:3]] - a = rgba_vals[3] - - return f"rgba({r}, {g}, {b}, {a})" - - @property - def rgb(self) -> str: - return ", ".join(self.rgba.split(",")[0:-1]) + ")" - - def get_contrast_color(self, background_luminance: float = 1.0) -> str: - """ - Returns 'white' or 'black' to provide the best contrast against the pen's color, - taking into account the alpha (transparency) value of the line. - - Args: - background_luminance (float): The luminance of the background (default is 1.0 for white). - - Returns: - str: 'white' or 'black' - - """ - # Convert the pen's color to RGB (0-255 range) and get alpha - if isinstance(self.color, tuple): - if len(self.color) == 3: # RGB tuple - r, g, b = self.color - a = self.alpha - else: # RGBA tuple - r, g, b, a = self.color - r, g, b = int(r * 255), int(g * 255), int(b * 255) - else: # String color (name or hex) - rgba_vals = to_rgba(self.color, self.alpha) - r, g, b = [int(x * 255) for x in rgba_vals[:3]] - a = rgba_vals[3] - - # Calculate relative luminance of the pen's color - def luminance(channel): - channel /= 255.0 - return ( - channel / 12.92 - if channel <= 0.03928 - else ((channel + 0.055) / 1.055) ** 2.4 - ) - - color_luminance = ( - 0.2126 * luminance(r) + 0.7152 * luminance(g) + 0.0722 * luminance(b) - ) - - # Blend the color luminance with the background luminance based on alpha - blended_luminance = (1 - a) * background_luminance + a * color_luminance - - # Return white for dark blended colors, black for light blended colors - return "white" if blended_luminance < 0.5 else "black" diff --git a/src/trendify_old/api/formats/__init__.py b/src/trendify_old/api/formats/__init__.py deleted file mode 100644 index 61a4447..0000000 --- a/src/trendify_old/api/formats/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -from trendify.api.formats.format2d import * -from trendify.api.formats.table import * diff --git a/src/trendify_old/api/formats/format2d.py b/src/trendify_old/api/formats/format2d.py deleted file mode 100644 index 28bbde8..0000000 --- a/src/trendify_old/api/formats/format2d.py +++ /dev/null @@ -1,152 +0,0 @@ -from __future__ import annotations - -from enum import StrEnum -from typing import TYPE_CHECKING -from collections.abc import Iterable -import logging - -import numpy as np -from pydantic import ConfigDict - -from trendify.api.base.data_product import DataProduct -from trendify.api.base.helpers import HashableBase -from trendify.api.styling.grid import Grid -from trendify.api.styling.legend import Legend - -if TYPE_CHECKING: - from trendify.api.plotting.plotting import PlotlyFigure -logger = logging.getLogger(__name__) - -__all__ = ["AxisScale", "Format2D", "PlottableData2D", "XYData"] - - -class AxisScale(StrEnum): - LINEAR = "linear" - """Format axis as linear""" - LOG = "log" - """Format axis with log base 10""" - - -class Format2D(HashableBase): - """ - Formatting data for matplotlib figure and axes - - Attributes: - title_fig (Optional[str], optional): Sets [figure title][matplotlib.figure.Figure.suptitle]. Defaults to None. - legend (Optional[Legend], optional): Sets [legend style][trendify.api.styling.legend.Legend]. Defaults to Legend(). - title_ax (Optional[str], optional): Sets [axis title][matplotlib.axes.Axes.set_title]. Defaults to None. - label_x (Optional[str], optional): Sets [x-axis label][matplotlib.axes.Axes.set_xlabel]. Defaults to None. - label_y (Optional[str], optional): Sets [y-axis label][matplotlib.axes.Axes.set_ylabel]. Defaults to None. - lim_x_min (float | None, optional): Sets [x-axis lower bound][matplotlib.axes.Axes.set_xlim]. Defaults to None. - lim_x_max (float | None, optional): Sets [x-axis upper bound][matplotlib.axes.Axes.set_xlim]. Defaults to None. - lim_y_min (float | None, optional): Sets [y-axis lower bound][matplotlib.axes.Axes.set_ylim]. Defaults to None. - lim_y_max (float | None, optional): Sets [y-axis upper bound][matplotlib.axes.Axes.set_ylim]. Defaults to None. - grid (Grid | None,optional): Sets the [grid][matplotlib.pyplot.grid]. Defaults to None. - scale_x (AxisScale, optional): Sets the x axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR - scale_y (AxisScale, optional): Sets the y axis scale to an option from [AxisScale][trendify.api.formats.format2d.AxisScale]. Defaults to AxisScale.LINEAR - figure_width (float, optional): Sets the of the width of rendered figure in inches. Defaults to 6.4. - figure_height (float, optional): Sets the of the height of rendered figure in inches. Defaults to 4.8. - - """ - - title_fig: str | None | None = None - legend: Legend | None = Legend() - title_ax: str | None | None = None - label_x: str | None | None = None - label_y: str | None | None = None - lim_x_min: float | None = None - lim_x_max: float | None = None - lim_y_min: float | None = None - lim_y_max: float | None = None - grid: Grid | None = None - scale_x: AxisScale = AxisScale.LINEAR - scale_y: AxisScale = AxisScale.LINEAR - figure_width: float = 6.4 - figure_height: float = 4.8 - - model_config = ConfigDict(extra="forbid") - - @classmethod - def union_from_iterable(cls, format2ds: Iterable[Format2D]): - """ - Gets the most inclusive format object (in terms of limits) from a list of `Format2D` objects. - Requires that the label and title fields are identical for all format objects in the list. - - Args: - format2ds (Iterable[Format2D]): Iterable of `Format2D` objects. - - Returns: - (Format2D): Single format object from list of objects. - - """ - formats = list(set(format2ds) - {None}) - - [title_fig] = set(i.title_fig for i in formats if i is not None) - [legend] = set(i.legend for i in formats if i is not None) - [title_ax] = set(i.title_ax for i in formats if i is not None) - [label_x] = set(i.label_x for i in formats if i is not None) - [label_y] = set(i.label_y for i in formats if i is not None) - [figure_width] = set(i.figure_width for i in formats) - [figure_height] = set(i.figure_height for i in formats) - - x_min = [i.lim_x_min for i in formats if i.lim_x_min is not None] - x_max = [i.lim_x_max for i in formats if i.lim_x_max is not None] - y_min = [i.lim_y_min for i in formats if i.lim_y_min is not None] - y_max = [i.lim_y_max for i in formats if i.lim_y_max is not None] - - lim_x_min = np.min(x_min) if len(x_min) > 0 else None - lim_x_max = np.max(x_max) if len(x_max) > 0 else None - lim_y_min = np.min(y_min) if len(y_min) > 0 else None - lim_y_max = np.max(y_max) if len(y_max) > 0 else None - - grid = Grid.union_from_iterable(f.grid for f in formats if f.grid is not None) - - [scale_x] = set(i.scale_x for i in formats) - [scale_y] = set(i.scale_y for i in formats) - - return cls( - title_fig=title_fig, - legend=legend, - title_ax=title_ax, - label_x=label_x, - label_y=label_y, - lim_x_min=lim_x_min, - lim_x_max=lim_x_max, - lim_y_min=lim_y_min, - lim_y_max=lim_y_max, - grid=grid, - scale_x=scale_x, - scale_y=scale_y, - figure_width=figure_width, - figure_height=figure_height, - ) - - -class PlottableData2D(DataProduct): - """ - Base class for children of DataProduct to be plotted ax xy data on a 2D plot - - Attributes: - format2d (Format2D|None): Format to apply to plot - tags (Tags): Tags to be used for sorting data. - metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana - - """ - - format2d: Format2D | None = None - - def add_to_plotly(self, plotly_figure: PlotlyFigure): - """ - Add this data product to a plotly figure - - Args: - plotly_figure (PlotlyFigure): Plotly figure to add data to - - """ - raise NotImplementedError("Subclasses must implement add_to_plotly") - - -class XYData(PlottableData2D): - """ - Base class for children of DataProduct to be plotted ax xy data on a 2D plot - """ diff --git a/src/trendify_old/api/formats/table.py b/src/trendify_old/api/formats/table.py deleted file mode 100644 index 877b296..0000000 --- a/src/trendify_old/api/formats/table.py +++ /dev/null @@ -1,88 +0,0 @@ -from __future__ import annotations - -from pathlib import Path -import traceback -import logging - -import pandas as pd -from pydantic import ConfigDict - -from trendify.api.base.data_product import DataProduct - -logger = logging.getLogger(__name__) - -__all__ = ["TableEntry"] - - -class TableEntry(DataProduct): - """ - Defines an entry to be collected into a table. - - Collected table entries will be printed in three forms when possible: melted, pivot (when possible), and stats (on pivot columns, when possible). - - Attributes: - tags (Tags): Tags used to sort data products - row (float | str): Row Label - col (float | str): Column Label - value (float | str): Value - unit (str | None): Units for value - metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana - - """ - - row: float | str - col: float | str - value: float | str | bool - unit: str | None = None - - model_config = ConfigDict(extra="forbid") - - def get_entry_dict(self): - """ - Returns a dictionary of entries to be used in creating a table. - - Returns: - (dict[str, str | float]): Dictionary of entries to be used in creating a melted [DataFrame][pandas.DataFrame] - - """ - return { - "row": self.row, - "col": self.col, - "value": self.value, - "unit": self.unit, - } - - @classmethod - def pivot_table(cls, melted: pd.DataFrame): - """ - Attempts to pivot melted row, col, value DataFrame into a wide form DataFrame - - Args: - melted (pd.DataFrame): Melted data frame having columns named `'row'`, `'col'`, `'value'`. - - Returns: - (pd.DataFrame | None): pivoted DataFrame if pivot works else `None`. Pivot operation fails if - row or column index pairs are repeated. - - """ - try: - result = melted.pivot(index="row", columns="col", values="value") - except ValueError: - logger.debug(traceback.format_exc()) - result = None - return result - - @classmethod - def load_and_pivot(cls, path: Path): - """ - Loads melted table from csv and pivots to wide form. - csv should have columns named `'row'`, `'col'`, and `'value'`. - - Args: - path (Path): path to CSV file - - Returns: - (pd.DataFrame | None): Pivoted data frame or elese `None` if pivot operation fails. - - """ - return cls.pivot_table(melted=pd.read_csv(path)) diff --git a/src/trendify_old/api/generator/__init__.py b/src/trendify_old/api/generator/__init__.py deleted file mode 100644 index ada3dc8..0000000 --- a/src/trendify_old/api/generator/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from trendify.api.generator.data_product_collection import * -from trendify.api.generator.data_product_generator import * -from trendify.api.generator.histogrammer import * -from trendify.api.generator.table_builder import * -from trendify.api.generator.xy_data_plotter import * diff --git a/src/trendify_old/api/generator/data_product_collection.py b/src/trendify_old/api/generator/data_product_collection.py deleted file mode 100644 index eb2145f..0000000 --- a/src/trendify_old/api/generator/data_product_collection.py +++ /dev/null @@ -1,872 +0,0 @@ -from __future__ import annotations - -import os -from itertools import chain -from pathlib import Path -from typing import TYPE_CHECKING, Any -from collections.abc import Iterable, Iterator -import logging - - -try: - from typing import Self -except: - from typing import Self - -import dash -from filelock import FileLock -from pydantic import BaseModel, Field, validate_call - -from trendify.api.formats.format2d import Format2D -from trendify.api.generator.histogrammer import Histogrammer -from trendify.api.base.helpers import Tag, R, DATA_PRODUCTS_FNAME_DEFAULT -from trendify.api.base.data_product import DataProduct, ProductList -from trendify.api.plotting.plotting import SingleAxisFigure, PlotlyFigure -from trendify.api.plotting.histogram import HistogramEntry -from trendify.api.plotting.point import Point2D -from trendify.api.plotting.trace import Trace2D -from trendify.api.plotting.axline import AxLine -from trendify.api.formats.table import TableEntry - -if TYPE_CHECKING: - from trendify.api.generator.table_builder import TableBuilder - -logger = logging.getLogger(__name__) - -__all__ = [ - "DataProductCollection", - "ProductEntryMetadata", - "ProductIndexMap", - "flatten", -] - - -UQL_TableEntry = r""" -parse-json -| project "elements" -| project "row", "col", "value", "unit", "metadata" -""" # .replace('\n', r'\n').replace('"', r'\"') + '"' - -UQL_Point2D = r""" -parse-json -| project "elements" -| extend "label"="marker.label" -""" # .replace('\n', r'\n').replace('"', r'\"') + '"' - -UQL_Trace2D = r""" -parse-json -| project "elements" -| extend "label"="pen.label" -| mv-expand "points" -| extend "x"="points.x", "y"="points.y" -| project "label", "x", "y", "metadata" -""" # .replace('\n', r'\n').replace('"', r'\"') + '"' - - -class ProductEntryMetadata(BaseModel): - source: Path - - def __hash__(self): - return hash(self.model_dump_json()) - - -class ProductIndexMap(BaseModel): - entries: dict[int, ProductEntryMetadata] = Field(default_factory=dict) - - @property - def inverse(self) -> dict[ProductEntryMetadata, int]: - return {v: k for k, v in self.entries.items()} - - @classmethod - @validate_call - def get_index( - cls, - save_dir: Path, - metadata: ProductEntryMetadata, - ) -> int: - if not save_dir.is_dir(): - raise ValueError(f"{save_dir} is not a directory") - lock_file = save_dir.joinpath("reserving_index.lock") - with FileLock(lock_file): - index_map_file = save_dir.joinpath("index_map") - if not index_map_file.exists(): - index_map = ProductIndexMap() - else: - index_map = ProductIndexMap.model_validate_json( - index_map_file.read_text() - ) - if metadata in index_map.entries.values(): - index_to_use = index_map.inverse[metadata] - else: - index_to_use = max(index_map.entries.keys(), default=-1) + 1 - index_map.entries[index_to_use] = metadata - index_map_file.write_text(index_map.model_dump_json()) - return index_to_use - - -def _should_be_flattened(obj: Any): - """ - Checks if object is an iterable container that should be flattened. - `DataProduct`s will not be flattened. Strings will not be flattened. - Everything else will be flattened. - - Args: - obj (Any): Object to be tested - - Returns: - (bool): Whether or not to flatten object - - """ - return isinstance(obj, Iterable) and not isinstance(obj, (str, bytes, DataProduct)) - - -def flatten(obj: Iterable[Any]) -> Iterator[Any]: - """ - Recursively flattens iterable up to a point (leaves `str`, `bytes`, and `DataProduct` unflattened) - - Args: - obj (Iterable): Object to be flattened - - Returns: - (Iterable): Flattned iterable - - """ - if not _should_be_flattened(obj): - yield obj - else: - for sublist in obj: - yield from flatten(sublist) - - -def atleast_1d(obj: Any) -> Iterable: - """ - Converts scalar objec to a list of length 1 or leaves an iterable object unchanged. - - Args: - obj (Any): Object that needs to be at least 1d - - Returns: - (Iterable): Returns an iterable - - """ - if not _should_be_flattened(obj): - return [obj] - else: - return obj - - -def _squeeze(obj: Any) -> Any: - """ - Returns a scalar if object is iterable of length 1 else returns object. - - Args: - obj (Union[Iterable, Any]): An object to be squeezed if possible - - Returns: - (Any): Either iterable or scalar if possible - - """ - if _should_be_flattened(obj) and len(obj) == 1: - return obj[0] - else: - return obj - - -class DataProductCollection(BaseModel): - """ - A collection of data products. - - Use this class to serialize data products to JSON, de-serialized them from JSON, filter the products, etc. - - Attributes: - elements (ProductList): A list of data products. - - """ - - derived_from: Path | None = None - elements: ProductList = Field(default_factory=list) - - def __init__(self, **kwargs: Any): - DataProduct.deserialize_child_classes(key="elements", **kwargs) - super().__init__(**kwargs) - - @classmethod - def from_iterable(cls, *products: ProductList): - """ - Returns a new instance containing all of the products provided in the `*products` argument. - - Args: - products (Tuple[ProductList, ...]): Lists of data products to combine into a collection - - Returns: - (cls): A data product collection containing all of the provided products in the `*products` argument. - - """ - return cls(elements=list(flatten(products))) - - def get_tags(self, data_product_type: type[DataProduct] | None = None) -> set: - """ - Gets the tags related to a given type of `DataProduct`. Parent classes will match all child class types. - - Args: - data_product_type (Type[DataProduct] | None): type for which you want to get the list of tags - - Returns: - (set): set of tags applying to the given `data_product_type`. - - """ - tags = [] - for e in flatten(self.elements): - if data_product_type is None or isinstance(e, data_product_type): - for t in e.tags: - tags.append(t) - return set(tags) - - def add_products(self, *products: DataProduct): - """ - Args: - products (Tuple[DataProduct|ProductList, ...]): Products or lists of products to be - appended to collection elements. - - """ - self.elements.extend(flatten(products)) - - def generate_plotly_dashboard( - self, - title: str = "Trendify Autodash", - debug: bool = False, - ) -> dash.Dash: - from trendify.plotly_dashboard import generate_plotly_dashboard - - return generate_plotly_dashboard( - collection=self, - title=title, - debug=debug, - ) - - def serve_plotly_dashboard( - self, - title: str = "Trendify Autodash", - host: str = "127.0.0.1", - port: int = 8000, - debug: bool = False, - ): - app = self.generate_plotly_dashboard( - title=title, - debug=debug, - ) - if not debug: - try: - import waitress - - # Try to use waitress if available (a production WSGI server) - os.environ["FLASK_ENV"] = ( - "production" # This reduces some of the output - ) - logger.info( - f"Starting production server with waitress on http://{host}:{port}" - ) - waitress.serve(app.server, host=host, port=port) - except ImportError: - # Fall back to development server with a message about installing waitress - logger.warning( - "'waitress' package not found. For production use, install it with:\npip install waitress" - ) - logger.info(f"Starting development server on {host}:{port}") - app.run_server(debug=debug, host=host, port=port) - else: - # Use Flask development server - app.run_server(debug=debug, host=host, port=port) - - @classmethod - def collect_and_serve_plotly_dashboard( - cls, - *dirs: Path, - recursive: bool = False, - title: str = "Trendify Autodash", - host: str = "127.0.0.1", - port: int = 8000, - debug: bool = False, - data_products_filename: str = DATA_PRODUCTS_FNAME_DEFAULT, - ) -> tuple[DataProductCollection, dash.Dash]: - collection = cls.collect_from_all_jsons( - *dirs, recursive=recursive, data_products_filename=data_products_filename - ) - assert isinstance(collection, DataProductCollection) - plotly = collection.generate_plotly_dashboard(title=title, debug=debug) - plotly.run(debug=debug, host=host, port=port) - - return collection, plotly - - def drop_products( - self, - tag: Tag | None = None, - object_type: type[R] | None = None, - ) -> Self: - """ - Removes products matching `tag` and/or `object_type` from collection elements. - - Args: - tag (Tag | None): Tag for which data products should be dropped - object_type (Type | None): Type of data product to drop - - Returns: - (DataProductCollection): A new collection from which matching elements have been dropped. - - """ - match_key = tag is None, object_type is None - match match_key: - case (True, True): - return type(self)(elements=self.elements) - case (True, False): - assert object_type is not None - return type(self)( - elements=[ - e for e in self.elements if not isinstance(e, object_type) - ] - ) - case (False, True): - return type(self)( - elements=[e for e in self.elements if tag not in e.tags] - ) - case (False, False): - assert object_type is not None - return type(self)( - elements=[ - e - for e in self.elements - if not (tag in e.tags and isinstance(e, object_type)) - ] - ) - case _: - raise ValueError("Something is wrong with match statement") - - def get_products( - self, tag: Tag | None = None, object_type: type[R] | None = None - ) -> Self: - """ - Returns a new collection containing products matching `tag` and/or `object_type`. - Both `tag` and `object_type` default to `None` which matches all products. - - Args: - tag (Tag | None): Tag of data products to be kept. `None` matches all products. - object_type (Type | None): Type of data product to keep. `None` matches all products. - - Returns: - (DataProductCollection): A new collection containing matching elements. - - """ - match_key = tag is None, object_type is None - match match_key: - case (True, True): - return type(self)(elements=self.elements) - case (True, False): - assert object_type is not None - return type(self)( - elements=[e for e in self.elements if isinstance(e, object_type)] - ) - case (False, True): - return type(self)(elements=[e for e in self.elements if tag in e.tags]) - case (False, False): - assert object_type is not None - return type(self)( - elements=[ - e - for e in self.elements - if tag in e.tags and isinstance(e, object_type) - ] - ) - case _: - raise ValueError("Something is wrong with match statement") - - def get_products_of_type( - self, object_type: type[R], tag: Tag | None = None - ) -> list[R]: - """ - Returns the elements matching `object_type` (and `tag`, if given) as a list typed to `object_type`. - - Args: - object_type (Type[R]): Type of data product to keep. - tag (Tag | None): Tag of data products to be kept. `None` matches all products. - - Returns: - (list[R]): List of matching elements. - - """ - if tag is None: - return [e for e in self.elements if isinstance(e, object_type)] - return [ - e for e in self.elements if tag in e.tags and isinstance(e, object_type) - ] - - @classmethod - def union(cls, *collections: DataProductCollection): - """ - Aggregates all of the products from multiple collections into a new larger collection. - - Args: - collections (Tuple[DataProductCollection, ...]): Data product collections - for which the products should be combined into a new collection. - - Returns: - (Type[Self]): A new data product collection containing all products from - the provided `*collections`. - - """ - return cls(elements=list(flatten(chain(c.elements for c in collections)))) - - @classmethod - def collect_from_all_jsons( - cls, - *dirs: Path, - recursive: bool = False, - data_products_filename: str = "*.json", - ): - """ - Loads all products from JSONs in the given list of directories. - If recursive is set to `True`, the directories will be searched recursively - (this could lead to double counting if you pass in subdirectories of a parent). - - Args: - dirs (Tuple[Path, ...]): Directories from which to load data product JSON files. - recursive (bool): whether or not to search each of the provided directories recursively for - data product json files. - - Returns: - (Type[Self] | None): Data product collection if JSON files are found. - Otherwise, returns None if no product JSON files were found. - - """ - if not recursive: - jsons: list[Path] = list( - flatten(chain(list(d.glob(data_products_filename)) for d in dirs)) - ) - else: - jsons: list[Path] = list( - flatten( - chain(list(d.glob(f"**/{data_products_filename}")) for d in dirs) - ) - ) - if jsons: - return cls.union( - *tuple([cls.model_validate_json(p.read_text()) for p in jsons]) - ) - else: - return None - - @classmethod - def sort_by_tags( - cls, - dirs_in: list[Path], - dir_out: Path, - data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, - ): - """ - Loads the data product JSON files from `dirs_in` sorts the products. - Sorted products are written to smaller files in a nested directory structure under `dir_out`. - A nested directory structure is generated according to the data tags. - Resulting product files are named according to the directory from which they were originally loaded. - - Args: - dirs_in (List[Path]): Directories from which the data product JSON files are to be loaded. - dir_out (Path): Directory to which the sorted data products will be written into a - nested folder structure generated according to the data tags. - data_products_fname (str): Name of data products file - - """ - dirs_in = list(dirs_in) - dirs_in.sort() - len_dirs = len(dirs_in) - for n, dir_in in enumerate(dirs_in): - logger.info(f"Sorting tagged data from dir {n}/{len_dirs}") # , end=f"\r") - cls.sort_by_tags_single_directory( - dir_in=dir_in, dir_out=dir_out, data_products_fname=data_products_fname - ) - - @classmethod - def sort_by_tags_single_directory( - cls, - dir_in: Path, - dir_out: Path, - data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, - ): - """ - Loads the data product JSON files from `dir_in` and sorts the products. - Sorted products are written to smaller files in a nested directory structure under `dir_out`. - A nested directory structure is generated according to the data tags. - Resulting product files are named according to the directory from which they were originally loaded. - - Args: - dir_in (List[Path]): Directories from which the data product JSON files are to be loaded. - dir_out (Path): Directory to which the sorted data products will be written into a - nested folder structure generated according to the data tags. - data_products_fname (str): Name of data products file - - """ - products_file = dir_in.joinpath(data_products_fname) - if products_file.exists(): - logger.info(f"Sorting results from {dir_in = }") - collection = DataProductCollection.model_validate_json( - products_file.read_text() - ) - collection.derived_from = dir_in - tags = collection.get_tags() - for tag in tags: - sub_collection = collection.get_products(tag=tag) - save_dir = dir_out.joinpath(*atleast_1d(tag)) - save_dir.mkdir(parents=True, exist_ok=True) - # next_index = _get_and_reserve_index(save_dir=save_dir, dir_in=dir_in) - next_index = ProductIndexMap.get_index( - save_dir=save_dir, - metadata=ProductEntryMetadata( - source=products_file.resolve(), - ), - ) - file = save_dir.joinpath(str(next_index)).with_suffix(".json") - file.write_text(sub_collection.model_dump_json()) - else: - logger.info(f"No results found in {dir_in = }") - - @classmethod - def process_collection( - cls, - dir_in: Path, - dir_out: Path, - no_tables: bool, - no_xy_plots: bool, - no_histograms: bool, - dpi: int, - ): - """ - Processes collection of elements corresponding to a single tag. - This method should be called on a directory containing jsons for which the products have been - sorted. - - Args: - dir_in (Path): Input directory for loading assets - dir_out (Path): Output directory for assets - no_tables (bool): Suppresses table asset creation - no_xy_plots (bool): Suppresses xy plot asset creation - no_histograms (bool): Suppresses histogram asset creation - dpi (int): Sets resolution of asset output - - """ - collection = cls.collect_from_all_jsons(dir_in) - - if collection is not None: - for tag in collection.get_tags(): - # tags = collection.get_tags() - # try: - # [tag] = collection.get_tags() - # except: - # breakpoint() - saf: SingleAxisFigure | None = None - format_2ds: list[Format2D] = [] - - if not no_tables: - table_entries = collection.get_products_of_type( - tag=tag, - object_type=TableEntry, - ) - - if table_entries: - from trendify.api.generator.table_builder import TableBuilder - - logger.info(f"Making tables for {tag = }") - TableBuilder.process_table_entries( - tag=tag, - table_entries=table_entries, - out_dir=dir_out, - ) - logger.info(f"Finished tables for {tag = }") - - if not no_xy_plots: - traces = collection.get_products_of_type( - tag=tag, - object_type=Trace2D, - ) - points = collection.get_products_of_type( - tag=tag, - object_type=Point2D, - ) - axlines = collection.get_products_of_type( - tag=tag, - object_type=AxLine, - ) - - if points or traces or axlines: # Update condition - from trendify.api.generator.xy_data_plotter import XYDataPlotter - - logger.info(f"Making xy plot for {tag = }") - saf = XYDataPlotter.handle_points_and_traces( - tag=tag, - points=points, - traces=traces, - axlines=axlines, # Add this parameter - dir_out=dir_out, - dpi=dpi, - saf=saf, - ) - - format_2ds += [ - p.format2d - for p in points - if isinstance(p.format2d, Format2D) - ] - format_2ds += [ - t.format2d - for t in traces - if isinstance(t.format2d, Format2D) - ] - format_2ds += [ - a.format2d - for a in axlines - if isinstance(a.format2d, Format2D) - ] - logger.info(f"Finished xy plot for {tag = }") - - if not no_histograms: - histogram_entries = collection.get_products_of_type( - tag=tag, - object_type=HistogramEntry, - ) - - if histogram_entries: - logger.info(f"Making histogram for {tag = }") - saf = Histogrammer.handle_histogram_entries( - tag=tag, - histogram_entries=histogram_entries, - dir_out=dir_out, - dpi=dpi, - saf=saf, - ) - - format_2ds += [ - h.format2d - for h in histogram_entries - if isinstance(h.format2d, Format2D) - ] - logger.info(f"Finished histogram for {tag = }") - - if isinstance(saf, SingleAxisFigure): - formats = list(set(format_2ds)) - format2d = Format2D.union_from_iterable(formats) - saf.apply_format(format2d) - - save_path = dir_out.joinpath(*tuple(atleast_1d(tag))).with_suffix( - ".jpg" - ) - save_path.parent.mkdir(exist_ok=True, parents=True) - logger.info(f"Saving to {save_path}") - saf.savefig(save_path, dpi=dpi) - del saf - - def process_tables_for_tag( - self, - tag: Tag, - in_dirs: list[Path], - out_dir: Path, - data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, - ) -> TableBuilder: - """ - Process tables for a given tag using TableBuilder. - - Args: - tag (Tag): The tag for which to process tables. - in_dirs (List[Path]): Input directories containing data products. - out_dir (Path): Output directory for saving tables. - data_products_fname (str): Name of the data products file. - - Returns: - TableBuilder: The TableBuilder instance with generated tables. - - """ - from trendify.api.generator.table_builder import TableBuilder - - logger.info(f"Processing tables for {tag = }") - table_builder = TableBuilder(in_dirs=in_dirs, out_dir=out_dir) - table_builder.load_table(tag=tag, data_products_fname=data_products_fname) - return table_builder - - @classmethod - def process_tag_for_streamlit( - cls, jsons: list[Path], tag: Tag - ) -> PlotlyFigure | None: - collection = cls.union( - *tuple([cls.model_validate_json(p.read_text()) for p in jsons]) - ) - - if collection is not None: - plotly_figure: PlotlyFigure | None = None - format_2ds: list[Format2D] = [] - - traces = collection.get_products_of_type(tag=tag, object_type=Trace2D) - points = collection.get_products_of_type(tag=tag, object_type=Point2D) - axlines = collection.get_products_of_type(tag=tag, object_type=AxLine) - hist_entries = collection.get_products_of_type( - tag=tag, object_type=HistogramEntry - ) - - if points or traces or axlines or hist_entries: - from trendify.api.generator.xy_data_plotter import XYDataPlotter - - logger.info(f"Making xy plot for {tag = }") - plotly_figure = XYDataPlotter.plotly_handle_points_and_traces( - tag=tag, - points=points, - traces=traces, - axlines=axlines, - hist_entries=hist_entries, - plotly_figure=plotly_figure, - ) - - format_2ds += [ - p.format2d for p in points if isinstance(p.format2d, Format2D) - ] - format_2ds += [ - t.format2d for t in traces if isinstance(t.format2d, Format2D) - ] - format_2ds += [ - a.format2d for a in axlines if isinstance(a.format2d, Format2D) - ] - - format_2ds += [ - h.format2d for h in hist_entries if isinstance(h.format2d, Format2D) - ] - - if format_2ds: - combined_format = Format2D.union_from_iterable(format_2ds) - plotly_figure.apply_format(combined_format) - - logger.info(f"Finished plotly for {tag = }") - - return plotly_figure - - return None - msg = f"Tag {tag} does not have a generator implemented" - logger.critical(msg) - raise NotImplementedError(msg) - - # @classmethod - # def make_grafana_panels( - # cls, - # dir_in: Path, - # panel_dir: Path, - # server_path: str, - # ): - # """ - # Processes collection of elements corresponding to a single tag. - # This method should be called on a directory containing jsons for which the products have been - # sorted. - - # Args: - # dir_in (Path): Directory from which to read data products (should be sorted first) - # panel_dir (Path): Where to put the panel information - # """ - # import grafana_api as gapi - - # collection = cls.collect_from_all_jsons(dir_in) - # panel_dir.mkdir(parents=True, exist_ok=True) - - # if collection is not None: - # for tag in collection.get_tags(): - # dot_tag = ( - # ".".join([str(t) for t in tag]) if should_be_flattened(tag) else tag - # ) - # underscore_tag = ( - # "_".join([str(t) for t in tag]) if should_be_flattened(tag) else tag - # ) - - # table_entries: List[TableEntry] = collection.get_products( - # tag=tag, object_type=TableEntry - # ).elements - - # if table_entries: - # print(f"\n\nMaking tables for {tag = }\n") - # panel = gapi.Panel( - # title=( - # str(tag).capitalize() - # if isinstance(tag, str) - # else " ".join([str(t).title() for t in tag]) - # ), - # targets=[ - # gapi.Target( - # datasource=gapi.DataSource(), - # url="/".join( - # [server_path.strip("/"), dot_tag, "TableEntry"] - # ), - # uql=UQL_TableEntry, - # ) - # ], - # type="table", - # ) - # panel_dir.joinpath(underscore_tag + "_table_panel.json").write_text( - # panel.model_dump_json() - # ) - # print(f"\nFinished tables for {tag = }\n") - - # traces: List[Trace2D] = collection.get_products( - # tag=tag, object_type=Trace2D - # ).elements - # points: List[Point2D] = collection.get_products( - # tag=tag, object_type=Point2D - # ).elements - - # if points or traces: - # print(f"\n\nMaking xy chart for {tag = }\n") - # panel = gapi.Panel( - # targets=[ - # gapi.Target( - # datasource=gapi.DataSource(), - # url="/".join( - # [server_path.strip("/"), dot_tag, "Point2D"] - # ), - # uql=UQL_Point2D, - # refId="A", - # ), - # gapi.Target( - # datasource=gapi.DataSource(), - # url="/".join( - # [server_path.strip("/"), dot_tag, "Trace2D"] - # ), - # uql=UQL_Trace2D, - # refId="B", - # ), - # ], - # transformations=[ - # gapi.Merge(), - # gapi.PartitionByValues.from_fields( - # fields="label", - # keep_fields=False, - # fields_as_labels=False, - # ), - # ], - # type="xychart", - # ) - # panel_dir.joinpath(underscore_tag + "_xy_panel.json").write_text( - # panel.model_dump_json() - # ) - # print(f"\nFinished xy plot for {tag = }\n") - - # # histogram_entries: List[HistogramEntry] = collection.get_products(tag=tag, object_type=HistogramEntry).elements - # # if histogram_entries: - # # print(f'\n\nMaking histogram for {tag = }\n') - # # panel = gapi.Panel( - # # targets=[ - # # gapi.Target( - # # datasource=gapi.DataSource(), - # # url=server_path.joinpath(dot_tag, 'Point2D'), - # # uql=UQL_Point2D, - # # refId='A', - # # ), - # # gapi.Target( - # # datasource=gapi.DataSource(), - # # url=server_path.joinpath(dot_tag, 'Trace2D'), - # # uql=UQL_Trace2D, - # # refId='B', - # # ) - # # ], - # # type='xychart', - # # ) - # # panel.model_dump_json(dir_out.joinpath(underscore_tag + '_xy_panel.json'), indent=4) - # # print(f'\nFinished histogram for {tag = }\n') diff --git a/src/trendify_old/api/generator/data_product_generator.py b/src/trendify_old/api/generator/data_product_generator.py deleted file mode 100644 index 507fb71..0000000 --- a/src/trendify_old/api/generator/data_product_generator.py +++ /dev/null @@ -1,47 +0,0 @@ -from __future__ import annotations - -from pathlib import Path -import logging - -from trendify.api.base.data_product import ProductGenerator -from trendify.api.generator.data_product_collection import DataProductCollection -from trendify.api.base.helpers import DATA_PRODUCTS_FNAME_DEFAULT - -__all__ = ["DataProductGenerator"] - -logger = logging.getLogger(__name__) - - -class DataProductGenerator: - """ - A wrapper for saving the data products generated by a user defined function - - Args: - processor (ProductGenerator): A callable that receives a working directory - and returns a list of data products. - - """ - - def __init__(self, processor: ProductGenerator): - self._processor = processor - - def process_and_save( - self, workdir: Path, data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT - ): - """ - Runs the user-defined processor method stored at instantiation. - - Saves the returned products to a JSON file in the same directory. - - Args: - workdir (Path): working directory on which to run the processor method. - data_products_fname (str): Name of data products file - - """ - logger.info(f"Processing {workdir = } with {self._processor = }") - collection = DataProductCollection.from_iterable(self._processor(workdir)) - if collection.elements: - workdir.mkdir(exist_ok=True, parents=True) - workdir.joinpath(data_products_fname).write_text( - collection.model_dump_json() - ) diff --git a/src/trendify_old/api/generator/histogrammer.py b/src/trendify_old/api/generator/histogrammer.py deleted file mode 100644 index aaea04f..0000000 --- a/src/trendify_old/api/generator/histogrammer.py +++ /dev/null @@ -1,126 +0,0 @@ -from __future__ import annotations - -from pathlib import Path -import logging - -# from trendify.api.data_product_collection import DataProductCollection -from trendify.api.base.helpers import Tag -from trendify.api.plotting.histogram import HistogramEntry -from trendify.api.plotting.plotting import SingleAxisFigure, PlotlyFigure - -__all__ = ["Histogrammer"] - -logger = logging.getLogger(__name__) - - -class Histogrammer: - """ - Class for loading data products and histogramming the [`HistogramEntry`][trendify.api.HistogramEntry]s - - Args: - in_dirs (List[Path]): Directories from which the data products are to be loaded. - out_dir (Path): Directory to which the generated histogram will be stored - dpi (int): resolution of plot - - """ - - def __init__( - self, - in_dirs: list[Path], - out_dir: Path, - dpi: int, - ): - self.in_dirs = in_dirs - self.out_dir = out_dir - self.dpi = dpi - - # def plot( - # self, - # tag: Tag, - # data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, - # ): - # """ - # Generates a histogram by loading data from stored `in_dirs` and saves the plot to `out_dir` directory. - # A nested folder structure will be created if the provided `tag` is a tuple. - # In that case, the last tag item (with an appropriate suffix) will be used for the file name. - - # Args: - # tag (Tag): Tag used to filter the loaded data products - # """ - # print(f"Making histogram plot for {tag = }") - - # histogram_entries: List[HistogramEntry] = [] - # for directory in self.in_dirs: - # collection = DataProductCollection.model_validate_json( - # directory.joinpath(data_products_fname).read_text() - # ) - # histogram_entries.extend( - # collection.get_products(tag=tag, object_type=HistogramEntry).elements - # ) - - # self.handle_histogram_entries( - # tag=tag, - # histogram_entries=histogram_entries, - # dir_out=self.out_dir, - # dpi=self.dpi, - # ) - - @classmethod - def handle_histogram_entries( - cls, - tag: Tag, - histogram_entries: list[HistogramEntry], - dir_out: Path, - dpi: int, - saf: SingleAxisFigure | None = None, - ) -> SingleAxisFigure: - """ - Histograms the provided entries. Formats and saves the figure. Closes the figure. - - Args: - tag (Tag): Tag used to filter the loaded data products - histogram_entries (List[HistogramEntry]): A list of [`HistogramEntry`][trendify.api.HistogramEntry]s - dir_out (Path): Directory to which the generated histogram will be stored - dpi (int): resolution of plot - - """ - if saf is None: - saf = SingleAxisFigure.new(tag=tag) - - histogram_styles = set([h.style for h in histogram_entries]) - for s in histogram_styles: - matching_entries = [e for e in histogram_entries if e.style == s] - values = [e.value for e in matching_entries] - if s is not None: - saf.ax.hist(values, **s.as_plot_kwargs()) - else: - saf.ax.hist(values) - - # save_path = dir_out.joinpath(*tuple(atleast_1d(tag))).with_suffix(".jpg") - # try: - # format2d_set = set([h.format2d for h in histogram_entries]) - {None} - # [format2d] = format2d_set - # saf.apply_format(format2d=format2d) - # except: - # print( - # f"Format not applied to {save_path = } multiple entries conflict for given tag:\n\t{format2d_set = }" - # ) - # save_path = dir_out.joinpath(*tuple(atleast_1d(tag))).with_suffix(".jpg") - # save_path.parent.mkdir(exist_ok=True, parents=True) - # print(f"Saving to {save_path}") - # saf.savefig(save_path, dpi=dpi) - # del saf - - return saf - - @classmethod - def plotly_histogram( - cls, - tag: Tag, - histogram_entries: list[HistogramEntry], - plotly_figure: PlotlyFigure | None = None, - ) -> PlotlyFigure: - if plotly_figure is None: - plotly_figure = PlotlyFigure.new(tag=tag) - raise NotImplementedError() - return plotly_figure diff --git a/src/trendify_old/api/generator/table_builder.py b/src/trendify_old/api/generator/table_builder.py deleted file mode 100644 index eb78ae8..0000000 --- a/src/trendify_old/api/generator/table_builder.py +++ /dev/null @@ -1,153 +0,0 @@ -from __future__ import annotations - -from pathlib import Path -import logging - -import pandas as pd - -from trendify.api.generator.data_product_collection import ( - DataProductCollection, - atleast_1d, -) -from trendify.api.base.helpers import Tag, DATA_PRODUCTS_FNAME_DEFAULT -from trendify.api.formats.table import TableEntry - -__all__ = ["TableBuilder"] - -logger = logging.getLogger(__name__) - - -class TableBuilder: - """ - Builds tables (melted, pivot, and stats) for histogramming and including in a report or Grafana dashboard. - - Args: - in_dirs (List[Path]): directories from which to load data products - out_dir (Path): directory in which tables should be saved - - """ - - def __init__( - self, - in_dirs: list[Path], - out_dir: Path, - ): - self.in_dirs = in_dirs - self.out_dir = out_dir - - def load_table( - self, - tag: Tag, - data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, - ): - """ - Collects table entries from JSON files corresponding to given tag and processes them. - - Saves CSV files for the melted data frame, pivot dataframe, and pivot dataframe stats. - - File names will all use the tag with different suffixes - `'tag_melted.csv'`, `'tag_pivot.csv'`, `'name_stats.csv'`. - - Args: - tag (Tag): product tag for which to collect and process. - - """ - logger.info(f"Making table for {tag = }") - - table_entries: list[TableEntry] = [] - for subdir in self.in_dirs: - collection = DataProductCollection.model_validate_json( - subdir.joinpath(data_products_fname).read_text() - ) - table_entries.extend( - collection.get_products_of_type(tag=tag, object_type=TableEntry) - ) - - self.process_table_entries( - tag=tag, table_entries=table_entries, out_dir=self.out_dir - ) - - @classmethod - def process_table_entries( - cls, - tag: Tag, - table_entries: list[TableEntry], - out_dir: Path, - ): - """ - - Saves CSV files for the melted data frame, pivot dataframe, and pivot dataframe stats. - - File names will all use the tag with different suffixes - `'tag_melted.csv'`, `'tag_pivot.csv'`, `'name_stats.csv'`. - - Args: - tag (Tag): product tag for which to collect and process. - table_entries (List[TableEntry]): List of table entries - out_dir (Path): Directory to which table CSV files should be saved - - """ - melted = pd.DataFrame([t.get_entry_dict() for t in table_entries]) - pivot = TableEntry.pivot_table(melted=melted) - - save_path_partial = out_dir.joinpath(*tuple(atleast_1d(tag))) - save_path_partial.parent.mkdir(exist_ok=True, parents=True) - logger.info(f"Saving to {save_path_partial!s}_*.csv") - - melted.to_csv( - save_path_partial.with_stem(save_path_partial.stem + "_melted").with_suffix( - ".csv" - ), - index=False, - ) - - if pivot is not None: - pivot.to_csv( - save_path_partial.with_stem( - save_path_partial.stem + "_pivot" - ).with_suffix(".csv"), - index=True, - ) - - try: - stats = cls.get_stats_table(df=pivot) - if not stats.empty and not stats.isna().all().all(): - stats.to_csv( - save_path_partial.with_stem( - save_path_partial.stem + "_stats" - ).with_suffix(".csv"), - index=True, - ) - except Exception as e: - logger.error( - f"Could not generate pivot table for {tag = }. Error: {e!s}" - ) - - @classmethod - def get_stats_table( - cls, - df: pd.DataFrame, - ): - """ - Computes multiple statistics for each column - - Args: - df (pd.DataFrame): DataFrame for which the column statistics are to be calculated. - - Returns: - (pd.DataFrame): Dataframe having statistics (column headers) for each of the columns - of the input `df`. The columns of `df` will be the row indices of the stats table. - - """ - # Try to convert to numeric, coerce errors to NaN - numeric_df = df.apply(pd.to_numeric, errors="coerce") - - stats = { - "min": numeric_df.min(axis=0), - "mean": numeric_df.mean(axis=0), - "max": numeric_df.max(axis=0), - "sigma3": numeric_df.std(axis=0) * 3, - } - df_stats = pd.DataFrame(stats, index=df.columns) - df_stats.index.name = "Name" - return df_stats diff --git a/src/trendify_old/api/generator/xy_data_plotter.py b/src/trendify_old/api/generator/xy_data_plotter.py deleted file mode 100644 index 77600a9..0000000 --- a/src/trendify_old/api/generator/xy_data_plotter.py +++ /dev/null @@ -1,191 +0,0 @@ -from __future__ import annotations - -from pathlib import Path -import logging - -from trendify.api.generator.data_product_collection import ( - DataProductCollection, - atleast_1d, -) -from trendify.api.formats.format2d import Format2D -from trendify.api.base.helpers import Tag, DATA_PRODUCTS_FNAME_DEFAULT -from trendify.api.plotting.histogram import HistogramEntry -from trendify.api.plotting.plotting import PlotlyFigure, SingleAxisFigure -from trendify.api.plotting.point import Point2D -from trendify.api.plotting.trace import Trace2D -from trendify.api.plotting.axline import AxLine - -__all__ = ["XYDataPlotter"] - -logger = logging.getLogger(__name__) - - -class XYDataPlotter: - """ - Plots xy data from user-specified directories to a single axis figure - - Args: - in_dirs (List[Path]): Directories in which to search for data products from JSON files - out_dir (Path): directory to which figure will be output - dpi (int): Saved image resolution - - """ - - def __init__( - self, - in_dirs: list[Path], - out_dir: Path, - dpi: int = 500, - ): - self.in_dirs = in_dirs - self.out_dir = out_dir - self.dpi = dpi - - def plot( - self, - tag: Tag, - data_products_fname: str = DATA_PRODUCTS_FNAME_DEFAULT, - ): - """ - - Collects data from json files in stored `self.in_dirs`, - - plots the relevant products, - - applies labels and formatting, - - saves the figure - - closes matplotlib figure - - Args: - tag (Tag): data tag for which products are to be collected and plotted. - data_products_fname (str): Data products file name - - """ - logger.info(f"Making xy plot for {tag = }") - saf = SingleAxisFigure.new(tag=tag) - - for subdir in self.in_dirs: - collection = DataProductCollection.model_validate_json( - subdir.joinpath(data_products_fname).read_text() - ) - traces = collection.get_products_of_type(tag=tag, object_type=Trace2D) - points = collection.get_products_of_type(tag=tag, object_type=Point2D) - - if points or traces: - if points: - markers = set([p.marker for p in points]) - for marker in markers: - matching_points = [p for p in points if p.marker == marker] - x = [p.x for p in matching_points] - y = [p.y for p in matching_points] - if x and y: - if marker is not None: - saf.ax.scatter(x, y, **marker.as_scatter_plot_kwargs()) - else: - saf.ax.scatter(x, y) - - for trace in traces: - trace.plot_to_ax(saf.ax) - - formats = list( - set( - [p.format2d for p in points if p.format2d] - + [t.format2d for t in traces if t.format2d] - ) - ) - format2d = Format2D.union_from_iterable(formats) - saf.apply_format(format2d) - # saf.ax.autoscale(enable=True, axis='both', tight=True) - - save_path = self.out_dir.joinpath(*tuple(atleast_1d(tag))).with_suffix(".jpg") - save_path.parent.mkdir(exist_ok=True, parents=True) - logger.info(f"Saving to {save_path = }") - saf.savefig(path=save_path, dpi=self.dpi) - del saf - - @classmethod - def handle_points_and_traces( - cls, - tag: Tag, - points: list[Point2D], - traces: list[Trace2D], - axlines: list[AxLine], # Add this parameter - dir_out: Path, - dpi: int, - saf: SingleAxisFigure | None = None, - ): - """ - Plots points, traces, and axlines, formats figure, saves figure, and closes matplotlinb figure. - - Args: - tag (Tag): Tag corresponding to the provided points and traces - points (List[Point2D]): Points to be scattered - traces (List[Trace2D]): List of traces to be plotted - axlines (List[AxLine]): List of axis lines to be plotted - dir_out (Path): directory to output the plot - dpi (int): resolution of plot - - """ - if saf is None: - saf = SingleAxisFigure.new(tag=tag) - - if points: - markers = set([p.marker for p in points]) - for marker in markers: - matching_points = [p for p in points if p.marker == marker] - x = [p.x for p in matching_points] - y = [p.y for p in matching_points] - if x and y: - if marker is not None: - saf.ax.scatter(x, y, **marker.as_scatter_plot_kwargs()) - else: - saf.ax.scatter(x, y) - - for trace in traces: - trace.plot_to_ax(saf.ax) - - # Add plotting of axlines - for axline in axlines: - axline.plot_to_ax(saf.ax) - - # formats = list( - # set( - # [p.format2d for p in points] - # + [t.format2d for t in traces] - # + [a.format2d for a in axlines] - # ) - # ) - - # format2d = Format2D.union_from_iterable(formats) - # saf.apply_format(format2d) - # saf.ax.autoscale(enable=True, axis='both', tight=True) - - # save_path = dir_out.joinpath(*tuple(atleast_1d(tag))).with_suffix(".jpg") - # save_path.parent.mkdir(exist_ok=True, parents=True) - # print(f"Saving to {save_path = }") - # saf.savefig(path=save_path, dpi=dpi) - # del saf - - return saf - - @classmethod - def plotly_handle_points_and_traces( - cls, - tag: Tag, - points: list[Point2D], - traces: list[Trace2D], - axlines: list[AxLine], - hist_entries: list[HistogramEntry], - plotly_figure: PlotlyFigure | None = None, - ) -> PlotlyFigure: - if plotly_figure is None: - plotly_figure = PlotlyFigure.new(tag=tag) - - # Add all data products - for point in points: - point.add_to_plotly(plotly_figure=plotly_figure) - for trace in traces: - trace.add_to_plotly(plotly_figure=plotly_figure) - for axline in axlines: - axline.add_to_plotly(plotly_figure=plotly_figure) - for h in hist_entries: - h.add_to_plotly(plotly_figure=plotly_figure) - - return plotly_figure diff --git a/src/trendify_old/api/plotting/__init__.py b/src/trendify_old/api/plotting/__init__.py deleted file mode 100644 index 88b062a..0000000 --- a/src/trendify_old/api/plotting/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -from trendify.api.plotting.axline import * -from trendify.api.plotting.histogram import * -from trendify.api.plotting.plotting import * -from trendify.api.plotting.point import * -from trendify.api.plotting.trace import * diff --git a/src/trendify_old/api/plotting/axline.py b/src/trendify_old/api/plotting/axline.py deleted file mode 100644 index 6bac333..0000000 --- a/src/trendify_old/api/plotting/axline.py +++ /dev/null @@ -1,123 +0,0 @@ -from __future__ import annotations - -from enum import Enum -import logging - -from matplotlib.axes import Axes -from pydantic import ConfigDict - -from trendify.api.formats.format2d import PlottableData2D -from trendify.api.base.pen import Pen -from trendify.api.plotting.plotting import PlotlyFigure - -__all__ = ["AxLine", "LineOrientation"] - -logger = logging.getLogger(__name__) - - -class LineOrientation(Enum): - """ - Defines orientation for axis lines - - Attributes: - HORIZONTAL (LineOrientation): Horizontal line - VERTICAL (LineOrientation): Vertical line - - """ - - HORIZONTAL = "horizontal" - VERTICAL = "vertical" - - -class AxLine(PlottableData2D): - """ - Defines a horizontal or vertical line to be drawn on a plot. - - Attributes: - value (float): Value at which to draw the line (x-value for vertical, y-value for horizontal) - orientation (LineOrientation): Whether line should be horizontal or vertical - pen (Pen): Style and label information for drawing to matplotlib axes - tags (Tags): Tags to be used for sorting data - metadata (dict[str, str]): A dictionary of metadata - - """ - - value: float - orientation: LineOrientation - pen: Pen = Pen() - - model_config = ConfigDict(extra="forbid") - - def plot_to_ax(self, ax: Axes): - """ - Plots line to matplotlib axes object. - - Args: - ax (Axes): axes to which line should be plotted - - """ - match self.orientation: - case LineOrientation.HORIZONTAL: - ax.axhline(y=self.value, **self.pen.as_scatter_plot_kwargs()) - case LineOrientation.VERTICAL: - ax.axvline(x=self.value, **self.pen.as_scatter_plot_kwargs()) - case _: - logger.error(f"Unrecognized line orientation {self.orientation}") - - def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: - """Add axis line to plotly figure without showing it in the legend""" - match self.orientation: - case LineOrientation.HORIZONTAL: - plotly_figure.fig.add_hline( - y=self.value, - line=dict( - color=self.pen.rgba if self.pen else None, - width=self.pen.size if self.pen else None, - dash=( - self.pen._convert_linestyle_to_plotly() - if self.pen - else None - ), - ), - showlegend=False, # Do not show in the legend - opacity=self.pen.alpha if self.pen else None, - ) - plotly_figure.fig.add_annotation( - x=1.0, - y=self.value, - xref="paper", # Reference to the entire plotting area - yref="y", - text=self.pen.label, - showarrow=False, # Hide the arrow if not needed - xanchor="left", - yanchor="middle", # Center the text horizontally with the vline - ) - case LineOrientation.VERTICAL: - plotly_figure.fig.add_vline( - x=self.value, - line=dict( - color=self.pen.rgba if self.pen else None, - width=self.pen.size if self.pen else None, - dash=( - self.pen._convert_linestyle_to_plotly() - if self.pen - else None - ), - ), - showlegend=False, # Do not show in the legend - opacity=self.pen.alpha if self.pen else None, - ) - plotly_figure.fig.add_annotation( - x=self.value, - y=1.0, # Position slightly above the plot area - yref="paper", # Reference to the entire plotting area - text=self.pen.label, - showarrow=False, # Hide the arrow if not needed - xanchor="center", # Center the text horizontally with the vline - yanchor="bottom", - ) - case _: - logger.error(f"Unrecognized line orientation {self.orientation}") - return plotly_figure - - return plotly_figure diff --git a/src/trendify_old/api/plotting/histogram.py b/src/trendify_old/api/plotting/histogram.py deleted file mode 100644 index 46a779c..0000000 --- a/src/trendify_old/api/plotting/histogram.py +++ /dev/null @@ -1,249 +0,0 @@ -from __future__ import annotations - -import logging -from typing import cast -from matplotlib.colors import to_rgba -import plotly.graph_objects as go - -from numpydantic import NDArray, Shape -from pydantic import ConfigDict, Field - -from trendify.api.formats.format2d import PlottableData2D -from trendify.api.base.helpers import HashableBase, Tags -from trendify.api.plotting.plotting import PlotlyFigure - -__all__ = ["HistogramEntry", "HistogramStyle"] - -logger = logging.getLogger(__name__) - - -class HistogramStyle(HashableBase): - """ - Label and style data for generating histogram bars - - Attributes: - color (str): Color of bars - label (str|None): Legend entry - histtype (str): Histogram type corresponding to matplotlib argument of same name - alpha_edge (float): Opacity of bar edge - alpha_face (float): Opacity of bar face - linewidth (float): Line width of bar outline - bins (int | list[int] | Tuple[int] | NDArray[Shape["*"], int] | None): Number of bins (see [matplotlib docs][matplotlib.pyplot.hist]) - - """ - - color: str = "k" - label: str | None = None - histtype: str = "stepfilled" - alpha_edge: float = 0 - alpha_face: float = 0.3 - linewidth: float = 2 - zorder: int = 1 - bins: int | list[int] | tuple[int] | NDArray[Shape["*"], int] | None = None - - def as_plot_kwargs(self): - """ - Returns: - (dict): kwargs for matplotlib `hist` method - - """ - return { - "facecolor": (self.color, self.alpha_face), - "edgecolor": (self.color, self.alpha_edge), - "linewidth": self.linewidth, - "label": self.label, - "histtype": self.histtype, - "bins": self.bins, - "zorder": self.zorder, - } - - @property - def rgba_face(self) -> str: - """ - Convert the pen's color to rgba string format. - - Returns: - str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 - - """ - # Handle different color input formats - if isinstance(self.color, tuple): - if len(self.color) == 3: # RGB tuple - r, g, b = self.color - a = self.alpha_face - else: # RGBA tuple - r, g, b, a = self.color - # Convert 0-1 range to 0-255 for RGB - r, g, b = int(r * 255), int(g * 255), int(b * 255) - else: # String color (name or hex) - # Use matplotlib's color converter - rgba_vals = to_rgba(self.color, self.alpha_face) - # Convert 0-1 range to 0-255 for RGB - r, g, b = [int(x * 255) for x in rgba_vals[:3]] - a = rgba_vals[3] - - return f"rgba({r}, {g}, {b}, {a})" - - @property - def rgba_edge(self) -> str: - """ - Convert the pen's color to rgba string format. - - Returns: - str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 - - """ - # Handle different color input formats - if isinstance(self.color, tuple): - if len(self.color) == 3: # RGB tuple - r, g, b = self.color - a = self.alpha_edge - else: # RGBA tuple - r, g, b, a = self.color - # Convert 0-1 range to 0-255 for RGB - r, g, b = int(r * 255), int(g * 255), int(b * 255) - else: # String color (name or hex) - # Use matplotlib's color converter - rgba_vals = to_rgba(self.color, self.alpha_edge) - # Convert 0-1 range to 0-255 for RGB - r, g, b = [int(x * 255) for x in rgba_vals[:3]] - a = rgba_vals[3] - - return f"rgba({r}, {g}, {b}, {a})" - - @property - def rgb_face(self) -> str: - return ", ".join(self.rgba_face.split(",")[0:-1]) + ")" - - @property - def rgb_edge(self) -> str: - return ", ".join(self.rgba_edge.split(",")[0:-1]) + ")" - - def get_face_contrast_color(self, background_luminance: float = 1.0) -> str: - """ - Returns 'white' or 'black' to provide the best contrast against the pen's color, - taking into account the alpha (transparency) value of the line. - - Args: - background_luminance (float): The luminance of the background (default is 1.0 for white). - - Returns: - str: 'white' or 'black' - - """ - # Convert the pen's color to RGB (0-255 range) and get alpha - if isinstance(self.color, tuple): - if len(self.color) == 3: # RGB tuple - r, g, b = self.color - a = self.alpha_face - else: # RGBA tuple - r, g, b, a = self.color - r, g, b = int(r * 255), int(g * 255), int(b * 255) - else: # String color (name or hex) - rgba_vals = to_rgba(self.color, self.alpha_face) - r, g, b = [int(x * 255) for x in rgba_vals[:3]] - a = rgba_vals[3] - - # Calculate relative luminance of the pen's color - def luminance(channel): - channel /= 255.0 - return ( - channel / 12.92 - if channel <= 0.03928 - else ((channel + 0.055) / 1.055) ** 2.4 - ) - - color_luminance = ( - 0.2126 * luminance(r) + 0.7152 * luminance(g) + 0.0722 * luminance(b) - ) - - # Blend the color luminance with the background luminance based on alpha - blended_luminance = (1 - a) * background_luminance + a * color_luminance - - # Return white for dark blended colors, black for light blended colors - return "white" if blended_luminance < 0.5 else "black" - - -class HistogramEntry(PlottableData2D): - """ - Use this class to specify a value to be collected into a matplotlib histogram. - - Attributes: - tags (Tags): Tags used to sort data products - value (float | str): Value to be binned - style (HistogramStyle): Style of histogram display - - """ - - value: float | str - tags: Tags - style: HistogramStyle | None = Field(default_factory=HistogramStyle) - - model_config = ConfigDict(extra="forbid") - - def add_to_plotly(self, plotly_figure: PlotlyFigure): - """Add histogram entry to plotly figure, merging with existing traces if possible""" - if not self.style: - logger.error("HistogramEntry style is not defined.") - return plotly_figure - - # Create legend group key based on the label and color - legend_key = ( - f"{self.style.label}_{self.style.rgba_face}" if self.style.label else None - ) - - # Check if a trace with the same legend group already exists - traces = cast("tuple[go.Histogram, ...]", plotly_figure.fig.data) - for trace in traces: - if trace.legendgroup == legend_key: - # Append the value to the existing trace's x data - trace.x = list(trace.x) + [self.value] - return plotly_figure - - metadata_html = ( - "
".join([f"{key}: {value}" for key, value in self.metadata.items()]) - if self.metadata - else "" - ) - - hovertemplate = ( - f"{self.style.label if self.style.label else ''}
" - "x: %{x}
" - "y: %{y}
" - f"{metadata_html}" - ) - - # If no existing trace, add a new one - plotly_figure.fig.add_trace( - go.Histogram( - x=[self.value], - name=self.style.label, # Legend label - marker=dict( - color=self.style.rgba_face, - line=dict( - color=self.style.rgba_edge, - width=self.style.linewidth, - ), - ), - zorder=self.style.zorder, - nbinsx=self.style.bins if isinstance(self.style.bins, int) else None, - legendgroup=legend_key, # Group histograms with the same label and color - hovertemplate=hovertemplate, - hoverlabel=dict( - bgcolor=self.style.rgba_face, - bordercolor=self.style.rgba_edge, - font=dict( - color=self.style.get_face_contrast_color() # Optionally, set the font color as well - ), - ), - showlegend=( - True if self.style.label is not None else False - ), # Always show legend for the first trace - ) - ) - - # Track the legend group to avoid duplicate legend entries - if legend_key and legend_key not in plotly_figure.legend_groups: - plotly_figure.legend_groups.add(legend_key) - - return plotly_figure diff --git a/src/trendify_old/api/plotting/plotting.py b/src/trendify_old/api/plotting/plotting.py deleted file mode 100644 index 3955f60..0000000 --- a/src/trendify_old/api/plotting/plotting.py +++ /dev/null @@ -1,343 +0,0 @@ -from __future__ import annotations - -from dataclasses import dataclass, field -from pathlib import Path -import matplotlib.pyplot as plt -import warnings -import logging - -import numpy as np -import plotly.graph_objects as go - -from trendify.api.formats.format2d import AxisScale, PlottableData2D - -try: - from typing import Self, TYPE_CHECKING -except: - from typing import Self, TYPE_CHECKING - -from pydantic import ConfigDict - -from trendify.api.base.helpers import Tag - -if TYPE_CHECKING: - from trendify.api.formats.format2d import Format2D, Grid - from matplotlib.axes import Axes - from matplotlib.figure import Figure - - -__all__ = ["PlotlyFigure", "SingleAxisFigure"] - -logger = logging.getLogger(__name__) - - -@dataclass -class SingleAxisFigure: - """ - Data class storing a matlab figure and axis. The stored tag data in this class is so-far unused. - - Attributes: - ax (Axes): Matplotlib axis to which data will be plotted - fig (Figure): Matplotlib figure. - tag (Tag): Figure tag. Not yet used. - - """ - - model_config = ConfigDict(arbitrary_types_allowed=True) - tag: Tag - fig: Figure - ax: Axes - - @classmethod - def new(cls, tag: Tag): - """ - Creates new figure and axis. Returns new instance of this class. - - Args: - tag (Tag): tag (not yet used) - - Returns: - (Type[Self]): New single axis figure - - """ - fig = plt.figure() - ax = fig.add_subplot(1, 1, 1) - return cls( - tag=tag, - fig=fig, - ax=ax, - ) - - def apply_format(self, format2d: Format2D): - """ - Applies format to figure and axes labels and limits - - Args: - format2d (Format2D): format information to apply to the single axis figure - - """ - if format2d.title_ax is not None: - self.ax.set_title(format2d.title_ax) - if format2d.title_fig is not None: - self.fig.suptitle(format2d.title_fig) - - leg = None - if format2d.legend is not None: - with warnings.catch_warnings(action="ignore", category=UserWarning): - handles, labels = self.ax.get_legend_handles_labels() - by_label = dict(zip(labels, handles)) - if by_label: - sorted_items = sorted(by_label.items(), key=lambda item: item[0]) - labels_sorted, handles_sorted = zip(*sorted_items) - - kwargs = format2d.legend.to_kwargs() - - leg = self.ax.legend( - handles=handles_sorted, - labels=labels_sorted, - bbox_to_anchor=format2d.legend.bbox_to_anchor, - **kwargs, - ) - leg.set_zorder(level=format2d.legend.zorder) - - if leg is not None and format2d.legend.edgecolor: - leg.get_frame().set_edgecolor(format2d.legend.edgecolor) - - if format2d.label_x is not None: - self.ax.set_xlabel(xlabel=format2d.label_x) - if format2d.label_y is not None: - self.ax.set_ylabel(ylabel=format2d.label_y) - - self.ax.set_xlim(left=format2d.lim_x_min, right=format2d.lim_x_max) - self.ax.set_ylim(bottom=format2d.lim_y_min, top=format2d.lim_y_max) - - self.ax.set_xscale(format2d.scale_x.value) - self.ax.set_yscale(format2d.scale_y.value) - - if format2d.grid is not None: - self.apply_grid(format2d.grid) - - self.fig.set_size_inches(format2d.figure_width, format2d.figure_height) - self.fig.tight_layout(rect=(0, 0.03, 1, 0.95)) - return self - - def apply_grid(self, grid: Grid): - self.ax.set_axisbelow(True) - - # Major grid - if grid.major.show: - self.ax.grid( - visible=True, - which="major", - color=grid.major.pen.color, - linestyle=grid.major.pen.linestyle, - linewidth=grid.major.pen.size, - alpha=grid.major.pen.alpha, - zorder=grid.zorder, - ) - else: - self.ax.grid(visible=False, which="major") - - # Minor ticks and grid - if grid.enable_minor_ticks: - self.ax.minorticks_on() - else: - self.ax.minorticks_off() - - if grid.minor.show: - self.ax.grid( - visible=True, - which="minor", - color=grid.minor.pen.color, - linestyle=grid.minor.pen.linestyle, - linewidth=grid.minor.pen.size, - alpha=grid.minor.pen.alpha, - zorder=grid.zorder, - ) - else: - self.ax.grid(visible=False, which="minor") - - def savefig(self, path: Path, dpi: int = 500): - """ - Wrapper on matplotlib savefig method. Saves figure to given path with given dpi resolution. - - Returns: - (Self): Returns self - - """ - self.fig.savefig(path, dpi=dpi) - return self - - def __del__(self): - """ - Closes stored matplotlib figure before deleting reference to object. - """ - plt.close(self.fig) - - -@dataclass -class PlotlyFigure: - model_config = ConfigDict(arbitrary_types_allowed=True) - tag: Tag - fig: go.Figure - legend_groups: set[str] = field(default_factory=set) - - @classmethod - def new(cls, tag: Tag): - """ - Creates new figure and axis. Returns new instance of this class. - - Args: - tag (Tag): tag (not yet used) - - Returns: - (Type[Self]): New single axis figure - - """ - fig = go.Figure() - return cls(tag=tag, fig=fig) - - def apply_format(self, format2d: Format2D): - """ - Applies format to Plotly figure layout including axes labels and limits - - Args: - format2d (Format2D): format information to apply to the figure - - """ - layout_updates = {} - - # Set titles - if format2d.title_fig is not None and format2d.title_ax is not None: - layout_updates["title"] = f"{format2d.title_fig} | {format2d.title_ax}" - elif format2d.title_fig is None and format2d.title_ax is not None: - layout_updates["title"] = f"{format2d.title_ax}" - elif format2d.title_fig is not None and format2d.title_ax is None: - layout_updates["title"] = f"{format2d.title_fig}" - - # Set axis labels - if format2d.label_x is not None: - layout_updates["xaxis"] = {"title": format2d.label_x} - if format2d.label_y is not None: - layout_updates["yaxis"] = {"title": format2d.label_y} - - # Set axis ranges - def _log10(v: float | None): - return None if v is None else np.log10(v) - - if format2d.lim_x_min is not None or format2d.lim_x_max is not None: - if "xaxis" not in layout_updates: - layout_updates["xaxis"] = {} - - if format2d.scale_x == AxisScale.LOG: - layout_updates["xaxis"]["range"] = [ - _log10(format2d.lim_x_min), - _log10(format2d.lim_x_max), - ] - elif format2d.scale_x == AxisScale.LOG: - layout_updates["xaxis"]["range"] = [ - format2d.lim_x_min, - format2d.lim_x_max, - ] - - if format2d.lim_y_min is not None or format2d.lim_y_max is not None: - if "yaxis" not in layout_updates: - layout_updates["yaxis"] = {} - if format2d.scale_y == AxisScale.LOG: - layout_updates["yaxis"]["range"] = [ - _log10(format2d.lim_y_min), - _log10(format2d.lim_y_max), - ] - elif format2d.scale_y == AxisScale.LOG: - layout_updates["yaxis"]["range"] = [ - format2d.lim_y_min, - format2d.lim_y_max, - ] - - # Set axis scales - if format2d.scale_x is not None: - if "xaxis" not in layout_updates: - layout_updates["xaxis"] = {} - layout_updates["xaxis"]["type"] = format2d.scale_x.value - - if format2d.scale_y is not None: - if "yaxis" not in layout_updates: - layout_updates["yaxis"] = {} - layout_updates["yaxis"]["type"] = format2d.scale_y.value - - # Set legend - if format2d.legend is not None: - layout_updates["showlegend"] = format2d.legend.visible - layout_updates["legend"] = dict( - title=format2d.legend.title, - bordercolor=format2d.legend.edgecolor, - **format2d.legend.plotly_location, - ) - - # Apply grid if specified - if format2d.grid is not None: - self.apply_grid(format2d.grid) - - # Update layout - self.fig.update_layout(**layout_updates) - return self - - def apply_grid(self, grid: Grid): - """ - Applies grid settings to the Plotly figure - - Args: - grid (Grid): Grid configuration to apply - - """ - # Major grid - - xaxis_updates = { - "showgrid": grid.major.show, - "gridcolor": grid.major.pen.rgba if grid.major.show else None, - "gridwidth": grid.major.pen.size if grid.major.show else None, - "griddash": "solid" if grid.major.pen.linestyle == "-" else "dash", - "gridwidth": grid.major.pen.size if grid.major.show else None, - } - - yaxis_updates = { - "showgrid": grid.major.show, - "gridcolor": grid.major.pen.rgba if grid.major.show else None, - "gridwidth": grid.major.pen.size if grid.major.show else None, - "griddash": "solid" if grid.major.pen.linestyle == "-" else "dash", - "gridwidth": grid.major.pen.size if grid.major.show else None, - } - - # Minor ticks and grid - if grid.enable_minor_ticks: - xaxis_updates["minor"] = { - "showgrid": grid.minor.show, - "gridcolor": grid.minor.pen.rgba if grid.minor.show else None, - "gridwidth": grid.minor.pen.size if grid.minor.show else None, - "griddash": "solid" if grid.minor.pen.linestyle == "-" else "dash", - } - yaxis_updates["minor"] = { - "showgrid": grid.minor.show, - "gridcolor": grid.minor.pen.rgba if grid.minor.show else None, - "gridwidth": grid.minor.pen.size if grid.minor.show else None, - "griddash": "solid" if grid.minor.pen.linestyle == "-" else "dash", - } - - self.fig.update_xaxes(**xaxis_updates) - self.fig.update_yaxes(**yaxis_updates) - - def add_data_product(self, product: PlottableData2D) -> Self: - """ - Add a data product to the figure - - Args: - product (PlottableData2D): Data product to add to figure - - Returns: - Self: Returns self for method chaining - - """ - raise NotImplementedError() - - product.add_to_plotly(self.fig) - return self diff --git a/src/trendify_old/api/plotting/point.py b/src/trendify_old/api/plotting/point.py deleted file mode 100644 index 8979722..0000000 --- a/src/trendify_old/api/plotting/point.py +++ /dev/null @@ -1,91 +0,0 @@ -from __future__ import annotations - -import logging - -from pydantic import ConfigDict -import plotly.graph_objects as go - -from trendify.api.plotting.plotting import PlotlyFigure -from trendify.api.styling.marker import Marker - -# from trendify.api.plotting.plotting import XYData -from trendify.api.formats.format2d import XYData - -__all__ = ["Point2D"] - -logger = logging.getLogger(__name__) - - -class Point2D(XYData): - """ - Defines a point to be scattered onto xy plot. - - Attributes: - tags (Tags): Tags to be used for sorting data. - x (float | str): X value for the point. - y (float | str): Y value for the point. - marker (Marker | None): Style and label information for scattering points to matplotlib axes. - Only the label information is used in Grafana. - Eventually style information will be used in grafana. - metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana - - """ - - x: float | str - y: float | str - marker: Marker | None = Marker() - - model_config = ConfigDict(extra="forbid") - - def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: - """Add point to plotly figure with legendgroup support""" - legend_key = ( - f"{self.marker.label}_{self.marker.color}_{self.marker.symbol}" - if self.marker - else None - ) - # Prepare metadata for the tooltip - metadata_html = ( - "
".join([f"{key}: {value}" for key, value in self.metadata.items()]) - if self.metadata - else "" - ) - - # Define hovertemplate for the tooltip - hovertemplate = ( - f"{self.marker.label if self.marker else ''}
" - "x: %{x}
" - "y: %{y}
" - f"{metadata_html}" - ) - - plotly_figure.fig.add_trace( - go.Scatter( - x=[self.x], - y=[self.y], - name=self.marker.label if self.marker else None, - mode="markers", - marker=dict( - color=self.marker.rgba if self.marker else None, - size=self.marker.size if self.marker else None, - symbol=self.marker.plotly_symbol if self.marker else None, - ), - zorder=int(self.marker.zorder) if self.marker else None, - legendgroup=legend_key, - hovertemplate=hovertemplate, - hoverlabel=dict( - bgcolor=(self.marker.rgba if self.marker else None), - font=dict( - color=self.marker.get_contrast_color() if self.marker else None - ), - ), - showlegend=( - True if legend_key not in plotly_figure.legend_groups else False - ), - ) - ) - - if legend_key and legend_key not in plotly_figure.legend_groups: - plotly_figure.legend_groups.add(legend_key) - - return plotly_figure diff --git a/src/trendify_old/api/plotting/trace.py b/src/trendify_old/api/plotting/trace.py deleted file mode 100644 index 51f86a5..0000000 --- a/src/trendify_old/api/plotting/trace.py +++ /dev/null @@ -1,194 +0,0 @@ -from __future__ import annotations - -import logging - -import plotly.graph_objects as go -from trendify.api.plotting.plotting import PlotlyFigure - -try: - from typing import TYPE_CHECKING -except: - from typing import TYPE_CHECKING - -import numpy as np -from numpydantic import NDArray, Shape -from pydantic import ConfigDict - -# from trendify.api.plotting.plotting import XYData -from trendify.api.formats.format2d import XYData -from trendify.api.base.pen import Pen -from trendify.api.base.helpers import Tags -from trendify.api.styling.marker import Marker -from trendify.api.plotting.point import Point2D - -if TYPE_CHECKING: - from trendify.api.formats.format2d import Format2D - from matplotlib.axes import Axes - -__all__ = ["Trace2D"] - -logger = logging.getLogger(__name__) - - -class Trace2D(XYData): - """ - A collection of points comprising a trace. - Use the [Trace2D.from_xy][trendify.api.Trace2D.from_xy] constructor. - - Attributes: - points (List[Point2D]): List of points. Usually the points would have null values - for `marker` and `format2d` fields to save space. - pen (Pen): Style and label information for drawing to matplotlib axes. - Only the label information is used in Grafana. - Eventually style information will be used in grafana. - tags (Tags): Tags to be used for sorting data. - metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana - - """ - - model_config = ConfigDict(extra="forbid") - - points: list[Point2D] - pen: Pen = Pen() - - @property - def x(self) -> NDArray[Shape["*"], float]: - """ - Returns an array of x values from `self.points` - - Returns: - (NDArray[Shape["*"], float]): array of x values from `self.points` - ' - - """ - return np.array([p.x for p in self.points]) - - @property - def y(self) -> NDArray[Shape["*"], float]: - """ - Returns an array of y values from `self.points` - - Returns: - (NDArray[Shape["*"], float]): array of y values from `self.points` - - """ - return np.array([p.y for p in self.points]) - - def propagate_format2d_and_pen(self, marker_symbol: str = ".") -> None: - """ - Propagates format and style info to all `self.points` (in-place). - I thought this would be useful for grafana before I learned better methods for propagating the data. - It still may end up being useful if my plotting method changes. Keeping for potential future use case. - - Args: - marker_symbol (str): Valid matplotlib marker symbol - - """ - self.points = [ - p.model_copy( - update={ - "tags": self.tags, - "format2d": self.format2d, - "marker": Marker.from_pen(self.pen, symbol=marker_symbol), - } - ) - for p in self.points - ] - - @classmethod - def from_xy( - cls, - tags: Tags, - x: NDArray[Shape["*"], float], - y: NDArray[Shape["*"], float], - pen: Pen = Pen(), - format2d: Format2D | None = None, - ): - """ - Creates a list of [Point2D][trendify.api.plotting.point.Point2D]s from xy data and returns a new [Trace2D][trendify.api.plotting.Trace2D] product. - - Args: - tags (Tags): Tags used to sort data products - x (NDArray[Shape["*"], float]): x values - y (NDArray[Shape["*"], float]): y values - pen (Pen): Style and label for trace - format2d (Format2D | None): Format to apply to plot - - """ - return cls( - tags=tags, - points=[ - Point2D( - tags=[None], - x=x_, - y=y_, - marker=None, - format2d=None, - ) - for x_, y_ in zip(x, y) - ], - pen=pen, - format2d=format2d, - ) - - def plot_to_ax(self, ax: Axes): - """ - Plots xy data from trace to a matplotlib axes object. - - Args: - ax (Axes): axes to which xy data should be plotted - - """ - ax.plot(self.x, self.y, **self.pen.as_scatter_plot_kwargs()) - - def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: - legend_key = ( - f"{self.pen.label}_{self.pen.color}_{self.pen._convert_linestyle_to_plotly()}" - if self.pen - else None - ) - # Prepare metadata for the tooltip - metadata_html = ( - "
".join([f"{key}: {value}" for key, value in self.metadata.items()]) - if self.metadata - else "" - ) - - # Define hovertemplate for the tooltip - hovertemplate = ( - f"{self.pen.label if self.pen else ''}
" - "x: %{x}
" - "y: %{y}
" - f"{metadata_html}" - ) - - plotly_figure.fig.add_trace( - go.Scatter( - x=[p.x for p in self.points], - y=[p.y for p in self.points], - name=self.pen.label if self.pen else None, - mode="lines", - line=dict( - color=self.pen.rgba if self.pen else None, - width=self.pen.size if self.pen else None, - dash=self.pen._convert_linestyle_to_plotly() if self.pen else None, - ), - marker=dict( - color=self.pen.rgba if self.pen else None, # Marker color - ), - zorder=int(self.pen.zorder), - hovertemplate=hovertemplate, - hoverlabel=dict( - bgcolor=(self.pen.rgba if self.pen else None), - font=dict(color=self.pen.get_contrast_color()), - ), - legendgroup=legend_key, - showlegend=( - True if legend_key not in plotly_figure.legend_groups else False - ), - ) - ) - - if legend_key and legend_key not in plotly_figure.legend_groups: - plotly_figure.legend_groups.add(legend_key) - return plotly_figure diff --git a/src/trendify_old/api/styling/__init__.py b/src/trendify_old/api/styling/__init__.py deleted file mode 100644 index fd03478..0000000 --- a/src/trendify_old/api/styling/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -from trendify.api.styling.grid import * -from trendify.api.styling.marker import * -from trendify.api.styling.legend import * diff --git a/src/trendify_old/api/styling/grid.py b/src/trendify_old/api/styling/grid.py deleted file mode 100644 index 593f092..0000000 --- a/src/trendify_old/api/styling/grid.py +++ /dev/null @@ -1,149 +0,0 @@ -from __future__ import annotations - -from enum import Enum, auto -from collections.abc import Iterable -import logging - -from pydantic import ConfigDict - -from trendify.api.base.helpers import HashableBase -from trendify.api.base.pen import Pen - - -logger = logging.getLogger(__name__) - -__all__ = ["Grid", "GridAxis", "GridTheme"] - - -class GridTheme(Enum): - MATLAB = auto() - LIGHT = auto() - DARK = auto() - - -class GridAxis(HashableBase): - """ - Controls styling and visibility for one type of grid (major or minor). - - Attributes: - show (bool): Whether to display this grid axis. - pen (Pen): Style and label information for drawing to matplotlib axes. - - """ - - show: bool = False - pen: Pen = Pen( - color="gray", - alpha=1.0, - size=0.75, - linestyle="-", - label=None, - ) - - model_config = ConfigDict(extra="forbid") - - -class Grid(HashableBase): - """ - Container for major and minor grid line configuration. - - Attributes: - major (GridAxis): Configuration for major grid lines. - minor (GridAxis): Configuration for minor grid lines. - enable_minor_ticks (bool): Whether to enable minor ticks on the axes. - - """ - - major: GridAxis = GridAxis(show=False) - minor: GridAxis = GridAxis(show=False) - enable_minor_ticks: bool = False - zorder: float = -1 - - model_config = ConfigDict(extra="forbid") - - @classmethod - def from_theme(cls, name: GridTheme) -> Grid: - """ - Predefined themes for common grid styles. - """ - themes = { - GridTheme.MATLAB: cls( - major=GridAxis( - show=True, - pen=Pen( - color="#b0b0b0", - linestyle="-", - size=0.8, - alpha=0.35, - label=None, - ), - ), - minor=GridAxis( - show=True, - pen=Pen( - color="#b0b0b0", - linestyle=(0, (3, 1, 1, 1)), - size=0.6, - alpha=0.25, - label=None, - ), - ), - enable_minor_ticks=True, - ), - GridTheme.LIGHT: cls( - major=GridAxis( - show=True, - pen=Pen( - color="#E0E0E0", - linestyle="--", - size=0.7, - alpha=0.9, - label=None, - ), - ), - minor=GridAxis(show=False), - enable_minor_ticks=False, - ), - GridTheme.DARK: cls( - major=GridAxis( - show=True, - pen=Pen( - color="#444444", - linestyle="--", - size=0.7, - alpha=0.5, - label=None, - ), - ), - minor=GridAxis(show=False), - enable_minor_ticks=False, - ), - } - - try: - return themes[name] - except KeyError: - raise ValueError(f"Unknown grid theme: {name!r}") - - @classmethod - def union_from_iterable(cls, grids: Iterable[Grid]) -> Grid: - """ - Gets the most inclusive grid format from a list of Grid objects. - Requires that all GridAxis fields (major/minor) are consistent across the objects. - """ - grids = list(set(grids) - {None}) - if not grids: - return cls() - - # Enforce consistent GridAxis settings - [major] = set(g.major for g in grids) - [minor] = set(g.minor for g in grids) - [enable_minor_ticks] = set(g.enable_minor_ticks for g in grids) - [zorder] = set(g.zorder for g in grids) - - return cls( - major=major, - minor=minor, - enable_minor_ticks=enable_minor_ticks, - zorder=zorder, - ) diff --git a/src/trendify_old/api/styling/legend.py b/src/trendify_old/api/styling/legend.py deleted file mode 100644 index f51a5bb..0000000 --- a/src/trendify_old/api/styling/legend.py +++ /dev/null @@ -1,206 +0,0 @@ -from __future__ import annotations - -from enum import StrEnum - -from trendify.api.base.helpers import HashableBase - -__all__ = ["Legend", "LegendLocation"] - - -class LegendLocation(StrEnum): - BEST = "best" - UPPER_RIGHT = "upper right" - UPPER_LEFT = "upper left" - LOWER_LEFT = "lower left" - LOWER_RIGHT = "lower right" - RIGHT = "right" - CENTER_LEFT = "center left" - CENTER_RIGHT = "center right" - LOWER_CENTER = "lower center" - UPPER_CENTER = "upper center" - CENTER = "center" - - -class Legend(HashableBase): - """ - Configuration container for Matplotlib legend styling and placement. - - The `Legend` class controls the appearance and position of the plot legend. - Placement is governed by a combination of the `loc` and `bbox_to_anchor` - parameters, mirroring Matplotlib's `Axes.legend()`. - - Attributes: - visible (bool): Whether the legend should be displayed. Defaults to True. - title (str | None): Title displayed above the legend entries. - framealpha (float): Opacity of the legend background. 1 = fully opaque, 0 = fully transparent. - loc (LegendLocation): Anchor point for the legend (e.g., upper right, lower left). See `LegendLocation` enum for options. - ncol (int): Number of columns to arrange legend entries into. - fancybox (bool): Whether to draw a rounded (True) or square (False) legend frame. - edgecolor (str): Color of the legend frame border. Default is "black". - bbox_to_anchor (tuple[float, float] | None): Offset position of the legend in figure or axes coordinates. If None, the legend is placed inside the axes using `loc`. - - Good starter values for common placements: - - - **Inside (default)**: - ```python - bbox_to_anchor=None - ``` - - **Outside right**: - ```python - loc=LegendLocation.CENTER_LEFT - bbox_to_anchor=(1.02, 0.5) - ``` - - **Outside left**: - ```python - loc=LegendLocation.CENTER_RIGHT - bbox_to_anchor=(-0.02, 0.5) - ``` - - **Outside top**: - ```python - loc=LegendLocation.LOWER_CENTER - bbox_to_anchor=(0.5, 1.02) - ``` - - **Outside bottom**: - ```python - loc=LegendLocation.UPPER_CENTER - bbox_to_anchor=(0.5, -0.02) - ``` - - """ - - visible: bool = True - title: str | None = None - framealpha: float = 1 - loc: LegendLocation = LegendLocation.BEST - ncol: int = 1 - fancybox: bool = True - edgecolor: str = "black" - zorder: int = 10 - bbox_to_anchor: tuple[float, float] | None = None - - def to_kwargs(self): - return { - "title": self.title, - "framealpha": self.framealpha, - "loc": self.loc, - "ncol": self.ncol, - "fancybox": self.fancybox, - } - - @property - def plotly_location(self) -> dict: - """ - Convert matplotlib legend location to Plotly legend position parameters. - - Returns: - dict: Dictionary containing Plotly legend position parameters (x, y, xanchor, yanchor) - - """ - # Default position mappings for standard locations - location_map = { - LegendLocation.BEST: { - "x": 1.02, - "y": 1, - "xanchor": "left", - "yanchor": "top", - }, - LegendLocation.UPPER_RIGHT: { - "x": 0.98, - "y": 0.98, - "xanchor": "right", - "yanchor": "top", - }, - LegendLocation.UPPER_LEFT: { - "x": 0.02, - "y": 0.98, - "xanchor": "left", - "yanchor": "top", - }, - LegendLocation.LOWER_LEFT: { - "x": 0.02, - "y": 0.02, - "xanchor": "left", - "yanchor": "bottom", - }, - LegendLocation.LOWER_RIGHT: { - "x": 0.98, - "y": 0.02, - "xanchor": "right", - "yanchor": "bottom", - }, - LegendLocation.RIGHT: { - "x": 1.02, - "y": 0.5, - "xanchor": "left", - "yanchor": "middle", - }, - LegendLocation.CENTER_LEFT: { - "x": -0.02, - "y": 0.5, - "xanchor": "right", - "yanchor": "middle", - }, - LegendLocation.CENTER_RIGHT: { - "x": 1.02, - "y": 0.5, - "xanchor": "left", - "yanchor": "middle", - }, - LegendLocation.LOWER_CENTER: { - "x": 0.5, - "y": 0.02, - "xanchor": "center", - "yanchor": "bottom", - }, - LegendLocation.UPPER_CENTER: { - "x": 0.5, - "y": 0.98, - "xanchor": "center", - "yanchor": "top", - }, - LegendLocation.CENTER: { - "x": 0.5, - "y": 0.5, - "xanchor": "center", - "yanchor": "middle", - }, - } - - # If bbox_to_anchor is provided, use it to override the position - if self.bbox_to_anchor is not None: - x, y = self.bbox_to_anchor - # Determine anchors based on location - if self.loc in [ - LegendLocation.CENTER_LEFT, - LegendLocation.UPPER_LEFT, - LegendLocation.LOWER_LEFT, - ]: - xanchor = "right" - elif self.loc in [ - LegendLocation.CENTER_RIGHT, - LegendLocation.UPPER_RIGHT, - LegendLocation.LOWER_RIGHT, - ]: - xanchor = "left" - else: - xanchor = "center" - - if self.loc in [ - LegendLocation.UPPER_RIGHT, - LegendLocation.UPPER_LEFT, - LegendLocation.UPPER_CENTER, - ]: - yanchor = "top" - elif self.loc in [ - LegendLocation.LOWER_RIGHT, - LegendLocation.LOWER_LEFT, - LegendLocation.LOWER_CENTER, - ]: - yanchor = "bottom" - else: - yanchor = "middle" - - return {"x": x, "y": y, "xanchor": xanchor, "yanchor": yanchor} - - # Use predefined mapping if no bbox_to_anchor - return location_map[self.loc] diff --git a/src/trendify_old/api/styling/marker.py b/src/trendify_old/api/styling/marker.py deleted file mode 100644 index f0c7b76..0000000 --- a/src/trendify_old/api/styling/marker.py +++ /dev/null @@ -1,155 +0,0 @@ -from __future__ import annotations - -import logging - -from matplotlib.colors import to_rgba -from pydantic import ConfigDict - -from trendify.api.base.helpers import HashableBase -from trendify.api.base.pen import Pen - -__all__ = ["Marker"] - -logger = logging.getLogger(__name__) - - -class Marker(HashableBase): - """ - Defines marker for scattering to matplotlib - - Attributes: - color (str): Color of line - size (float): Line width - alpha (float): Opacity from 0 to 1 (inclusive) - zorder (float): Prioritization - label (Union[str, None]): Legend label - symbol (str): Matplotlib symbol string - - """ - - color: str = "k" - size: float = 5 - alpha: float = 1 - zorder: float = 0 - label: str | None = None - symbol: str = "." - - @classmethod - def from_pen( - cls, - pen: Pen, - symbol: str = ".", - ): - """ - Converts Pen to marker with the option to specify a symbol - """ - return cls(symbol=symbol, **pen.model_dump().pop("linestyle")) - - model_config = ConfigDict(extra="forbid") - - def as_scatter_plot_kwargs(self): - """ - Returns: - (dict): dictionary of `kwargs` for [matplotlib scatter][matplotlib.axes.Axes.scatter] - - """ - return { - "marker": self.symbol, - "c": self.color, - "s": self.size, - "alpha": self.alpha, - "zorder": self.zorder, - "label": self.label, - "marker": self.symbol, - } - - @property - def plotly_symbol(self) -> str: - """Convert matplotlib marker symbol to plotly symbol""" - symbol_map = { - ".": "circle", - "o": "circle", - "v": "triangle-down", - "^": "triangle-up", - "<": "triangle-left", - ">": "triangle-right", - "s": "square", - "p": "pentagon", - "*": "star", - "h": "hexagon", - "+": "cross", - "x": "x", - "D": "diamond", - } - return symbol_map.get(self.symbol, "circle") - - @property - def rgba(self) -> str: - """ - Convert the pen's color to rgba string format. - - Returns: - str: Color in 'rgba(r,g,b,a)' format where r,g,b are 0-255 and a is 0-1 - - """ - # Handle different color input formats - if isinstance(self.color, tuple): - if len(self.color) == 3: # RGB tuple - r, g, b = self.color - a = self.alpha - else: # RGBA tuple - r, g, b, a = self.color - # Convert 0-1 range to 0-255 for RGB - r, g, b = int(r * 255), int(g * 255), int(b * 255) - else: # String color (name or hex) - # Use matplotlib's color converter - rgba_vals = to_rgba(self.color, self.alpha) - # Convert 0-1 range to 0-255 for RGB - r, g, b = [int(x * 255) for x in rgba_vals[:3]] - a = rgba_vals[3] - - return f"rgba({r}, {g}, {b}, {a})" - - def get_contrast_color(self, background_luminance: float = 1.0) -> str: - """ - Returns 'white' or 'black' to provide the best contrast against the pen's color, - taking into account the alpha (transparency) value of the line. - - Args: - background_luminance (float): The luminance of the background (default is 1.0 for white). - - Returns: - str: 'white' or 'black' - - """ - # Convert the pen's color to RGB (0-255 range) and get alpha - if isinstance(self.color, tuple): - if len(self.color) == 3: # RGB tuple - r, g, b = self.color - a = self.alpha - else: # RGBA tuple - r, g, b, a = self.color - r, g, b = int(r * 255), int(g * 255), int(b * 255) - else: # String color (name or hex) - rgba_vals = to_rgba(self.color, self.alpha) - r, g, b = [int(x * 255) for x in rgba_vals[:3]] - a = rgba_vals[3] - - # Calculate relative luminance of the pen's color - def luminance(channel): - channel /= 255.0 - return ( - channel / 12.92 - if channel <= 0.03928 - else ((channel + 0.055) / 1.055) ** 2.4 - ) - - color_luminance = ( - 0.2126 * luminance(r) + 0.7152 * luminance(g) + 0.0722 * luminance(b) - ) - - # Blend the color luminance with the background luminance based on alpha - blended_luminance = (1 - a) * background_luminance + a * color_luminance - - # Return white for dark blended colors, black for light blended colors - return "white" if blended_luminance < 0.5 else "black" diff --git a/src/trendify_old/cli.py b/src/trendify_old/cli.py deleted file mode 100644 index b325ebf..0000000 --- a/src/trendify_old/cli.py +++ /dev/null @@ -1,597 +0,0 @@ -""" -The `Trendify` CLI allows the code to be run from a commandline interface. -""" - -from __future__ import annotations - -# Standard - -import argparse -from dataclasses import dataclass -from glob import glob -import importlib -import importlib.util -import os -from pathlib import Path -import sys -from collections.abc import Iterable -import logging - -import matplotlib.pyplot as plt - -logger = logging.getLogger(__name__) - -# Local - -from trendify.api import api -from trendify.api.base.helpers import DATA_PRODUCTS_FNAME_DEFAULT -from trendify.streamlit import make_streamlit - -__all__ = [] - - -def _import_from_path(module_name, file_path): - """ - Imports user-provided module from path - """ - spec = importlib.util.spec_from_file_location(module_name, file_path) - module = importlib.util.module_from_spec(spec) - sys.modules[module_name] = module - spec.loader.exec_module(module) - return module - - -@dataclass -class FileManager: - """ - Determines the folder setup for `trendify` directory - """ - - output_dir: Path - - def __post_init__(self): - self.output_dir = Path(self.output_dir) - - @property - def products_dir(self) -> Path: - path = self.output_dir.joinpath("products") - path.mkdir(exist_ok=True, parents=True) - return path - - @property - def assets_dir(self) -> Path: - path = self.output_dir.joinpath("assets") - path.mkdir(exist_ok=True, parents=True) - return path - - @property - def static_assets_dir(self) -> Path: - path = self.assets_dir.joinpath("static") - path.mkdir(exist_ok=True, parents=True) - return path - - @property - def interactive_assets_dir(self) -> Path: - path = self.assets_dir.joinpath("interactive") - path.mkdir(exist_ok=True, parents=True) - return path - - @property - def grafana_dir(self) -> Path: - path = self.interactive_assets_dir.joinpath("grafana") - path.mkdir(exist_ok=True, parents=True) - return path - - -class NProcs: - """ - Determines the number of processors to use in parallel for running `trendify` commands - """ - - _NAME = "n-procs" - - @classmethod - def get_from_namespace(cls, namespace: argparse.Namespace) -> int: - return cls.process_argument(getattr(namespace, cls._NAME.replace("-", "_"))) - - @classmethod - def add_argument(cls, parser: argparse.ArgumentParser): - """Defines the argument parsing from command line""" - parser.add_argument( - "-n", - f"--{cls._NAME}", - default=1, - help=( - "Specify the number of parallel processes to use for product generation, product sorting, and asset creation." - "\nParallelization reduces wall time for computationally expensive processes." - "\nThe number of parallel processes will be limited to a maximum of 5 times the number of available cores" - "as a precaution not to crash the machine." - ), - ) - - @staticmethod - def process_argument(arg: str): - """ - Type-casts input to `int` and caps value at `5*os.cpu_count()`. - - Args: - arg (int): Desired number of processes - - Returns; - (int): Number of processes capped to `5*os.cpu_count()` - - """ - n_proc = int(arg) - - cpu_count = os.cpu_count() - if cpu_count is None: - cpu_count = 1 - - max_processes = 5 * cpu_count - if n_proc > max_processes: - logger.info( - f"User-specified ({n_proc = }) exceeds ({max_processes = })." - f"Process count will be set to ({max_processes = })" - ) - # print( - # f'User-specified ({arg = }) exceeds ({max_processes = }).' - # f'Process count will be set to ({max_processes = })' - # ) - return min(n_proc, max_processes) - - -class UserMethod: - """ - Defines arguments parsed from command line - """ - - _NAME = "product-generator" - - @classmethod - def get_from_namespace(cls, namespace: argparse.Namespace) -> api.ProductGenerator: - return cls.process_argument(getattr(namespace, cls._NAME.replace("-", "_"))) - - @classmethod - def add_argument(cls, parser: argparse.ArgumentParser): - """Defines the argument parsing from command line""" - parser.add_argument( - "-g", - f"--{cls._NAME}", - required=True, - help=( - "Sepcify method `product_generator(workdir: Path) -> List[DataProduct]` method to map over input directories." - "\n\t\tUse the following formats:" - "\n\t\tpackage.module," - "\n\t\tpackage.module:method," - "\n\t\tpackage.module:Class.method," - "\n\t\t/absolute/path/to/module.py," - "\n\t\t/absolute/path/to/module.py:method," - "\n\t\t/absolute/path/to/module.py:Class.method," - "\n\t\t./relative/path/to/module.py," - "\n\t\t./relative/path/to/module:method," - "\n\t\t./relative/path/to/module:Class.method" - ), - ) - - @staticmethod - def process_argument(arg: str) -> api.ProductGenerator: - """ - Imports python method based on user CLI input - - Args: - arg (str): Method to be imported in the form `package.module:method` or `file/path.py:method`. - `method` can be replaced be `Class.method`. File path can be either relative or absolute. - - Returns: - (Callable): User-specified method to be mapped over raw data directories. - - """ - msplit = arg.split(":") - assert 1 <= len(msplit) <= 2 - module_path = msplit[0] - method_name = msplit[1] if len(msplit) == 2 else None - - if Path(module_path).exists(): - module = _import_from_path(Path(module_path).name, Path(module_path)) - else: - module = importlib.import_module(name=module_path) - - obj = module - - function_handle = None - - assert isinstance(method_name, str) - - function_handle = obj - for arg in method_name.split("."): - function_handle = getattr(function_handle, arg) - - assert function_handle is not None - return function_handle - - -class DataProductsFileName: - """ - Defines arguments parsed from command line - """ - - _NAME = "data-products-file-name" - - @classmethod - def get_from_namespace(cls, namespace: argparse.Namespace) -> str: - return cls.process_argument(getattr(namespace, cls._NAME.replace("-", "_"))) - - @classmethod - def add_argument(cls, parser: argparse.ArgumentParser): - """Defines the argument parsing from command line""" - parser.add_argument( - "-f", - f"--{cls._NAME}", - type=str, - default=DATA_PRODUCTS_FNAME_DEFAULT, - help=( - f"Sepcify the data file name to be used (defaults to {DATA_PRODUCTS_FNAME_DEFAULT})" - ), - ) - - @staticmethod - def process_argument(arg: str) -> str: - """ - Processes input data from command line flag value - - Args: - arg (str): File name to be type-cast to string - - Returns: - (str): String (file name to be used for generated data products) - - """ - return str(arg) - - -class InputDirectories: - """ - Parses the `--input-directories` argument from CLI - """ - - _NAME = "input-directories" - - @classmethod - def get_from_namespace(cls, namespace: argparse.Namespace) -> list[Path]: - return cls.process_argument(getattr(namespace, cls._NAME.replace("-", "_"))) - - @classmethod - def add_argument(cls, parser: argparse.ArgumentParser): - parser.add_argument( - "-i", - f"--{cls._NAME}", - required=True, - help=( - "Specify raw data input directories over which the `product_generator` method will be mapped." - "\nAccepts glob expression (using **, *, regex, etc. for python glob.glob) or list of directories" - ), - nargs="+", - ) - - @staticmethod - def process_argument(arg: str) -> list[Path]: - """ - Converts CLI input to list of directories over which user-specified data product generator method will be mapped. - - Args: - arg (str): Directories or glob string from CLI - - Returns: - (List[Path]): List of directories over which to map the user-specified product generator - - """ - if isinstance(arg, str): - return [ - Path(p).parent.resolve() if Path(p).is_file() else Path(p).resolve() - for p in glob(arg, root_dir=os.getcwd(), recursive=True) - ] - else: - assert isinstance(arg, Iterable) and not isinstance(arg, str) - paths = [] - for i in arg: - for p in glob(i, root_dir=os.getcwd(), recursive=True): - paths.append( - Path(p).parent.resolve() - if Path(p).is_file() - else Path(p).resolve() - ) - return paths - - -class TrendifyDirectory: - """ - Parses the `--trendify-directory` argument from CLI - """ - - def __init__(self, short_flag: str, full_flag: str): - self._short_flag = short_flag - self._full_flag = full_flag - - def get_from_namespace(self, namespace: argparse.Namespace) -> FileManager: - return self.process_argument( - getattr(namespace, self._full_flag.replace("-", "_")) - ) - - def add_argument(self, parser: argparse.ArgumentParser): - parser.add_argument( - f"-{self._short_flag}", - f"--{self._full_flag}", - required=True, - help=( - "Sepcify output root directory to which the generated products and assets will be written." - "\nSubdirectories will be generated inside of the output root directory as needed for differnt product tags and types." - ), - ) - - def process_argument(self, arg: str) -> FileManager: - """ - Converts CLI input to list of directories over which user-specified data product generator method will be mapped. - - Args: - arg (str): Directories or glob string from CLI - - Returns: - (FileManager): List of directories over which to map the user-specified product generator - - """ - return FileManager(output_dir=Path(arg).resolve()) - - -def trendify(*pargs): - """ - Defines the command line interface script installed with python package. - - Run the help via `trendify -h`. - - Args: - *pargs (list[Any]): List of flags and arguments to pass to commandline. - Simulates running from commandline in pythong script. - - """ - # Main parser - parser = argparse.ArgumentParser( - prog="trendify", - usage="Generate visual data products and static/interactives assets from raw data", - ) - actions = parser.add_subparsers(title="Sub Commands", dest="command", metavar="") - - parser.add_argument( - "-v", - "--verbose", - action="count", - default=0, - help="Increase verbosity (-v, -vv for more detail)", - ) - - short_flag = "o" - full_flag = "output-directory" - output_dir = TrendifyDirectory(short_flag, full_flag) - - """ Useful Functions """ - """ Make """ - make = actions.add_parser( - "make", - help="Generates products and assets. Run with -h flag for info on subcommands.", - ) - make_actions = make.add_subparsers(title="Targets", dest="target", metavar="") - # Make static assets (after making products and sorting them) - make_static = make_actions.add_parser( - "static", help="Makes products, sorts them, and generates static assets" - ) - InputDirectories.add_argument(make_static) - UserMethod.add_argument(make_static) - NProcs.add_argument(make_static) - output_dir.add_argument(make_static) - DataProductsFileName.add_argument(make_static) - # Dashboard (after making products and sorting them) - make_dashboard = make_actions.add_parser( - "dashboard", - help="Generates products and prepares the Streamlit dashboard", - ) - output_dir.add_argument(make_dashboard) - # Gallery - make_gallery = make_actions.add_parser( - "gallery", help="Generates a gallery of examples" - ) - make_gallery.add_argument( - f"-{short_flag}", - f"--{full_flag}", - type=Path, - required=False, - help=( - "Sepcify output root directory to which the gallery data, products, and assets will be written. " - "Defaults to current working directory" - ), - default="./gallery/", - ) - - """ Serve """ - serve = actions.add_parser( - "serve", - help="Generates products and serves them to dashboard. Run with -h flag for info on subcommands.", - ) - serve_actions = serve.add_subparsers(title="Targets", dest="target", metavar="") - # Plotly - # Serve plotly dashboard (after making products) - serve_plotly = serve_actions.add_parser( - "plotly", help="Makes products and serves them to interactive dashboards" - ) - InputDirectories.add_argument(serve_plotly) - UserMethod.add_argument(serve_plotly) - NProcs.add_argument(serve_plotly) - DataProductsFileName.add_argument(serve_plotly) - serve_plotly.add_argument( - "--title", type=str, help="Dashboard title", default="Trendify Autodash" - ) - serve_plotly.add_argument( - "--host", type=str, help="What addres to serve the data to", default="0.0.0.0" - ) - serve_plotly.add_argument( - "--port", type=int, help="What port to serve the data on", default=8000 - ) - - """ 1-1 API Wrappers """ - """ Products """ - ### Products Make ### - products_make = actions.add_parser("products-make", help="Makes products or assets") - InputDirectories.add_argument(products_make) - UserMethod.add_argument(products_make) - NProcs.add_argument(products_make) - DataProductsFileName.add_argument(products_make) - ### Products Sort ### - products_sort = actions.add_parser( - "products-sort", help="Sorts data products by tags" - ) - InputDirectories.add_argument(products_sort) - output_dir.add_argument(products_sort) - NProcs.add_argument(products_sort) - DataProductsFileName.add_argument(products_sort) - ### Products Serve ### - products_serve = actions.add_parser( - "products-serve", help="Serves data products to URL endpoint at 127.0.0.1" - ) - InputDirectories.add_argument(products_serve) - DataProductsFileName.add_argument(products_serve) - products_serve.add_argument( - "--title", type=str, help="Dashboard title", default="Trendify Autodash" - ) - products_serve.add_argument( - "--host", type=str, help="What addres to serve the data to", default="127.0.0.1" - ) - products_serve.add_argument( - "--port", type=int, help="What port to serve the data on", default=8000 - ) - - """ Assets """ - ### Assets Make Static - assets_make_static = actions.add_parser( - "assets-make-static", help="Makes static assets" - ) - assets_make_static.add_argument("trendify_output_directory") - NProcs.add_argument(assets_make_static) - - # Test - if pargs: - args = parser.parse_args(*pargs) - else: - args = parser.parse_args() - - # Map verbosity to logging level - level = logging.INFO # default - if args.verbose == 1: - level = logging.DEBUG - elif args.verbose >= 2: - level = logging.DEBUG - - logging.basicConfig( - level=level, - format="%(asctime)s [%(levelname)s] %(name)s: %(message)s", - datefmt="%Y-%m-%d %H:%M:%S", - handlers=[ - logging.StreamHandler(sys.stdout), - logging.FileHandler("trendify.log", mode="a"), - ], - ) - plt.set_loglevel("WARNING") - - logger = logging.getLogger(__name__) - - logger.info(f"Running `trendify` with {args = }") - - match args.command: - case "products-make": - api.make_products( - product_generator=UserMethod.get_from_namespace(args), - data_dirs=InputDirectories.get_from_namespace(args), - n_procs=NProcs.get_from_namespace(args), - data_products_fname=DataProductsFileName.get_from_namespace(args), - ) - case "products-sort": - api.sort_products( - data_dirs=InputDirectories.get_from_namespace(args), - output_dir=output_dir.get_from_namespace(args).products_dir, - n_procs=NProcs.get_from_namespace(args), - data_products_fname=DataProductsFileName.get_from_namespace(args), - ) - case "products-serve": - api.serve_products_to_plotly_dashboard( - *tuple(InputDirectories.get_from_namespace(args)), - title=args.title, - host=args.host, - port=args.port, - data_products_filename=DataProductsFileName.get_from_namespace(args), - ) - case "assets-make-static": - api.make_tables_and_figures( - products_dir=FileManager(args.trendify_output_directory).products_dir, - output_dir=FileManager( - args.trendify_output_directory - ).static_assets_dir, - n_procs=NProcs.get_from_namespace(args), - ) - case "make": - match args.target: - case "gallery": - from trendify.gallery import make_gallery - - make_gallery(Path(getattr(args, full_flag.replace("-", "_"), "."))) - case "static": - um = UserMethod.get_from_namespace(args) - ip = InputDirectories.get_from_namespace(args) - np = NProcs.get_from_namespace(args) - td = output_dir.get_from_namespace(args) - fn = DataProductsFileName.get_from_namespace(args) - api.make_products( - product_generator=um, - data_dirs=ip, - n_procs=np, - data_products_fname=fn, - ) - api.sort_products( - data_dirs=ip, - output_dir=td.products_dir, - n_procs=np, - data_products_fname=fn, - ) - api.make_tables_and_figures( - products_dir=td.products_dir, - output_dir=td.static_assets_dir, - n_procs=np, - ) - case "dashboard": - # Get the output directory from the CLI arguments - td = output_dir.get_from_namespace(args) - - # Call the make_streamlit function with the output directory - make_streamlit(trendify_dir=td.output_dir) - - logger.info(f"Streamlit dashboard prepared in {td.output_dir}") - case _: - raise NotImplementedError() - case "serve": - match args.target: - case "plotly": - um = UserMethod.get_from_namespace(args) - ip = InputDirectories.get_from_namespace(args) - np = NProcs.get_from_namespace(args) - # td = output_dir.get_from_namespace(args) - fn = DataProductsFileName.get_from_namespace(args) - api.make_products( - product_generator=um, - data_dirs=ip, - n_procs=np, - data_products_fname=fn, - ) - api.serve_products_to_plotly_dashboard( - *tuple(ip), - title=args.title, - host=args.host, - port=args.port, - ) - case _: - raise NotImplementedError() diff --git a/src/trendify_old/gallery.py b/src/trendify_old/gallery.py deleted file mode 100644 index e66b6f7..0000000 --- a/src/trendify_old/gallery.py +++ /dev/null @@ -1,327 +0,0 @@ -""" -Example script demonstrating trendify data products. -Run with: python example_trendify_static.py -Then run: trendify make static example_output example_results -""" - -import platform -import subprocess -import sys -import numpy as np -from pathlib import Path -from trendify import ( - Trace2D, - Point2D, - TableEntry, - HistogramEntry, - AxLine, - Pen, - Marker, - Format2D, - LineOrientation, - HistogramStyle, - DataProductCollection, -) - - -def generate_sine_wave_example(): - # Create sine wave with noise - x = np.linspace(0, 4 * np.pi, 100) - y = np.sin(x) + np.random.normal(0, 0.1, len(x)) - - # Create main trace - trace = Trace2D.from_xy( - tags=("waves", "sine"), - x=x, - y=y, - pen=Pen(color="blue", label="Noisy Sine", size=2), - format2d=Format2D( - title_fig="Sine Wave with Reference Lines", - title_ax="Sine Function with Noise", - label_x="X (radians)", - label_y="Amplitude", - lim_x_min=0, - lim_x_max=4 * np.pi, - lim_y_min=-1.5, - lim_y_max=1.5, - ), - ) - - # Add reference lines - hline_upper = AxLine( - tags=("waves", "sine"), - value=1.0, - orientation=LineOrientation.HORIZONTAL, - pen=Pen(color="red", label="Upper Bound", size=1.5), - ) - - hline_lower = AxLine( - tags=("waves", "sine"), - value=-1.0, - orientation=LineOrientation.HORIZONTAL, - pen=Pen(color="red", label="Lower Bound", size=1.5), - ) - - # Add some peak points - peaks = [] - for i, (x_val, y_val) in enumerate(zip(x[1:-1], y[1:-1])): - if y_val > y[i] and y_val > y[i + 2]: # Simple peak detection - peaks.append( - Point2D( - tags=("waves", "sine"), - x=x_val, - y=y_val, - marker=Marker(color="green", symbol="o", size=100, label="Peak"), - ) - ) - - return [trace, hline_upper, hline_lower] + peaks - - -def generate_scatter_plot_example(): - # Create two clusters of points - n_points = 50 - - # Cluster 1 - x1 = np.random.normal(2, 0.5, n_points) - y1 = np.random.normal(2, 0.5, n_points) - - # Cluster 2 - x2 = np.random.normal(4, 0.5, n_points) - y2 = np.random.normal(4, 0.5, n_points) - - format2d = Format2D( - title_fig="Cluster Analysis", - title_ax="Two Clusters with Centroids", - label_x="X Position", - label_y="Y Position", - lim_x_min=0, - lim_x_max=6, - lim_y_min=0, - lim_y_max=6, - ) - - # Create points for each cluster - cluster1 = [ - Point2D( - tags=("clusters", "analysis"), - x=x, - y=y, - marker=Marker(color="blue", symbol="o", size=50, label="Cluster 1"), - format2d=format2d, - ) - for x, y in zip(x1, y1) - ] - - cluster2 = [ - Point2D( - tags=("clusters", "analysis"), - x=x, - y=y, - marker=Marker(color="red", symbol="o", size=50, label="Cluster 2"), - format2d=format2d, - ) - for x, y in zip(x2, y2) - ] - - # Add centroids - centroids = [ - Point2D( - tags=("clusters", "analysis"), - x=np.mean(x1), - y=np.mean(y1), - marker=Marker(color="darkblue", symbol="*", size=200, label="Centroid 1"), - format2d=format2d, - ), - Point2D( - tags=("clusters", "analysis"), - x=np.mean(x2), - y=np.mean(y2), - marker=Marker(color="darkred", symbol="*", size=200, label="Centroid 2"), - format2d=format2d, - ), - ] - - return cluster1 + cluster2 + centroids - - -def generate_histogram_example(): - # Generate three different distributions - n_samples = 1000 - - # Normal distribution - normal_data = np.random.normal(0, 1, n_samples) - normal_entries = [ - HistogramEntry( - tags=("distributions", "comparison"), - value=v, - style=HistogramStyle(color="blue", label="Normal", alpha_face=0.3, bins=30), - format2d=Format2D( - title_fig="Distribution Comparison", - title_ax="Multiple Distributions", - label_x="Value", - label_y="Count", - ), - ) - for v in normal_data - ] - - # Uniform distribution - uniform_data = np.random.uniform(-2, 2, n_samples) - uniform_entries = [ - HistogramEntry( - tags=("distributions", "comparison"), - value=v, - style=HistogramStyle(color="red", label="Uniform", alpha_face=0.3, bins=30), - ) - for v in uniform_data - ] - - # Exponential distribution - exp_data = np.random.exponential(1, n_samples) - exp_entries = [ - HistogramEntry( - tags=("distributions", "comparison"), - value=v, - style=HistogramStyle( - color="green", label="Exponential", alpha_face=0.3, bins=30 - ), - ) - for v in exp_data - ] - - return normal_entries + uniform_entries + exp_entries - - -def generate_table_example(): - # Create a comparison table of distribution statistics - distributions = ["Normal", "Uniform", "Exponential"] - metrics = ["Mean", "Std Dev", "Skewness"] - - # Generate some example statistics - stats = { - "Normal": [0.01, 1.02, 0.05], - "Uniform": [0.0, 1.15, 0.0], - "Exponential": [1.0, 1.0, 2.0], - } - - table_entries = [] - for dist in distributions: - for i, metric in enumerate(metrics): - table_entries.append( - TableEntry( - tags=("distributions", "statistics"), - row=dist, - col=metric, - value=f"{stats[dist][i]:.2f}", - unit=None, - ) - ) - - return table_entries - - -def run_trendify_commands(input_dir: str | Path, output_dir: str | Path): - """ - Runs trendify commands with proper OS handling - - Args: - input_dir (str | Path): Input directory containing data products - output_dir (str | Path): Output directory for sorted products and assets - - """ - # Convert to Path objects - input_dir = Path(input_dir).resolve() - output_dir = Path(output_dir).resolve() - - # Determine if we need shell=True based on OS - use_shell = platform.system() == "Windows" - - commands = [ - [ - "trendify", - "products-sort", - "-i", - str(input_dir), - "-o", - str(output_dir), - "-n", - "1", - ], - ["trendify", "assets-make-static", str(output_dir), "-n", "1"], - ] - - for cmd in commands: - print(f"\nExecuting command: {' '.join(cmd)}") - try: - # Run command and capture output - result = subprocess.run( - cmd, - shell=use_shell, - check=True, - text=True, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - print("Command output:") - print(result.stdout) - - # Print any stderr output if it exists - if result.stderr: - print("Warnings/Errors:") - print(result.stderr) - - except subprocess.CalledProcessError as e: - print(f"Error executing command: {' '.join(cmd)}") - print(f"Exit code: {e.returncode}") - print("Error output:") - print(e.stderr) - sys.exit(1) - except Exception as e: - print(f"Unexpected error executing command: {' '.join(cmd)}") - print(f"Error: {e!s}") - sys.exit(1) - - -def make_gallery(output_dir: Path): - """ - Generates the gallery - """ - # Create output directory - output_dir.mkdir(exist_ok=True, parents=True) - data_dir = output_dir.joinpath("data") - data_dir.mkdir(exist_ok=True, parents=True) - trendify_dir = output_dir.joinpath("trendify") - - try: - from importlib.resources import files - from shutil import copy - - copy( - str(files("trendify").joinpath("gallery.py").resolve()), - str(output_dir.joinpath("gallery.py")), - ) - except Exception as e: - print(e) - - # Generate all examples - products = ( - generate_sine_wave_example() - + generate_scatter_plot_example() - + generate_histogram_example() - + generate_table_example() - ) - - # Save to JSON file - collection = DataProductCollection(elements=products) - data_dir.joinpath("data_products.json").write_text(collection.model_dump_json()) - - # Run trendify commands - run_trendify_commands( - input_dir=data_dir, - output_dir=trendify_dir, - ) - - -if __name__ == "__main__": - make_gallery(Path("gallery")) diff --git a/src/trendify_old/local_server.py b/src/trendify_old/local_server.py deleted file mode 100644 index 133d85d..0000000 --- a/src/trendify_old/local_server.py +++ /dev/null @@ -1,169 +0,0 @@ -""" -Defines Flask server for providing data products on local system -""" - -# Standard impots -from dataclasses import dataclass -from pathlib import Path - -# External imports -from flask import Flask -from waitress import serve - -# Local imports -from trendify.api import api - - -__all__ = ["TrendifyProductServerLocal"] - - -def _to_product_type(type_name: str) -> type: - """ - Converts type name str to trendify type for searching data collection - - Args: - type_name (str): trendify data product type name - - Returns: - (Type): Class type corresponding to given `type_name` - - """ - # breakpoint() - product_type = api.ProductType[type_name] - return getattr(api, product_type.name, None) - - -def _status_check(): - return "Server is working" - - -@dataclass -class ProductGetter: - """ - Attributes: - trendy_dir (Path): Path for trendify - - """ - - trendy_dir: Path - - def _get_data_products( - self, - tag: str, - product_type_name: str = "DataProduct", - ): - """ - Returns data products corresponding to tag and product_type_name - - Args: - tag (str): Product tag to for which to return products. Use the format `a.b.c.d` for a multi-component tag - product_type_name (str): Name of trendify product class. - - Returns: - (Type): Type of product to return - - Example: "URL" - Serve on port `8000` and the URL `0.0.0.0:8000/tag/Trace2D` - where `tag` can be in the format `a.b.c...` for multiple components. - - Example: "Grafana parsing command" - parse-json - | project "elements" - | extend "label"="pen.label" - | mv-expand "points" - | extend "x"="points.x", "y"="points.y" - | project "label", "x", "y" - | pivot sum("y"), "x", "label" - | project "label", "x", "y" - - """ - # Interpret Product Type - product_type = _to_product_type(type_name=str(product_type_name)) - if product_type is None: - return f"{product_type_name = } is invalid. Should be one of {[type_name.value for type_name in api.ProductType]}." - - # Interpret Tag - tag_path_components = str(tag).split(".") if "." in str(tag) else [tag] - formatted_tag = ( - tag_path_components[0] - if len(tag_path_components) == 1 - else tuple(tag_path_components) - ) - collection_dir = self.trendy_dir.joinpath(*tuple(tag_path_components)).resolve() - - # Load product collection - product_collection: api.DataProductCollection = ( - api.DataProductCollection.collect_from_all_jsons(collection_dir) - ) - if product_collection is None: - return f"Did not find data product jsons in {collection_dir}" - - # Filter product collection - filtered_data = product_collection.get_products( - tag=formatted_tag, - object_type=product_type, - ) - - # Return filtered products as JSON data - return filtered_data.model_dump_json() - - -@dataclass -class TrendifyProductServerLocal: - app: Flask - product_getter: ProductGetter - - @classmethod - def get_new(cls, products_dir: Path, name: str): - app = Flask(name) - product_getter = ProductGetter(trendy_dir=products_dir) - - app.add_url_rule("/", "/", _status_check) - - app.add_url_rule( - "/", "/get_data_products", product_getter._get_data_products - ) - app.add_url_rule( - "//", "/get_data_products", product_getter._get_data_products - ) - app.add_url_rule( - "//", - "/get_data_products", - product_getter._get_data_products, - ) - app.add_url_rule( - "///", - "/get_data_products", - product_getter._get_data_products, - ) - - return cls( - app=app, - product_getter=product_getter, - ) - - def run(self, host: str = "0.0.0.0", port: int = 8000): - # self.product_getter.trendy_dir.write_text( - # f''' - # [program:myapp] - # command=waitress-serve --port=8080 myapp:app - # directory=/path/to/your/app - # autostart=true - # autorestart=true - # ''' - # ) - print(f"Starting Server on http://{host}:{port}") - serve(self.app, host=host, port=port) - - -def main(host="0.0.0.0", port=8000): - trendy_dir = Path( - "/Users/talbotknighton/Documents/trendify/workdir/trendify_output/products" - ) - TrendifyProductServerLocal.get_new(products_dir=trendy_dir, name=__name__).run( - host=host, port=port - ) - - -if __name__ == "__main__": - main(host="0.0.0.0", port=8000) diff --git a/src/trendify_old/plotly_dashboard.py b/src/trendify_old/plotly_dashboard.py deleted file mode 100644 index c30f89a..0000000 --- a/src/trendify_old/plotly_dashboard.py +++ /dev/null @@ -1,1000 +0,0 @@ -""" -Module for generating interactive Plotly dashboards from data products. -""" - -from typing import Any, cast - -import dash -from dash import dcc, html, dash_table -from dash.dependencies import Input, Output, State -import plotly.graph_objects as go -import pandas as pd -import numpy as np -from collections import defaultdict - -# Import from trendify -from trendify import ( - DataProductCollection, - Point2D, - Trace2D, - TableEntry, - HistogramEntry, - AxLine, - LineOrientation, - Format2D, -) - -# Constants -COLORS = [ - "#1f77b4", - "#ff7f0e", - "#2ca02c", - "#d62728", - "#9467bd", - "#8c564b", - "#e377c2", - "#7f7f7f", - "#bcbd22", - "#17becf", - "#aec7e8", - "#ffbb78", - "#98df8a", - "#ff9896", - "#c5b0d5", - "#c49c94", - "#f7b6d2", - "#c7c7c7", - "#dbdb8d", - "#9edae5", -] - - -class PlotlyDashboardGenerator: - """ - Class for generating interactive Plotly dashboards from data products. - - This class provides a way to create interactive dashboards from trendify data products, - similar to how the static matplotlib plots are generated, but with interactive features. - """ - - def __init__(self, debug=False): - """ - Initialize the dashboard generator. - - Args: - debug (bool): Whether to enable debug logging - - """ - self.debug = debug - self.app = dash.Dash(__name__, suppress_callback_exceptions=True) - self.tag_data = {} - self.color_maps = {} - - def debug_log(self, message: str) -> None: - """Log debug messages if debug mode is enabled.""" - if self.debug: - print(f"[PY] {message}") - - def process_collection( - self, collection: DataProductCollection, title: str = "Trendify Dashboard" - ) -> dash.Dash: - """ - Process collection of data products and generate a Plotly dashboard. - - Args: - collection (DataProductCollection): Collection of data products to visualize - title (str): Title for the dashboard - - Returns: - dash.Dash: The configured Dash application - - """ - self.debug_log( - f"Processing collection with {len(collection.elements or [])} elements" - ) - - # Get all tags in the collection - all_tags = collection.get_tags() - self.debug_log(f"Found {len(all_tags)} tags") - - # Process each tag's data products - tab_contents = [] - for tag in all_tags: - tag_str = str(tag) - self.tag_data[tag_str] = { - "tag": tag, - "traces": collection.get_products( - tag=tag, object_type=Trace2D - ).elements, - "points": collection.get_products( - tag=tag, object_type=Point2D - ).elements, - "axlines": collection.get_products( - tag=tag, object_type=AxLine - ).elements, - "tables": collection.get_products( - tag=tag, object_type=TableEntry - ).elements, - "histograms": collection.get_products( - tag=tag, object_type=HistogramEntry - ).elements, - } - - # Create tab content for this tag - tab_content = self._create_tab_content(tag_str) - if tab_content: - tab_contents.append( - {"label": tag_str, "value": tag_str, "content": tab_content} - ) - - # Create the app layout - self.app.layout = self._create_app_layout(title, tab_contents) - - # Register callbacks - self._register_callbacks() - - return self.app - - def _create_tab_content(self, tag_str: str) -> list[html.Div]: - """Create content for a single tab.""" - data = self.tag_data[tag_str] - content = [] - - # Create XY Plot section if traces or points exist - if data["traces"] or data["points"] or data["axlines"]: - content.append(self._create_xy_plot_section(tag_str)) - - # Create Table section if table entries exist - if data["tables"]: - content.append(self._create_table_section(tag_str)) - - # Create Histogram section if histogram entries exist - if data["histograms"]: - content.append(self._create_histogram_section(tag_str)) - - return content - - def _create_xy_plot_section(self, tag_str: str) -> html.Div: - """Create the XY plot section.""" - data = self.tag_data[tag_str] - - # Initialize color map for this tag if needed - if tag_str not in self.color_maps: - self.color_maps[tag_str] = {} - color_idx = 0 - - # Assign colors to traces - for trace in data["traces"]: - series_name = trace.pen.label or f"Trace {color_idx}" - self.color_maps[tag_str][series_name] = COLORS[color_idx % len(COLORS)] - color_idx += 1 - - # Assign colors to points (grouped by marker.label) - point_labels = set() - for point in data["points"]: - if point.marker and point.marker.label: - point_labels.add(point.marker.label) - - for label in point_labels: - self.color_maps[tag_str][label] = COLORS[color_idx % len(COLORS)] - color_idx += 1 - - # Assign colors to axlines - for axline in data["axlines"]: - series_name = axline.pen.label or f"Line {color_idx}" - self.color_maps[tag_str][series_name] = COLORS[color_idx % len(COLORS)] - color_idx += 1 - - # Get format from first trace or point with format - format2d = None - for item in data["traces"] + data["points"]: - if item.format2d: - format2d = item.format2d - break - - return html.Div( - [ - html.H2("XY Plot"), - html.Div( - [ - html.Div( - [ - dcc.Checklist( - id=f"xy-options-{tag_str}", - options=[ - { - "label": " Show legend", - "value": "show_legend", - }, - {"label": " Show grid", "value": "show_grid"}, - {"label": " Auto range", "value": "auto_range"}, - ], - value=["show_legend", "show_grid", "auto_range"], - ) - ], - style={ - "width": "20%", - "display": "inline-block", - "vertical-align": "top", - }, - ), - html.Div( - [ - dcc.Graph( - id=f"xy-plot-{tag_str}", - style={"height": "600px"}, - figure=self._create_xy_figure(tag_str, format2d), - ) - ], - style={"width": "80%", "display": "inline-block"}, - ), - ] - ), - ] - ) - - def _create_table_section(self, tag_str: str) -> html.Div: - """Create the table section.""" - data = self.tag_data[tag_str] - - # Create melted dataframe from table entries - melted_df = pd.DataFrame([t.get_entry_dict() for t in data["tables"]]) - - # Try to create pivot table - pivot_df = None - if len(melted_df) > 0: - try: - pivot_df = TableEntry.pivot_table(melted_df) - except Exception as e: - self.debug_log(f"Failed to create pivot table: {e}") - - return html.Div( - [ - html.H2("Tables"), - html.Div( - [ - dcc.Tabs( - [ - dcc.Tab( - label="Melted Table", - children=[ - dash_table.DataTable( - id=f"melted-table-{tag_str}", - columns=[ - {"name": col, "id": col} - for col in melted_df.columns - ], - data=melted_df.to_dict("records"), - filter_action="native", - sort_action="native", - sort_mode="multi", - page_size=15, - style_table={"overflowX": "auto"}, - style_cell={ - "minWidth": "100px", - "maxWidth": "300px", - "whiteSpace": "normal", - "textAlign": "left", - }, - style_header={ - "backgroundColor": "lightgrey", - "fontWeight": "bold", - }, - ) - ], - ), - dcc.Tab( - label="Pivot Table", - disabled=pivot_df is None, - children=[ - ( - dash_table.DataTable( - id=f"pivot-table-{tag_str}", - columns=cast( - "list[dash_table.DataTable.Columns]", - [{"name": "row", "id": "row"}] - + [ - { - "name": str(col), - "id": str(col), - } - for col in ( - pivot_df.columns - if pivot_df is not None - else [] - ) - ], - ), - data=( - pivot_df.reset_index().to_dict( - "records" - ) - if pivot_df is not None - else [] - ), - filter_action="native", - sort_action="native", - sort_mode="multi", - page_size=15, - style_table={"overflowX": "auto"}, - style_cell={ - "minWidth": "100px", - "maxWidth": "300px", - "whiteSpace": "normal", - "textAlign": "left", - }, - style_header={ - "backgroundColor": "lightgrey", - "fontWeight": "bold", - }, - ) - if pivot_df is not None - else html.Div( - "Unable to create pivot table" - ) - ) - ], - ), - ] - ), - ] - ), - ] - ) - - def _create_histogram_section(self, tag_str: str) -> html.Div: - """Create the histogram section.""" - data = self.tag_data[tag_str] - - # Group histogram entries by style.label - histogram_groups = defaultdict(list) - for hist in data["histograms"]: - label = hist.style.label if hist.style and hist.style.label else "Default" - histogram_groups[label].append(hist) - - # Initialize color map for histograms if needed - if f"{tag_str}-hist" not in self.color_maps: - self.color_maps[f"{tag_str}-hist"] = {} - for i, label in enumerate(histogram_groups.keys()): - self.color_maps[f"{tag_str}-hist"][label] = COLORS[i % len(COLORS)] - - return html.Div( - [ - html.H2("Histogram"), - html.Div( - [ - html.Div( - [ - html.Label("Number of Bins:"), - dcc.Slider( - id=f"hist-bins-{tag_str}", - min=5, - max=100, - step=5, - value=20, - marks={i: str(i) for i in range(5, 101, 10)}, - ), - html.Br(), - dcc.Checklist( - id=f"hist-options-{tag_str}", - options=[ - {"label": " Show KDE", "value": "show_kde"}, - {"label": " Normalize", "value": "normalize"}, - { - "label": " Show legend", - "value": "show_legend", - }, - ], - value=["show_kde", "show_legend"], - ), - ], - style={ - "width": "20%", - "display": "inline-block", - "vertical-align": "top", - }, - ), - html.Div( - [ - dcc.Graph( - id=f"histogram-{tag_str}", - style={"height": "600px"}, - figure=self._create_histogram_figure( - tag_str, - histogram_groups, - 20, - ["show_kde", "show_legend"], - ), - ) - ], - style={"width": "80%", "display": "inline-block"}, - ), - ] - ), - ] - ) - - def _create_xy_figure( - self, tag_str: str, format2d: Format2D | None = None - ) -> go.Figure: - """Create the XY plot figure.""" - data = self.tag_data[tag_str] - fig = go.Figure() - - # Keep track of added legend entries to avoid duplicates - added_legend_entries = set() - - # Add traces - for trace in data["traces"]: - label = trace.pen.label or "Trace" - color = self.color_maps[tag_str].get(label, COLORS[0]) - - # Create a unique legend entry key - legend_key = f"{label}:{color}:line" - - # Check if this legend entry has already been added - showlegend = legend_key not in added_legend_entries - if showlegend: - added_legend_entries.add(legend_key) - - fig.add_trace( - go.Scatter( - x=trace.x, - y=trace.y, - mode="lines", - name=label, - line=dict(color=color, width=trace.pen.size), - opacity=trace.pen.alpha, - showlegend=showlegend, - ) - ) - - # Group points by marker label - point_groups = defaultdict(list) - for point in data["points"]: - label = ( - point.marker.label if point.marker and point.marker.label else "Points" - ) - point_groups[label].append(point) - - # Add point groups - for label, points in point_groups.items(): - color = self.color_maps[tag_str].get(label, COLORS[0]) - - x_values = [p.x for p in points] - y_values = [p.y for p in points] - - # Get marker properties from the first point - marker_props = points[0].marker - - # Create a unique legend entry key - legend_key = f"{label}:{color}:point" - - # Check if this legend entry has already been added - showlegend = legend_key not in added_legend_entries - if showlegend: - added_legend_entries.add(legend_key) - - fig.add_trace( - go.Scatter( - x=x_values, - y=y_values, - mode="markers", - name=label, - marker=dict( - color=color, - size=marker_props.size / 10 if marker_props else 8, - opacity=marker_props.alpha if marker_props else 1, - symbol="circle", - ), - showlegend=showlegend, - ) - ) - - # Group axlines by label to minimize legend entries - axline_groups = defaultdict(list) - for axline in data["axlines"]: - label = axline.pen.label or "Line" - axline_groups[label].append(axline) - - # Add shapes for axlines - for label, axlines in axline_groups.items(): - color = self.color_maps[tag_str].get(label, COLORS[0]) - - # Get pen properties from the first axline - pen = axlines[0].pen - - # First, add all the shapes (which don't show in legend) - for axline in axlines: - if axline.orientation == LineOrientation.HORIZONTAL: - fig.add_shape( - type="line", - x0=0, - y0=axline.value, - x1=1, - y1=axline.value, - xref="paper", - line=dict( - color=color, - width=pen.size, - dash="solid", - ), - opacity=pen.alpha, - ) - else: # VERTICAL - fig.add_shape( - type="line", - x0=axline.value, - y0=0, - x1=axline.value, - y1=1, - yref="paper", - line=dict( - color=color, - width=pen.size, - dash="solid", - ), - opacity=pen.alpha, - ) - - # Create a unique legend entry key - legend_key = f"{label}:{color}:axline" - - # Check if we need to add a legend entry for this axline group - if legend_key not in added_legend_entries: - added_legend_entries.add(legend_key) - - # Add an invisible trace for the legend (only once per unique label/color) - fig.add_trace( - go.Scatter( - x=[None], - y=[None], - mode="lines", - name=label, - line=dict(color=color, width=pen.size), - opacity=pen.alpha, - showlegend=True, - ) - ) - - # Update layout with format information - layout_args: dict[str, Any] = dict( - title=( - format2d.title_ax - if format2d and format2d.title_ax - else str(data["tag"]) - ), - xaxis=dict( - title=format2d.label_x if format2d and format2d.label_x else None, - showgrid=True, - gridwidth=1, - gridcolor="LightGray", - ), - yaxis=dict( - title=format2d.label_y if format2d and format2d.label_y else None, - showgrid=True, - gridwidth=1, - gridcolor="LightGray", - ), - plot_bgcolor="white", - legend_title=( - format2d.title_legend if format2d and format2d.title_legend else None - ), - showlegend=True, - margin=dict(t=50, b=50, l=50, r=50), - ) - - # Set axis limits if provided in format - if format2d: - if format2d.lim_x_min is not None: - layout_args["xaxis"]["range"] = [ - format2d.lim_x_min, - layout_args["xaxis"].get("range", [None, None])[1], - ] - if format2d.lim_x_max is not None: - layout_args["xaxis"]["range"] = [ - layout_args["xaxis"].get("range", [None, None])[0], - format2d.lim_x_max, - ] - if format2d.lim_y_min is not None: - layout_args["yaxis"]["range"] = [ - format2d.lim_y_min, - layout_args["yaxis"].get("range", [None, None])[1], - ] - if format2d.lim_y_max is not None: - layout_args["yaxis"]["range"] = [ - layout_args["yaxis"].get("range", [None, None])[0], - format2d.lim_y_max, - ] - - fig.update_layout(**layout_args) - return fig - - def _create_histogram_figure( - self, - tag_str: str, - histogram_groups: dict[str, list[HistogramEntry]], - num_bins: int, - options: list[str], - ) -> go.Figure: - """Create the histogram figure.""" - fig = go.Figure() - added_legend_entries = set() - - show_kde = "show_kde" in options - normalize = "normalize" in options - - for label, entries in histogram_groups.items(): - values = [entry.value for entry in entries] - color = self.color_maps.get(f"{tag_str}-hist", {}).get(label, COLORS[0]) - - # Create unique legend key for histogram - hist_legend_key = f"{label}:{color}:histogram" - showlegend = hist_legend_key not in added_legend_entries - - if showlegend: - added_legend_entries.add(hist_legend_key) - - # Add histogram - histnorm = "probability" if normalize else None - fig.add_trace( - go.Histogram( - x=values, - nbinsx=num_bins, - name=label, - histnorm=histnorm, - marker_color=color, - opacity=0.7, - showlegend=showlegend, - ) - ) - - # Add KDE if requested and if scipy is available - if show_kde and len(values) > 1: - try: - from scipy import stats as scipy_stats - - # Create unique legend key for KDE - kde_legend_key = f"{label}:{color}:kde" - kde_showlegend = kde_legend_key not in added_legend_entries - - if kde_showlegend: - added_legend_entries.add(kde_legend_key) - - # Calculate KDE - kde = scipy_stats.gaussian_kde(values) - x_range = np.linspace(min(values), max(values), 200) - y_range = kde(x_range) - - # Scale KDE to match histogram height if not normalized - if not normalize: - hist, edges = np.histogram(values, bins=num_bins) - max_hist_height = np.max(hist) - max_kde_height = np.max(y_range) - scale_factor = ( - max_hist_height / max_kde_height - if max_kde_height > 0 - else 1 - ) - y_range = y_range * scale_factor - - fig.add_trace( - go.Scatter( - x=x_range, - y=y_range, - mode="lines", - name=f"KDE of {label}", - line=dict(color=color, width=2), - showlegend=kde_showlegend, - ) - ) - except ImportError: - self.debug_log("SciPy not available for KDE calculation") - except Exception as e: - self.debug_log(f"Error computing KDE: {e}") - - # Get format from first histogram entry with format - format2d = None - for entries in histogram_groups.values(): - for entry in entries: - if entry.format2d: - format2d = entry.format2d - break - if format2d: - break - - # Update layout - layout_args: dict[str, Any] = dict( - title=( - format2d.title_ax - if format2d and format2d.title_ax - else f"Histogram - {tag_str}" - ), - barmode="overlay", - xaxis=dict( - title=format2d.label_x if format2d and format2d.label_x else "Value", - showgrid=True, - gridwidth=1, - gridcolor="LightGray", - ), - yaxis=dict( - title="Probability" if normalize else "Frequency", - showgrid=True, - gridwidth=1, - gridcolor="LightGray", - ), - plot_bgcolor="white", - paper_bgcolor="white", - legend_title=( - format2d.title_legend if format2d and format2d.title_legend else None - ), - showlegend="show_legend" in options, - margin=dict(t=50, b=50, l=50, r=50), - ) - - # Set axis limits if provided in format - if format2d: - if format2d.lim_x_min is not None: - layout_args["xaxis"]["range"] = [ - format2d.lim_x_min, - layout_args["xaxis"].get("range", [None, None])[1], - ] - if format2d.lim_x_max is not None: - layout_args["xaxis"]["range"] = [ - layout_args["xaxis"].get("range", [None, None])[0], - format2d.lim_x_max, - ] - if format2d.lim_y_min is not None: - layout_args["yaxis"]["range"] = [ - format2d.lim_y_min, - layout_args["yaxis"].get("range", [None, None])[1], - ] - if format2d.lim_y_max is not None: - layout_args["yaxis"]["range"] = [ - layout_args["yaxis"].get("range", [None, None])[0], - format2d.lim_y_max, - ] - - fig.update_layout(**layout_args) - return fig - - def _create_app_layout(self, title: str, tab_contents: list[dict]) -> html.Div: - """Create the main application layout with category-based tag selection.""" - if not tab_contents: - return html.Div( - [html.H1(title), html.Div("No data products found to visualize.")] - ) - - # Extract categories from tag names - # Assuming tag structure might be like 'category/tag_name' or just 'tag_name' - categories = set() - tag_categories = {} - - for tab in tab_contents: - tag_name = tab["label"] - parts = tag_name.split("/") - - if len(parts) > 1: - # Tag has a category prefix - category = parts[0] - tag_display = "/".join( - parts[1:] - ) # Use remaining parts as the display name - else: - # Tag has no category, put it in "General" - category = "General" - tag_display = tag_name - - categories.add(category) - if category not in tag_categories: - tag_categories[category] = [] - - tag_categories[category].append( - {"label": tag_display, "value": tab["value"], "content": tab["content"]} - ) - - # Sort categories - sorted_categories = sorted(list(categories)) - - # Create dropdown options for categories - category_options = [{"label": cat, "value": cat} for cat in sorted_categories] - - # Default selections - default_category = sorted_categories[0] if sorted_categories else None - default_tag = ( - tag_categories[default_category][0]["value"] - if default_category and tag_categories[default_category] - else None - ) - - # Create content divs for each tag - properly set the style during creation - content_divs = [] - for i, tab in enumerate(tab_contents): - # Set the first one to be visible, all others hidden - display_style = {"display": "block"} if i == 0 else {"display": "none"} - - content_divs.append( - html.Div( - tab["content"], - id=f"content-{tab['value']}", - style=display_style, # Set style directly during creation - ) - ) - - return html.Div( - [ - html.H1(title), - html.Div( - [ - # Category selection - html.Div( - [ - html.Label("Category:"), - dcc.Dropdown( - id="category-selector", - options=category_options, - value=default_category, - clearable=False, - style={"width": "100%"}, - ), - ], - style={ - "width": "45%", - "display": "inline-block", - "marginRight": "5%", - }, - ), - # Tag selection - html.Div( - [ - html.Label("Tag:"), - dcc.Dropdown( - id="tag-selector", - # Options will be set by callback - clearable=False, - style={"width": "100%"}, - ), - ], - style={"width": "45%", "display": "inline-block"}, - ), - ], - style={"margin": "10px 0", "width": "100%"}, - ), - html.Div(id="tag-content-container", children=content_divs), - # Stores - dcc.Store(id="active-tag", data=default_tag), - dcc.Store(id="tag-categories", data=tag_categories), - dcc.Store(id="color-maps"), - ] - ) - - def _register_callbacks(self): - """Register all the callbacks for the dashboard.""" - - # Category change callback - updates the tag dropdown options - @self.app.callback( - [Output("tag-selector", "options"), Output("tag-selector", "value")], - [Input("category-selector", "value")], - [State("tag-categories", "data")], - ) - def update_tag_options(selected_category, tag_categories): - if not selected_category or selected_category not in tag_categories: - return [], None - - tag_options = [ - {"label": tag["label"], "value": tag["value"]} - for tag in tag_categories[selected_category] - ] - - # Set default tag to the first one in the category - default_tag = tag_options[0]["value"] if tag_options else None - - return tag_options, default_tag - - # Tag selection callback - updates which content is displayed - @self.app.callback( - [Output("active-tag", "data")] - + [Output(f"content-{tag}", "style") for tag in self.tag_data.keys()], - [Input("tag-selector", "value")], - ) - def switch_tag(tag_value): - styles = [] - for tag in self.tag_data.keys(): - if tag == tag_value: - styles.append({"display": "block"}) - else: - styles.append({"display": "none"}) - return [tag_value] + styles - - # Register callbacks for each tag's components - for tag_str in self.tag_data.keys(): - # XY Plot options callback - if ( - self.tag_data[tag_str]["traces"] - or self.tag_data[tag_str]["points"] - or self.tag_data[tag_str]["axlines"] - ): - - @self.app.callback( - Output(f"xy-plot-{tag_str}", "figure"), - [Input(f"xy-options-{tag_str}", "value")], - ) - def update_xy_plot(options, tag_str=tag_str): - format2d = None - data = self.tag_data[tag_str] - - # Get format from first trace or point with format - for item in data["traces"] + data["points"]: - if item.format2d: - format2d = item.format2d - break - - fig = self._create_xy_figure(tag_str, format2d) - - # Update based on options - fig.update_layout( - showlegend="show_legend" in options, - xaxis=dict( - showgrid="show_grid" in options, - autorange="auto_range" in options, - ), - yaxis=dict( - showgrid="show_grid" in options, - autorange="auto_range" in options, - ), - ) - - return fig - - # Histogram options callback - if self.tag_data[tag_str]["histograms"]: - - @self.app.callback( - Output(f"histogram-{tag_str}", "figure"), - [ - Input(f"hist-bins-{tag_str}", "value"), - Input(f"hist-options-{tag_str}", "value"), - ], - ) - def update_histogram(bins, options, tag_str=tag_str): - data = self.tag_data[tag_str] - - # Group histogram entries by style.label - histogram_groups = defaultdict(list) - for hist in data["histograms"]: - label = ( - hist.style.label - if hist.style and hist.style.label - else "Default" - ) - histogram_groups[label].append(hist) - - fig = self._create_histogram_figure( - tag_str, histogram_groups, bins, options - ) - return fig - - -def generate_plotly_dashboard( - collection: DataProductCollection, - title: str = "Trendify Dashboard", - debug: bool = False, -) -> dash.Dash: - """ - Generate a Plotly dashboard from a data product collection. - - This function creates an interactive dashboard that visualizes the data products - in the collection, similar to how DataProductCollection.process_collection works - with matplotlib, but with interactive Plotly features. - - Args: - collection (DataProductCollection): Collection of data products to visualize - title (str): Title for the dashboard - debug (bool): Whether to enable debug logging - - Returns: - dash.Dash: The configured Dash application ready to run - - """ - generator = PlotlyDashboardGenerator(debug=debug) - return generator.process_collection(collection, title) diff --git a/src/trendify_old/production_server.py b/src/trendify_old/production_server.py deleted file mode 100644 index 0f9ca12..0000000 --- a/src/trendify_old/production_server.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -Production server for trendify dashboards. - -This module provides functions to run Dash applications in a production environment -using the Waitress WSGI server. -""" - -import sys -from pathlib import Path -from typing import Union - -from trendify.api.api import DataProductCollection - - -def run_production_server( - app_or_collection: Union["dash.Dash", DataProductCollection], - host: str = "0.0.0.0", - port: int = 8000, - title: str = "Trendify Dashboard", - debug: bool = False, -) -> None: - """ - Run a Dash application using a production WSGI server (Waitress). - - Args: - app_or_collection: Either a Dash application or a DataProductCollection - host: Host address to listen on - port: Port to listen on - title: Title for the dashboard (used only if app_or_collection is a DataProductCollection) - debug: Enable debug mode (has no effect on Waitress but affects Dash) - - Raises: - ImportError: If Waitress is not installed - - """ - try: - import waitress - except ImportError: - print("Error: The 'waitress' package is required for production deployment.") - print("Please install it with: pip install waitress") - sys.exit(1) - - # Check if input is a Dash app or a DataProductCollection - try: - import dash - - if isinstance(app_or_collection, DataProductCollection): - from trendify.plotly_dashboard import generate_plotly_dashboard - - app = generate_plotly_dashboard(app_or_collection, title, debug) - elif isinstance(app_or_collection, dash.Dash): - app = app_or_collection - else: - raise TypeError( - "app_or_collection must be either a Dash application or a DataProductCollection" - ) - except ImportError: - print("Error: Dash is not installed. Please install it with: pip install dash") - sys.exit(1) - - print(f"Starting production server with Waitress on {host}:{port}") - waitress.serve(app.server, host=host, port=port) - - -def serve_from_data_dir( - data_dir: str | Path, - host: str = "0.0.0.0", - port: int = 8000, - title: str | None = None, - tag: str | None = None, -) -> None: - """ - Serve a dashboard from a directory containing data products. - - Args: - data_dir: Path to directory containing data products - host: Host address to listen on - port: Port to listen on - title: Optional title for the dashboard. If None, will use the directory name - tag: Optional tag to filter data products by - - """ - from trendify.api.api import DataProductCollection - - data_dir = Path(data_dir) - if not data_dir.exists(): - print(f"Error: Directory {data_dir} does not exist") - sys.exit(1) - - if title is None: - title = f"Trendify: {data_dir.name}" - - print(f"Loading data products from {data_dir}") - try: - collection = DataProductCollection.collect_from_all_jsons( - data_dir, recursive=True - ) - print(f"Loaded {len(collection.elements or [])} data products") - - if tag: - filtered = collection.get_products(tag=tag) - print( - f"Filtered to {len(filtered.elements or [])} data products with tag '{tag}'" - ) - collection = filtered - except Exception as e: - print(f"Error loading data products: {e}") - sys.exit(1) - - run_production_server(collection, host, port, title) - - -if __name__ == "__main__": - import argparse - - parser = argparse.ArgumentParser( - description="Run a trendify dashboard in production mode" - ) - parser.add_argument("data_dir", type=str, help="Directory containing data products") - parser.add_argument("--host", type=str, default="0.0.0.0", help="Host to listen on") - parser.add_argument("--port", type=int, default=8000, help="Port to listen on") - parser.add_argument("--title", type=str, help="Dashboard title") - parser.add_argument("--tag", type=str, help="Filter by tag") - - args = parser.parse_args() - - serve_from_data_dir(args.data_dir, args.host, args.port, args.title, args.tag) diff --git a/src/trendify_old/server.py b/src/trendify_old/server.py deleted file mode 100644 index b114dab..0000000 --- a/src/trendify_old/server.py +++ /dev/null @@ -1,170 +0,0 @@ -""" -Defines database server for DataProductCollection from analyses -""" - -# Standard impots -from pathlib import Path -import pandas as pd - -# External imports -from flask import Flask -from waitress import serve - -# Local imports -# from trendify.api.API import ( -# # Collection -# DataProductCollection, -# # DataProduct types -# # DataProduct, -# # XYData, -# # Trace2D, -# # Point2D, -# # TableEntry, -# # HistogramEntry, -# ) -from trendify.api.base.data_product import DataProduct -from trendify.api.generator.data_product_collection import DataProductCollection -from trendify.api.plotting.histogram import HistogramEntry -from trendify.api.formats.format2d import XYData -from trendify.api.plotting.point import Point2D -from trendify.api.plotting.trace import Trace2D -from trendify.api.formats.table import TableEntry - -valid_product_types = [ - DataProduct, - XYData, - Trace2D, - Point2D, - TableEntry, - HistogramEntry, -] -valid_types_names_list = [t.__name__ for t in valid_product_types] - -# App -app = Flask(__name__) - -DATABASE_ROOT = Path( - "/Users/talbotknighton/Documents/trendify/workdir/trendify_output/products/" -) - - -@app.route("/data_products/server-status/") -def get_status(): - return "Data Products server is working..." - - -@app.route("/data_products/aggregate//") -@app.route("/data_products/aggregate///") -def get_aggregate_data_products( - analysis: str = "workdir", - file: str = "trace_plots", -): - FAILED_RETURN_VALUE = None - query_return = FAILED_RETURN_VALUE - - analysis = str(analysis) - analysis_path_components = analysis.split(".") if "." in analysis else [analysis] - assert not any(("." in x) for x in analysis_path_components) - file = str(file) - assert len(file.split(".")) <= 2 - collection_path_components = analysis_path_components + [file] - load_path = DATABASE_ROOT.joinpath(*tuple(collection_path_components)) - assert load_path.is_relative_to(DATABASE_ROOT) - - df = pd.read_csv(load_path, index_col=0) - query_return = df.to_csv() - return query_return - - -@app.route("/data_products//") -@app.route("/data_products///") -@app.route("/data_products///") -@app.route("/data_products////") -def get_data_products( - analysis: str = "workdir.products", - tag: str = "trace_plots", - product_type: str = "DataProduct", -): - """ - Example: Traces - parse-json - | project "elements" - | extend "label"="pen.label" - | mv-expand "points" - | extend "x"="points.x", "y"="points.y" - | project "label", "x", "y" - | pivot sum("y"), "x", "label" - | project "label", "x", "y" - """ - FAILED_RETURN_VALUE = None - query_return = FAILED_RETURN_VALUE - product_type = str(product_type) - - match product_type: - case DataProduct.__name__: - filter_type = DataProduct - case XYData.__name__: - filter_type = XYData - case Trace2D.__name__: - filter_type = Trace2D - case Point2D.__name__: - filter_type = Point2D - case TableEntry.__name__: - filter_type = TableEntry - case HistogramEntry.__name__: - filter_type = HistogramEntry - case _: - query_return = f"{product_type = } should be in {valid_types_names_list}" - return query_return - - try: - analysis = str(analysis) - analysis_path_components = ( - analysis.split(".") if "." in analysis else [analysis] - ) - tag = str(tag) - tag_path_components = tag.split(".") if "." in tag else [tag] - collection_path_components = analysis_path_components + tag_path_components - data_dir = DATABASE_ROOT.joinpath(*tuple(analysis_path_components)) - collection_dir = data_dir.joinpath(*tuple(tag_path_components)) - assert not any(("." in x) for x in collection_path_components) - assert collection_dir.is_relative_to(data_dir) - except AssertionError: - query_return = f"Do not try to access stuff outside of {data_dir = }" - print(f"Do not try to access stuff outside of {data_dir = }") - return query_return - - data: DataProductCollection = DataProductCollection.collect_from_all_jsons( - collection_dir - ) - if data is None: - return f"Did not find data product jsons in {collection_dir}" - formatted_tag = ( - tag_path_components[0] - if len(tag_path_components) == 1 - else tuple(tag_path_components) - ) - filtered_data = data.get_products( - tag=formatted_tag, - object_type=filter_type, - ) - query_return = filtered_data.model_dump_json() - return query_return - - -if __name__ == "__main__": - # print( - # get_data_products( - # analysis='workdir.products', - # tag='tables', - # product_type='DataProduct', - # ) - # ) - # print( - # get_aggregate_data_products( - # analysis='workdir.aggregate', - # file='stdin.csv', - # ) - # ) - print("Starting Server") - serve(app, host="0.0.0.0", port=8000) diff --git a/src/trendify_old/streamlit.py b/src/trendify_old/streamlit.py deleted file mode 100644 index a560a2f..0000000 --- a/src/trendify_old/streamlit.py +++ /dev/null @@ -1,302 +0,0 @@ -import importlib.resources -from importlib.metadata import version -from pathlib import Path -import time -from collections.abc import Sequence - -import streamlit as st - -from trendify.api.generator.data_product_collection import DataProductCollection -from trendify.api.plotting.plotting import PlotlyFigure - -# from trendify.api.generator.data_product_collection import ( -# ProductIndexMap, -# ) - - -def make_theme(): - theme_dir = Path(".streamlit").resolve() - theme_dir.mkdir(parents=True, exist_ok=True) - theme_dir.joinpath(".gitignore").write_text("*") - - toml = """[theme] -base="light" -primaryColor="#e92063" - -[browser] -gatherUsageStats = false -""" - theme_dir.joinpath("config.toml").write_text(toml) - - -def make_streamlit(trendify_dir: Path): - trendify_dir = trendify_dir.resolve() - save_location = trendify_dir.joinpath("assets", "dashboard", "streamlit_run.py") - run_command = f"streamlit run {save_location.as_posix()}" - to_write = f'''"""To run use: - -{run_command} -""" - -import trendify.streamlit as trendy_stream -from pathlib import Path - -trendify_dir = Path("{trendify_dir.as_posix()}") - -trendy_stream.make_dashboard(trendify_dir=trendify_dir) -''' - make_theme() - save_location.parent.mkdir(parents=True, exist_ok=True) - save_location.write_text(to_write) - print( - f"""To run use - -{run_command} -""" - ) - - -def get_index_map_path(trendify_dir: Path, tag: tuple[str, ...]) -> Path: - products_dir = trendify_dir.joinpath("products") - return products_dir.joinpath(*tag, "index_map") - - -def get_tags(trendify_dir: Path) -> Sequence[tuple[str, ...]]: - products_dir = trendify_dir.joinpath("products") - tags = [ - p.parent.relative_to(products_dir).parts - for p in products_dir.rglob("*") - if p.name == "index_map" and p.is_file() - ] - return sorted(tags, key=lambda x: (len(x), x)) - - -def create_nested_expanders( - tags: Sequence[tuple[str, ...]], current_level: int = 0 -) -> dict: - # Group tags by their current level - level_groups = {} - for tag in tags: - if len(tag) > current_level: - if tag[current_level] not in level_groups: - level_groups[tag[current_level]] = { - "subtags": [], # Tags that continue deeper - "complete": False, # Whether this level is a complete tag - } - if len(tag) == current_level + 1: - level_groups[tag[current_level]]["complete"] = True - else: - level_groups[tag[current_level]]["subtags"].append(tag) - - return level_groups - - -def render_nested_expanders( - tags: Sequence[tuple[str, ...]], - current_level: int = 0, - selected_tags: tuple[str, ...] | None = None, -): - if selected_tags is None: - selected_tags = None - - level_groups = create_nested_expanders(tags, current_level) - - # Get currently selected tag (if any) - selected_tag = st.session_state.get("selected_tags", None) - - for tag_name, group_info in level_groups.items(): - # Create the full tag tuple up to this level - current_tag = tuple( - t[: current_level + 1] - for t in tags - if len(t) > current_level and t[current_level] == tag_name - ) - if current_tag: - # Take the first one since they're all the same at this level - current_tag = current_tag[0] - - # Check if this tag is part of the currently selected path - is_selected = selected_tag == current_tag - button_text = f"{tag_name}" - button_type = "primary" if is_selected else "secondary" - - # Only create expander if there are subtags, otherwise just show button - if group_info["subtags"]: - with st.expander(f"📁 {tag_name}", expanded=False): - if group_info["complete"]: - if st.button( - button_text, - key=f"btn_{'_'.join(current_tag)}", # Use the full tag tuple as the key - type=button_type, - ): - st.session_state.selected_tags = current_tag - st.rerun() - - render_nested_expanders( - group_info["subtags"], current_level + 1, selected_tags - ) - else: - # For leaf nodes (no subtags), just show the button - if group_info["complete"]: - if st.button( - button_text, - key=f"btn_{'_'.join(current_tag)}", # Use the full tag tuple as the key - type=button_type, - use_container_width=True, - ): - st.session_state.selected_tags = current_tag - st.rerun() - - return st.session_state.get("selected_tags", None) - - -def make_sidebar(trendify_dir: Path) -> tuple[str, ...] | None: - st.title(f"Trendify (v{version('trendify')})") - - tags = get_tags(trendify_dir=trendify_dir) - st.caption(f"Viewing {len(tags)} assets for {trendify_dir}") - - if "selected_tags" not in st.session_state: - st.session_state.selected_tags = None - - selected_tags = st.session_state.selected_tags - selected_tags = render_nested_expanders(tags=tags, selected_tags=selected_tags) - - return selected_tags - - -@st.cache_data(show_time=True) -def process_tag(tag: tuple[str, ...], trendify_dir: Path): - products_paths = list( - trendify_dir.joinpath("products").joinpath(*tag).glob("*.json") - ) - - return DataProductCollection.process_tag_for_streamlit(products_paths, tag=tag) - - -def make_main_page(tag: tuple[str, ...], trendify_dir: Path): - """Display the main page content for the selected tag""" - st.title(f"{' | '.join(tag)}") - - # Process the tag for tables and plots - proccessed_tag = process_tag(tag=tag, trendify_dir=trendify_dir) - - # Display Plotly figures if available - if isinstance(proccessed_tag, PlotlyFigure): - col1, col2, col3 = st.columns([1, 1, 0.3], vertical_alignment="bottom") - with st.form("plot_form"): - with col1: - if "height" not in st.session_state: - st.session_state.height = 600 - - height = st.slider( - label="Figure Height", - min_value=100, - value=st.session_state.height, - max_value=2000, - step=100, - help="Set the height of the rendered plot (in pixels)", - ) - with col2: - opts = ["closest", "x unified", "y unified", "x", "y"] - if "tooltip_selected" not in st.session_state: - st.session_state.tooltip_selected = "closest" - - index = opts.index(st.session_state.tooltip_selected) - - tooltip = st.selectbox( - key="tooltip", - label="Tooltip", - options=opts, - index=index, - accept_new_options=False, - help="Select tooltip option", - ) - - with col3: - if st.button( - "🔄", - key="refresh_button", - help="Refresh the plot area with the selections made.", - ): - st.session_state.height = height - st.session_state.tooltip_selected = tooltip - st.rerun() - - proccessed_tag.fig.update_layout( - hovermode=st.session_state.tooltip_selected, - height=st.session_state.height, - margin=dict(pad=4, t=25, b=25), - ) - st.plotly_chart(proccessed_tag.fig) - - else: - msg = f"Product with {tag=} does not have a display method for streamlit" - st.warning(msg) - - -def make_dashboard(trendify_dir: str | Path): - start = time.perf_counter() - - trendify_dir = Path(trendify_dir).resolve() - - with importlib.resources.path("trendify.assets", "logo.svg") as data_path: - logo = data_path - - with importlib.resources.path("trendify.assets", "logo_white_bg.svg") as data_path: - logo_white_bg = data_path - - docs = "https://talbotknighton.github.io/trendify/" - - st.set_page_config( - page_title="Trendify UI", - page_icon=logo_white_bg, - layout="wide", - menu_items={ - "Get help": docs, - "Report a bug": "https://github.com/TalbotKnighton/trendify/issues", - "About": "Trendify", - }, - ) - - st.markdown( - """ - - """, - unsafe_allow_html=True, - ) - - st.logo( - image=f"{logo}", - size="large", - link=docs, - ) - - with st.sidebar: - selected_tag = make_sidebar(trendify_dir=trendify_dir) - - if selected_tag is None: - st.info("Select an Asset to Display") - else: - make_main_page(tag=selected_tag, trendify_dir=trendify_dir) - - with st.sidebar: - st.caption(f"Site built in {time.perf_counter() - start:.2f} seconds") - - -def main(): - """ - To run use - - streamlit run src/trendify/streamlit.py - """ - make_theme() - make_dashboard(trendify_dir=Path("sample_data/trendify")) - - -if __name__ == "__main__": - main() diff --git a/test.py b/test.py deleted file mode 100644 index 7af5c38..0000000 --- a/test.py +++ /dev/null @@ -1,39 +0,0 @@ -import matplotlib.pyplot as plt - -from dataclasses import dataclass - - -@dataclass -class Coordinate: - xyz = tuple[float, float, float] - - -def main(): - coords = [ - [(-1681, 52, -1274), (-2377, 62, -967), (2996, 67, 2797), (-238, 69, -211)], - [(2295, 73, -514), (1490, 70, -1091), (265, 60, -836), (-1061, 63, 217)], - [(-70, 63, -926), (2107, 60, 2934), (1223, 61, 1574), (-954, 74, 579)], - [(-2196, 58, -1390), (917, 77, -907), (1167, 70, -2741), (49, 51, 758)], - [(251, 54, -1118), (1858, 75, -2807), (-128, 52, 1605), (-2144, 60, 971)], - ] - flattened_list = [] - for sublist in coords: - for item in sublist: - flattened_list.append(item) - coords = flattened_list - - fig, ax = plt.subplots() - - for coord in coords: - ax.scatter(x=coord[0], y=coord[2]) - - min_x = min([x[0] for x in coords]) - max_x = max([x[0] for x in coords]) - min_z = min([x[2] for x in coords]) - max_z = max([x[2] for x in coords]) - fig.show() - breakpoint() - - -if __name__ == "__main__": - main() diff --git a/tests/test_cli.py b/tests/test_cli.py new file mode 100644 index 0000000..67fee79 --- /dev/null +++ b/tests/test_cli.py @@ -0,0 +1,152 @@ +"""Tests for CLI""" + +import textwrap +from pathlib import Path + +from typer.testing import CliRunner + +from trendify.cli import app +from trendify.plotting.point import Point2D +from trendify.store.product_store import ProductStore + +runner = CliRunner() + + +def _write_generator_module(path: Path) -> Path: + path.write_text( + textwrap.dedent( + """ + from trendify.plotting.point import Point2D + + def generate(workdir): + n = int(workdir.name) + return [Point2D(tags=["scatter"], x=float(n), y=float(n) ** 2)] + """ + ) + ) + return path + + +def _make_run_dirs(tmp_path: Path, n: int) -> Path: + for i in range(n): + (tmp_path / "raw" / str(i)).mkdir(parents=True) + return tmp_path / "raw" / "*" + + +class TestGenerateCommand: + def test_writes_products_to_store(self, tmp_path: Path): + glob_pattern = _make_run_dirs(tmp_path, 3) + gen_module = _write_generator_module(tmp_path / "gen.py") + out_dir = tmp_path / "out" + + result = runner.invoke( + app, + [ + "generate", + "-i", + str(glob_pattern), + "-g", + f"{gen_module}:generate", + "-o", + str(out_dir), + ], + ) + + assert result.exit_code == 0, result.output + with ProductStore.open(out_dir / "trendify.db", readonly=True) as store: + assert len(store.get_products_of_type(Point2D)) == 3 + + def test_bad_product_generator_spec_errors(self, tmp_path: Path): + glob_pattern = _make_run_dirs(tmp_path, 1) + out_dir = tmp_path / "out" + + result = runner.invoke( + app, + [ + "generate", + "-i", + str(glob_pattern), + "-g", + "not-a-valid-spec", + "-o", + str(out_dir), + ], + ) + + assert result.exit_code != 0 + + +class TestRenderCommand: + def test_renders_after_generate(self, tmp_path: Path): + glob_pattern = _make_run_dirs(tmp_path, 2) + gen_module = _write_generator_module(tmp_path / "gen.py") + out_dir = tmp_path / "out" + + runner.invoke( + app, + [ + "generate", + "-i", + str(glob_pattern), + "-g", + f"{gen_module}:generate", + "-o", + str(out_dir), + ], + ) + result = runner.invoke( + app, ["render", "-o", str(out_dir), "--dpi", "50", "--no-tables"] + ) + + assert result.exit_code == 0, result.output + assert (out_dir / "assets" / "scatter.jpg").exists() + assert (out_dir / "assets" / "include.md").exists() + + +class TestRunCommand: + def test_generates_and_renders_in_one_step(self, tmp_path: Path): + glob_pattern = _make_run_dirs(tmp_path, 2) + gen_module = _write_generator_module(tmp_path / "gen.py") + out_dir = tmp_path / "out" + + result = runner.invoke( + app, + [ + "run", + "-i", + str(glob_pattern), + "-g", + f"{gen_module}:generate", + "-o", + str(out_dir), + "--dpi", + "50", + ], + ) + + assert result.exit_code == 0, result.output + assert (out_dir / "assets" / "scatter.jpg").exists() + + def test_no_include_files_flag(self, tmp_path: Path): + glob_pattern = _make_run_dirs(tmp_path, 2) + gen_module = _write_generator_module(tmp_path / "gen.py") + out_dir = tmp_path / "out" + + result = runner.invoke( + app, + [ + "run", + "-i", + str(glob_pattern), + "-g", + f"{gen_module}:generate", + "-o", + str(out_dir), + "--dpi", + "50", + "--no-include-files", + ], + ) + + assert result.exit_code == 0, result.output + assert not (out_dir / "assets" / "include.md").exists() diff --git a/tests/test_generate.py b/tests/test_generate.py new file mode 100644 index 0000000..659c748 --- /dev/null +++ b/tests/test_generate.py @@ -0,0 +1,81 @@ +"""Tests for data product generators""" + +from pathlib import Path + +from trendify.base.pen import Pen +from trendify.generator.generate import generate_products, get_sorted_dirs +from trendify.plotting.point import Point2D +from trendify.plotting.trace import Trace2D +from trendify.store.product_store import ProductStore + + +def _generator(run_dir: Path): + n = int(run_dir.name) + return [ + Point2D(tags=["points"], x=float(n), y=float(n) ** 2), + Trace2D.from_xy( + tags=[("traces", "run")], + x=[0, 1, 2], + y=[n, n, n], + pen=Pen(label=run_dir.name), + ), + ] + + +def _make_run_dirs(tmp_path: Path, n: int) -> list[Path]: + dirs = [] + for i in range(n): + d = tmp_path / "runs" / str(i) + d.mkdir(parents=True) + dirs.append(d) + return dirs + + +class TestGetSortedDirs: + def test_sorts_numeric_dirs_numerically(self, tmp_path: Path): + dirs = [tmp_path / n for n in ["10", "2", "1"]] + assert get_sorted_dirs(dirs) == [ + tmp_path / "1", + tmp_path / "2", + tmp_path / "10", + ] + + def test_falls_back_to_alphabetical(self, tmp_path: Path): + dirs = [tmp_path / n for n in ["b", "a", "c"]] + assert get_sorted_dirs(dirs) == [tmp_path / n for n in ["a", "b", "c"]] + + +class TestGenerateProductsSequential: + def test_writes_all_runs_to_store(self, tmp_path: Path): + run_dirs = _make_run_dirs(tmp_path, 5) + db_path = tmp_path / "trendify.db" + + total = generate_products(_generator, run_dirs, db_path, n_procs=1) + + assert total == 10 # 2 products per run x 5 runs + with ProductStore.open(db_path, readonly=True) as store: + assert len(store.get_products_of_type(Point2D)) == 5 + assert len(store.get_products_of_type(Trace2D, tag=("traces", "run"))) == 5 + + def test_rerunning_is_idempotent(self, tmp_path: Path): + run_dirs = _make_run_dirs(tmp_path, 3) + db_path = tmp_path / "trendify.db" + + generate_products(_generator, run_dirs, db_path, n_procs=1) + generate_products(_generator, run_dirs, db_path, n_procs=1) + + with ProductStore.open(db_path, readonly=True) as store: + assert len(store.get_products_of_type(Point2D)) == 3 + + +class TestGenerateProductsParallel: + def test_matches_sequential_output(self, tmp_path: Path): + run_dirs = _make_run_dirs(tmp_path, 8) + db_path = tmp_path / "trendify.db" + + total = generate_products(_generator, run_dirs, db_path, n_procs=2) + + assert total == 16 + with ProductStore.open(db_path, readonly=True) as store: + points = store.get_products_of_type(Point2D) + assert {p.x for p in points} == {float(i) for i in range(8)} diff --git a/tests/test_pipeline.py b/tests/test_pipeline.py new file mode 100644 index 0000000..3c45b36 --- /dev/null +++ b/tests/test_pipeline.py @@ -0,0 +1,103 @@ +"""Tests for full pipeline""" + +from pathlib import Path + +from trendify.base.data_product import DataProduct +from trendify.pipeline import TrendifyPipeline +from trendify.plotting.point import Point2D +from trendify.store.product_store import ProductStore + + +def _generator(run_dir: Path) -> list[DataProduct]: + n = int(run_dir.name) + return [Point2D(tags=["scatter"], x=float(n), y=float(n) ** 2)] + + +def _make_run_dirs(tmp_path: Path, n: int) -> list[Path]: + dirs = [] + for i in range(n): + d = tmp_path / "raw" / str(i) + d.mkdir(parents=True) + dirs.append(d) + return dirs + + +class TestTrendifyPipelinePaths: + def test_db_path_and_assets_dir(self, tmp_path: Path): + pipeline = TrendifyPipeline(output_dir=tmp_path) + assert pipeline.db_path == tmp_path / "trendify.db" + assert pipeline.assets_dir == tmp_path / "assets" + + +class TestGenerate: + def test_writes_products(self, tmp_path: Path): + dirs = _make_run_dirs(tmp_path, 3) + pipeline = TrendifyPipeline(output_dir=tmp_path / "out") + + total = pipeline.generate(_generator, dirs) + + assert total == 3 + with ProductStore.open(pipeline.db_path, readonly=True) as store: + assert len(store.get_products_of_type(Point2D)) == 3 + + +class TestRender: + def test_writes_figure_for_tag(self, tmp_path: Path): + dirs = _make_run_dirs(tmp_path, 2) + pipeline = TrendifyPipeline(output_dir=tmp_path / "out") + pipeline.generate(_generator, dirs) + + pipeline.render(dpi=50) + + assert (pipeline.assets_dir / "scatter.jpg").exists() + + def test_no_flags_suppress_output(self, tmp_path: Path): + dirs = _make_run_dirs(tmp_path, 2) + pipeline = TrendifyPipeline(output_dir=tmp_path / "out") + pipeline.generate(_generator, dirs) + + pipeline.render(no_xy_plots=True) + + assert not (pipeline.assets_dir / "scatter.jpg").exists() + + +class TestMakeIncludeFiles: + def test_writes_include_md(self, tmp_path: Path): + dirs = _make_run_dirs(tmp_path, 2) + pipeline = TrendifyPipeline(output_dir=tmp_path / "out") + pipeline.generate(_generator, dirs) + pipeline.render(dpi=50) + + pipeline.make_include_files() + + assert (pipeline.assets_dir / "include.md").exists() + + +class TestRun: + def test_generates_and_renders_end_to_end(self, tmp_path: Path): + dirs = _make_run_dirs(tmp_path, 3) + pipeline = TrendifyPipeline(output_dir=tmp_path / "out", n_procs=2) + + total = pipeline.run(_generator, dirs, dpi=50) + + assert total == 3 + assert (pipeline.assets_dir / "scatter.jpg").exists() + assert (pipeline.assets_dir / "include.md").exists() + + def test_no_include_files_suppresses_include_md(self, tmp_path: Path): + dirs = _make_run_dirs(tmp_path, 2) + pipeline = TrendifyPipeline(output_dir=tmp_path / "out") + + pipeline.run(_generator, dirs, dpi=50, no_include_files=True) + + assert not (pipeline.assets_dir / "include.md").exists() + + def test_all_assets_suppressed_skips_render_and_include(self, tmp_path: Path): + dirs = _make_run_dirs(tmp_path, 2) + pipeline = TrendifyPipeline(output_dir=tmp_path / "out") + + pipeline.run( + _generator, dirs, no_tables=True, no_xy_plots=True, no_histograms=True + ) + + assert not pipeline.assets_dir.exists() diff --git a/tests/test_product_store.py b/tests/test_product_store.py index 0aee658..c1da9aa 100644 --- a/tests/test_product_store.py +++ b/tests/test_product_store.py @@ -1,3 +1,5 @@ +"""Tests for data product store""" + from pathlib import Path import polars as pl @@ -5,12 +7,12 @@ from trendify.base.data_product import DataProduct from trendify.base.pen import Pen +from trendify.formats.format2d import XYData from trendify.formats.table import TableEntry from trendify.plotting.axline import AxLine, LineOrientation from trendify.plotting.histogram import HistogramEntry from trendify.plotting.point import Point2D from trendify.plotting.trace import Trace2D -from trendify.formats.format2d import XYData from trendify.store.product_store import ProductStore from trendify.store.tags import decode_tag, encode_tag @@ -121,7 +123,7 @@ def test_no_filters_returns_everything(self, store: ProductStore, tmp_path: Path def test_multi_tag_product_is_not_duplicated_in_storage( self, store: ProductStore, tmp_path: Path ): - # Point2D above carries two tags ("a" and ("a","b")) -- this is precisely the + # Point2D above carries two tags ("a" and ("a","b")), which is precisely the # v1 disk-duplication complaint: assert there's exactly one `products` row for # it, with two matching `product_tags` index rows, not two payload copies. store.write_run(tmp_path / "run1", _sample_products()) diff --git a/tests/test_render.py b/tests/test_render.py new file mode 100644 index 0000000..c85e055 --- /dev/null +++ b/tests/test_render.py @@ -0,0 +1,131 @@ +"""Tests for rendering assets (figures)""" + +from pathlib import Path + +import pytest + +from trendify.base.pen import Pen +from trendify.formats.table import TableEntry +from trendify.generator.render import make_include_files, render_assets +from trendify.plotting.histogram import HistogramEntry +from trendify.plotting.point import Point2D +from trendify.plotting.trace import Trace2D +from trendify.store.product_store import ProductStore + + +@pytest.fixture +def store(tmp_path: Path): + with ProductStore.open(tmp_path / "trendify.db") as s: + yield s + + +class TestRenderAssets: + def test_xy_plot_and_histogram_write_separate_files_for_shared_tag( + self, store: ProductStore, tmp_path: Path + ): + # A tag used for both XY and histogram products is precisely the v1 bug + # (rewrite_reference/OVERVIEW.md #8 item 9): they must not overlay on one figure/file. + products = [ + Trace2D.from_xy( + tags=["shared"], x=[0, 1, 2], y=[0, 1, 4], pen=Pen(label="trace") + ), + HistogramEntry(tags=["shared"], value=1.0), + HistogramEntry(tags=["shared"], value=2.0), + ] + store.write_run(tmp_path / "run1", products) + + out_dir = tmp_path / "out" + render_assets(store, out_dir) + + xy_path = out_dir / "shared.jpg" + hist_path = out_dir / "shared_histogram.jpg" + assert xy_path.exists() + assert hist_path.exists() + assert xy_path != hist_path + + def test_renders_table_xy_and_histogram_for_distinct_tags( + self, store: ProductStore, tmp_path: Path + ): + products = [ + TableEntry(tags=["tbl"], row="r1", col="c1", value=1.0), + Point2D(tags=["scatter"], x=1.0, y=2.0), + HistogramEntry(tags=["hist"], value=1.0), + ] + store.write_run(tmp_path / "run1", products) + + out_dir = tmp_path / "out" + render_assets(store, out_dir) + + assert (out_dir / "tbl_melted.csv").exists() + assert (out_dir / "scatter.jpg").exists() + assert (out_dir / "hist_histogram.jpg").exists() + + def test_tuple_tag_nests_output_path(self, store: ProductStore, tmp_path: Path): + store.write_run( + tmp_path / "run1", [Point2D(tags=[("group", "scatter")], x=1.0, y=2.0)] + ) + + out_dir = tmp_path / "out" + render_assets(store, out_dir) + + assert (out_dir / "group" / "scatter.jpg").exists() + + def test_no_flags_suppress_corresponding_output( + self, store: ProductStore, tmp_path: Path + ): + products = [ + TableEntry(tags=["tag"], row="r1", col="c1", value=1.0), + Point2D(tags=["tag"], x=1.0, y=2.0), + HistogramEntry(tags=["tag"], value=1.0), + ] + store.write_run(tmp_path / "run1", products) + + out_dir = tmp_path / "out" + render_assets( + store, out_dir, no_tables=True, no_xy_plots=True, no_histograms=True + ) + + assert list(out_dir.glob("**/*")) == [] + + def test_mismatched_format2d_across_products_does_not_crash( + self, store: ProductStore, tmp_path: Path + ): + # Products sharing a tag with no explicit format2d (all None) previously crashed + # Format2D.union_from_iterable with "not enough values to unpack" in v1; render_assets + # should just skip applying a format rather than error. + store.write_run( + tmp_path / "run1", + [Point2D(tags=["tag"], x=1.0, y=2.0), Point2D(tags=["tag"], x=2.0, y=3.0)], + ) + out_dir = tmp_path / "out" + render_assets(store, out_dir) + assert (out_dir / "tag.jpg").exists() + + +class TestMakeIncludeFiles: + def test_writes_include_md_referencing_figures_and_tables(self, tmp_path: Path): + (tmp_path / "fig.jpg").touch() + (tmp_path / "table_pivot.csv").touch() + + make_include_files(tmp_path) + + include_text = (tmp_path / "include.md").read_text() + assert "fig.jpg" in include_text + assert "table_pivot.csv" in include_text + + def test_nested_directories_get_child_includes(self, tmp_path: Path): + child = tmp_path / "child" + child.mkdir() + (child / "fig.jpg").touch() + + make_include_files(tmp_path) + + parent_include = (tmp_path / "include.md").read_text() + assert "child" in parent_include + assert (child / "include.md").exists() + + def test_empty_tree_is_a_noop(self, tmp_path: Path): + empty = tmp_path / "empty" + empty.mkdir() + make_include_files(empty) + assert (empty / "include.md").exists() diff --git a/tests/test_table_builder.py b/tests/test_table_builder.py new file mode 100644 index 0000000..003c9e4 --- /dev/null +++ b/tests/test_table_builder.py @@ -0,0 +1,135 @@ +"""Tests for table building""" + +from pathlib import Path + +import polars as pl +import pytest + +from trendify.formats.table import TableEntry +from trendify.generator.table_builder import TableBuilder +from trendify.store.product_store import ProductStore + + +@pytest.fixture +def store(tmp_path: Path): + with ProductStore.open(tmp_path / "trendify.db") as s: + yield s + + +class TestPivotTable: + def test_pivots_row_col_value(self): + melted = pl.DataFrame( + { + "row": ["r1", "r1", "r2"], + "col": ["c1", "c2", "c1"], + "value": [1.0, 2.0, 3.0], + } + ) + pivot = TableBuilder.pivot_table(melted) + assert pivot is not None + assert set(pivot.columns) == {"row", "c1", "c2"} + assert pivot.height == 2 + + def test_duplicate_row_col_pair_returns_none(self): + melted = pl.DataFrame( + {"row": ["r1", "r1"], "col": ["c1", "c1"], "value": [1.0, 2.0]} + ) + assert TableBuilder.pivot_table(melted) is None + + +class TestGetStatsTable: + def test_computes_stats_for_numeric_columns(self): + pivot = pl.DataFrame({"row": ["r1", "r2", "r3"], "c1": [1.0, 2.0, 3.0]}) + stats = TableBuilder.get_stats_table(pivot) + assert stats is not None + row = stats.to_dicts()[0] + assert row["Name"] == "c1" + assert row["min"] == 1.0 + assert row["mean"] == 2.0 + assert row["max"] == 3.0 + + def test_coerces_non_numeric_to_null(self): + pivot = pl.DataFrame({"row": ["r1", "r2"], "c1": ["hello", "world"]}) + stats = TableBuilder.get_stats_table(pivot) + assert stats is None + + def test_no_value_columns_returns_none(self): + pivot = pl.DataFrame({"row": ["r1", "r2"]}) + assert TableBuilder.get_stats_table(pivot) is None + + +class TestProcessTableEntries: + def test_writes_melted_pivot_and_stats_csvs(self, tmp_path: Path): + melted = pl.DataFrame( + { + "row": ["r1", "r1", "r2", "r2"], + "col": ["c1", "c2", "c1", "c2"], + "value": [1.0, 2.0, 3.0, 4.0], + "unit": [None, None, None, None], + } + ) + TableBuilder.process_table_entries(tag="mytag", melted=melted, out_dir=tmp_path) + + assert (tmp_path / "mytag_melted.csv").exists() + assert (tmp_path / "mytag_pivot.csv").exists() + assert (tmp_path / "mytag_stats.csv").exists() + + def test_tuple_tag_nests_output_directory(self, tmp_path: Path): + melted = pl.DataFrame( + {"row": ["r1"], "col": ["c1"], "value": [1.0], "unit": [None]} + ) + TableBuilder.process_table_entries( + tag=("group", "mytag"), melted=melted, out_dir=tmp_path + ) + assert (tmp_path / "group" / "mytag_melted.csv").exists() + + def test_empty_melted_writes_nothing(self, tmp_path: Path): + melted = pl.DataFrame( + schema={"row": pl.Utf8, "col": pl.Utf8, "value": pl.Float64} + ) + TableBuilder.process_table_entries(tag="empty", melted=melted, out_dir=tmp_path) + assert list(tmp_path.iterdir()) == [] + + def test_heterogeneous_value_types_write_csv_without_error(self, tmp_path: Path): + # Object-dtype "value" column, as returned by ProductStore.get_table_entries. + melted = pl.DataFrame( + { + "row": ["r1", "r1", "r2"], + "col": ["c1", "c2", "c1"], + "value": [1.5, "hello", True], + "unit": [None, None, None], + }, + schema={ + "row": pl.Utf8, + "col": pl.Utf8, + "value": pl.Object, + "unit": pl.Utf8, + }, + ) + TableBuilder.process_table_entries(tag="mixed", melted=melted, out_dir=tmp_path) + + melted_csv = (tmp_path / "mixed_melted.csv").read_text() + assert "1.5" in melted_csv + assert "hello" in melted_csv + assert "True" in melted_csv + + +class TestProcessTableEntriesFromStore: + def test_round_trips_through_product_store( + self, store: ProductStore, tmp_path: Path + ): + products = [ + TableEntry(tags=["tbl"], row="r1", col="c1", value=1.0), + TableEntry(tags=["tbl"], row="r1", col="c2", value=2.0), + TableEntry(tags=["tbl"], row="r2", col="c1", value=3.0), + TableEntry(tags=["tbl"], row="r2", col="c2", value=4.0), + ] + store.write_run(tmp_path / "run1", products) + + melted = store.get_table_entries("tbl") + out_dir = tmp_path / "out" + TableBuilder.process_table_entries(tag="tbl", melted=melted, out_dir=out_dir) + + assert (out_dir / "tbl_pivot.csv").exists() + stats_csv = (out_dir / "tbl_stats.csv").read_text() + assert "mean" in stats_csv diff --git a/update_docs_and_push_changes.sh b/update_docs_and_push_changes.sh deleted file mode 100755 index b96b33f..0000000 --- a/update_docs_and_push_changes.sh +++ /dev/null @@ -1,17 +0,0 @@ -#! /bin/bash - -git add src -git commit -m 'updates' - -python -m mkdocs build - -git add --all -git commit -m 'updated docs and site' - -python -m mkdocs gh-deploy - -git push - -rm -r dist/ -python -m build -twine upload dist/* diff --git a/uv.lock b/uv.lock index 98fcc5f..2e418f1 100644 --- a/uv.lock +++ b/uv.lock @@ -1,17 +1,6 @@ version = 1 revision = 3 -requires-python = ">=3.11" -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version < '3.12' and sys_platform == 'win32'", - "python_full_version < '3.12' and sys_platform == 'emscripten'", - "python_full_version < '3.12' and sys_platform != 'emscripten' and sys_platform != 'win32'", -] +requires-python = ">=3.12" [[package]] name = "annotated-doc" @@ -45,22 +34,10 @@ name = "contourpy" version = "1.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, - { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/91/2e/c4390a31919d8a78b90e8ecf87cd4b4c4f05a5b48d05ec17db8e5404c6f4/contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1", size = 288773, upload-time = "2025-07-26T12:01:02.277Z" }, - { url = "https://files.pythonhosted.org/packages/0d/44/c4b0b6095fef4dc9c420e041799591e3b63e9619e3044f7f4f6c21c0ab24/contourpy-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381", size = 270149, upload-time = "2025-07-26T12:01:04.072Z" }, - { url = "https://files.pythonhosted.org/packages/30/2e/dd4ced42fefac8470661d7cb7e264808425e6c5d56d175291e93890cce09/contourpy-1.3.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7", size = 329222, upload-time = "2025-07-26T12:01:05.688Z" }, - { url = "https://files.pythonhosted.org/packages/f2/74/cc6ec2548e3d276c71389ea4802a774b7aa3558223b7bade3f25787fafc2/contourpy-1.3.3-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1", size = 377234, upload-time = "2025-07-26T12:01:07.054Z" }, - { url = "https://files.pythonhosted.org/packages/03/b3/64ef723029f917410f75c09da54254c5f9ea90ef89b143ccadb09df14c15/contourpy-1.3.3-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a", size = 380555, upload-time = "2025-07-26T12:01:08.801Z" }, - { url = "https://files.pythonhosted.org/packages/5f/4b/6157f24ca425b89fe2eb7e7be642375711ab671135be21e6faa100f7448c/contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db", size = 355238, upload-time = "2025-07-26T12:01:10.319Z" }, - { url = "https://files.pythonhosted.org/packages/98/56/f914f0dd678480708a04cfd2206e7c382533249bc5001eb9f58aa693e200/contourpy-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620", size = 1326218, upload-time = "2025-07-26T12:01:12.659Z" }, - { url = "https://files.pythonhosted.org/packages/fb/d7/4a972334a0c971acd5172389671113ae82aa7527073980c38d5868ff1161/contourpy-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f", size = 1392867, upload-time = "2025-07-26T12:01:15.533Z" }, - { url = "https://files.pythonhosted.org/packages/75/3e/f2cc6cd56dc8cff46b1a56232eabc6feea52720083ea71ab15523daab796/contourpy-1.3.3-cp311-cp311-win32.whl", hash = "sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff", size = 183677, upload-time = "2025-07-26T12:01:17.088Z" }, - { url = "https://files.pythonhosted.org/packages/98/4b/9bd370b004b5c9d8045c6c33cf65bae018b27aca550a3f657cdc99acdbd8/contourpy-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42", size = 225234, upload-time = "2025-07-26T12:01:18.256Z" }, - { url = "https://files.pythonhosted.org/packages/d9/b6/71771e02c2e004450c12b1120a5f488cad2e4d5b590b1af8bad060360fe4/contourpy-1.3.3-cp311-cp311-win_arm64.whl", hash = "sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470", size = 193123, upload-time = "2025-07-26T12:01:19.848Z" }, { url = "https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb", size = 293419, upload-time = "2025-07-26T12:01:21.16Z" }, { url = "https://files.pythonhosted.org/packages/53/3e/405b59cfa13021a56bba395a6b3aca8cec012b45bf177b0eaf7a202cde2c/contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6", size = 273979, upload-time = "2025-07-26T12:01:22.448Z" }, { url = "https://files.pythonhosted.org/packages/d4/1c/a12359b9b2ca3a845e8f7f9ac08bdf776114eb931392fcad91743e2ea17b/contourpy-1.3.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7", size = 332653, upload-time = "2025-07-26T12:01:24.155Z" }, @@ -116,11 +93,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/93/8a/68a4ec5c55a2971213d29a9374913f7e9f18581945a7a31d1a39b5d2dfe5/contourpy-1.3.3-cp314-cp314t-win32.whl", hash = "sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae", size = 202428, upload-time = "2025-07-26T12:02:48.691Z" }, { url = "https://files.pythonhosted.org/packages/fa/96/fd9f641ffedc4fa3ace923af73b9d07e869496c9cc7a459103e6e978992f/contourpy-1.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc", size = 250331, upload-time = "2025-07-26T12:02:50.137Z" }, { url = "https://files.pythonhosted.org/packages/ae/8c/469afb6465b853afff216f9528ffda78a915ff880ed58813ba4faf4ba0b6/contourpy-1.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b", size = 203831, upload-time = "2025-07-26T12:02:51.449Z" }, - { url = "https://files.pythonhosted.org/packages/a5/29/8dcfe16f0107943fa92388c23f6e05cff0ba58058c4c95b00280d4c75a14/contourpy-1.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497", size = 278809, upload-time = "2025-07-26T12:02:52.74Z" }, - { url = "https://files.pythonhosted.org/packages/85/a9/8b37ef4f7dafeb335daee3c8254645ef5725be4d9c6aa70b50ec46ef2f7e/contourpy-1.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8", size = 261593, upload-time = "2025-07-26T12:02:54.037Z" }, - { url = "https://files.pythonhosted.org/packages/0a/59/ebfb8c677c75605cc27f7122c90313fd2f375ff3c8d19a1694bda74aaa63/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e", size = 302202, upload-time = "2025-07-26T12:02:55.947Z" }, - { url = "https://files.pythonhosted.org/packages/3c/37/21972a15834d90bfbfb009b9d004779bd5a07a0ec0234e5ba8f64d5736f4/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989", size = 329207, upload-time = "2025-07-26T12:02:57.468Z" }, - { url = "https://files.pythonhosted.org/packages/0c/58/bd257695f39d05594ca4ad60df5bcb7e32247f9951fd09a9b8edb82d1daa/contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77", size = 225315, upload-time = "2025-07-26T12:02:58.801Z" }, ] [[package]] @@ -138,14 +110,6 @@ version = "4.63.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/84/69/c97f2c18e0db87d2c7b15da1974dace76ae938f1cfa22e2727a648b7ed43/fonttools-4.63.0.tar.gz", hash = "sha256:caeb583deeb5168e694b65cda8b4ee62abedfa66cf88488734466f2366b9c4e0", size = 3597189, upload-time = "2026-05-14T12:04:30.958Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/75/2b/a7f1545bdf5da69c4bda0cea2a5781f0ad2a6623e0277267672db43c5fe6/fonttools-4.63.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2b8ae05d9eacf6081414d759c0a352769ac28ce31280d6bb8e77b03f9e3c449f", size = 2881793, upload-time = "2026-05-14T12:02:56.645Z" }, - { url = "https://files.pythonhosted.org/packages/49/50/965308c703f085f225db2886813b27e015b8b3438c350b22dd65b52c2a2c/fonttools-4.63.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79cdc9f567aec74a72918fd060283911406750cbc9fd28c1316023deb6ce31a9", size = 2428130, upload-time = "2026-05-14T12:02:58.891Z" }, - { url = "https://files.pythonhosted.org/packages/d8/38/6937fbd7f2dc3a6b48725851bc2c15ec949b9af14d9bbcb5fe83cdf9bdf9/fonttools-4.63.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2c14b4fd138c4bafcca294765c547914e1aa431ae1ca94ab99d8db08c958bd3b", size = 5111952, upload-time = "2026-05-14T12:03:01.263Z" }, - { url = "https://files.pythonhosted.org/packages/0b/43/a81f20050a3115b57d62c8e781446949512eac36690dc384ccea65ff4cc1/fonttools-4.63.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d76ac49f929aecaf82d83250b8347e099d7aecba0f4726c1d9b6df3b8bb5fe18", size = 5082308, upload-time = "2026-05-14T12:03:03.211Z" }, - { url = "https://files.pythonhosted.org/packages/67/00/cdd9d4944ca6ae280d01e69cc37bde3bf663630b837a6fc6d2cd65d80e0e/fonttools-4.63.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dcf076a4474fe0d7367e5bbf5b052c7284fa1feca729c04176ce513521afd8a0", size = 5087932, upload-time = "2026-05-14T12:03:05.147Z" }, - { url = "https://files.pythonhosted.org/packages/f5/f1/0aa0dbea778c75adbef223c42019fd47d22262b905974d62d829545d485f/fonttools-4.63.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7dd683fef0663e9f0f45cf541d788d24caa3ec9db50796b588e1757d8b3bc007", size = 5213271, upload-time = "2026-05-14T12:03:07.238Z" }, - { url = "https://files.pythonhosted.org/packages/a8/99/253e4056e1f0e67b9390125a154b73b5eb73ad521bece95c004858fdeec2/fonttools-4.63.0-cp311-cp311-win32.whl", hash = "sha256:afefc1ed0a59785a7fb06ea7e1678e849c193e1e387db783579bc7b3056fcfcb", size = 2304473, upload-time = "2026-05-14T12:03:09.271Z" }, - { url = "https://files.pythonhosted.org/packages/08/60/defa5e69641db890a63be281f41345f4c33b157824eaf0b9fad3e08b0dcb/fonttools-4.63.0-cp311-cp311-win_amd64.whl", hash = "sha256:063e08bd17bd5a90127a14123de0d6a952dbc847695fd98b63c043d58057f90c", size = 2356389, upload-time = "2026-05-14T12:03:11.53Z" }, { url = "https://files.pythonhosted.org/packages/08/ef/b3c6b9b5be2f82416d73fe2ed2e96e2793cd80e7510bd6a17ca79cdd88ec/fonttools-4.63.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:37dd23e621e3b0aef1baa70a303b80aaf38449632cfc8fd2a55fb285bbccfc02", size = 2881131, upload-time = "2026-05-14T12:03:13.386Z" }, { url = "https://files.pythonhosted.org/packages/44/a0/c815bea63117fa63e4e1c01f8a1110d2112fa003f838e6467094ec2432ce/fonttools-4.63.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a9faff9e0c1f76f9fd55899d2ce785832efebab37eb8ae13995853aef178bef0", size = 2426704, upload-time = "2026-05-14T12:03:15.801Z" }, { url = "https://files.pythonhosted.org/packages/44/04/0b91d8e916e92ad1fac9e4624760baf0fd5ff2ead614c2f68fb21373f03f/fonttools-4.63.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef3048ef05dbb552b89817713d9cac912e00d0fde4a3105c00d29e52e10c89af", size = 5044298, upload-time = "2026-05-14T12:03:18.085Z" }, @@ -196,21 +160,6 @@ version = "1.5.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/12/dd/a495a9c104be1c476f0386e714252caf2b7eca883915422a64c50b88c6f5/kiwisolver-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9eed0f7edbb274413b6ee781cca50541c8c0facd3d6fd289779e494340a2b85c", size = 122798, upload-time = "2026-03-09T13:12:58.963Z" }, - { url = "https://files.pythonhosted.org/packages/11/60/37b4047a2af0cf5ef6d8b4b26e91829ae6fc6a2d1f74524bcb0e7cd28a32/kiwisolver-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c4923e404d6bcd91b6779c009542e5647fef32e4a5d75e115e3bbac6f2335eb", size = 66216, upload-time = "2026-03-09T13:13:00.155Z" }, - { url = "https://files.pythonhosted.org/packages/0a/aa/510dc933d87767584abfe03efa445889996c70c2990f6f87c3ebaa0a18c5/kiwisolver-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0df54df7e686afa55e6f21fb86195224a6d9beb71d637e8d7920c95cf0f89aac", size = 63911, upload-time = "2026-03-09T13:13:01.671Z" }, - { url = "https://files.pythonhosted.org/packages/80/46/bddc13df6c2a40741e0cc7865bb1c9ed4796b6760bd04ce5fae3928ef917/kiwisolver-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2517e24d7315eb51c10664cdb865195df38ab74456c677df67bb47f12d088a27", size = 1438209, upload-time = "2026-03-09T13:13:03.385Z" }, - { url = "https://files.pythonhosted.org/packages/fd/d6/76621246f5165e5372f02f5e6f3f48ea336a8f9e96e43997d45b240ed8cd/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ff710414307fefa903e0d9bdf300972f892c23477829f49504e59834f4195398", size = 1248888, upload-time = "2026-03-09T13:13:05.231Z" }, - { url = "https://files.pythonhosted.org/packages/b2/c1/31559ec6fb39a5b48035ce29bb63ade628f321785f38c384dee3e2c08bc1/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6176c1811d9d5a04fa391c490cc44f451e240697a16977f11c6f722efb9041db", size = 1266304, upload-time = "2026-03-09T13:13:06.743Z" }, - { url = "https://files.pythonhosted.org/packages/5e/ef/1cb8276f2d29cc6a41e0a042f27946ca347d3a4a75acf85d0a16aa6dcc82/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50847dca5d197fcbd389c805aa1a1cf32f25d2e7273dc47ab181a517666b68cc", size = 1319650, upload-time = "2026-03-09T13:13:08.607Z" }, - { url = "https://files.pythonhosted.org/packages/4c/e4/5ba3cecd7ce6236ae4a80f67e5d5531287337d0e1f076ca87a5abe4cd5d0/kiwisolver-1.5.0-cp311-cp311-manylinux_2_39_riscv64.whl", hash = "sha256:01808c6d15f4c3e8559595d6d1fe6411c68e4a3822b4b9972b44473b24f4e679", size = 970949, upload-time = "2026-03-09T13:13:10.299Z" }, - { url = "https://files.pythonhosted.org/packages/5a/69/dc61f7ae9a2f071f26004ced87f078235b5507ab6e5acd78f40365655034/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f1f9f4121ec58628c96baa3de1a55a4e3a333c5102c8e94b64e23bf7b2083309", size = 2199125, upload-time = "2026-03-09T13:13:11.841Z" }, - { url = "https://files.pythonhosted.org/packages/e5/7b/abbe0f1b5afa85f8d084b73e90e5f801c0939eba16ac2e49af7c61a6c28d/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b7d335370ae48a780c6e6a6bbfa97342f563744c39c35562f3f367665f5c1de2", size = 2293783, upload-time = "2026-03-09T13:13:14.399Z" }, - { url = "https://files.pythonhosted.org/packages/8a/80/5908ae149d96d81580d604c7f8aefd0e98f4fd728cf172f477e9f2a81744/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:800ee55980c18545af444d93fdd60c56b580db5cc54867d8cbf8a1dc0829938c", size = 1960726, upload-time = "2026-03-09T13:13:16.047Z" }, - { url = "https://files.pythonhosted.org/packages/84/08/a78cb776f8c085b7143142ce479859cfec086bd09ee638a317040b6ef420/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:c438f6ca858697c9ab67eb28246c92508af972e114cac34e57a6d4ba17a3ac08", size = 2464738, upload-time = "2026-03-09T13:13:17.897Z" }, - { url = "https://files.pythonhosted.org/packages/b1/e1/65584da5356ed6cb12c63791a10b208860ac40a83de165cb6a6751a686e3/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8c63c91f95173f9c2a67c7c526b2cea976828a0e7fced9cdcead2802dc10f8a4", size = 2270718, upload-time = "2026-03-09T13:13:19.421Z" }, - { url = "https://files.pythonhosted.org/packages/be/6c/28f17390b62b8f2f520e2915095b3c94d88681ecf0041e75389d9667f202/kiwisolver-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:beb7f344487cdcb9e1efe4b7a29681b74d34c08f0043a327a74da852a6749e7b", size = 73480, upload-time = "2026-03-09T13:13:20.818Z" }, - { url = "https://files.pythonhosted.org/packages/d8/0e/2ee5debc4f77a625778fec5501ff3e8036fe361b7ee28ae402a485bb9694/kiwisolver-1.5.0-cp311-cp311-win_arm64.whl", hash = "sha256:ad4ae4ffd1ee9cd11357b4c66b612da9888f4f4daf2f36995eda64bd45370cac", size = 64930, upload-time = "2026-03-09T13:13:21.997Z" }, { url = "https://files.pythonhosted.org/packages/4d/b2/818b74ebea34dabe6d0c51cb1c572e046730e64844da6ed646d5298c40ce/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4e9750bc21b886308024f8a54ccb9a2cc38ac9fa813bf4348434e3d54f337ff9", size = 123158, upload-time = "2026-03-09T13:13:23.127Z" }, { url = "https://files.pythonhosted.org/packages/bf/d9/405320f8077e8e1c5c4bd6adc45e1e6edf6d727b6da7f2e2533cf58bff71/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:72ec46b7eba5b395e0a7b63025490d3214c11013f4aacb4f5e8d6c3041829588", size = 66388, upload-time = "2026-03-09T13:13:24.765Z" }, { url = "https://files.pythonhosted.org/packages/99/9f/795fedf35634f746151ca8839d05681ceb6287fbed6cc1c9bf235f7887c2/kiwisolver-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ed3a984b31da7481b103f68776f7128a89ef26ed40f4dc41a2223cda7fb24819", size = 64068, upload-time = "2026-03-09T13:13:25.878Z" }, @@ -289,11 +238,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0f/41/c5f71f9f00aabcc71fee8b7475e3f64747282580c2fe748961ba29b18385/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:f6764a4ccab3078db14a632420930f6186058750df066b8ea2a7106df91d3203", size = 138036, upload-time = "2026-03-09T13:15:36.894Z" }, { url = "https://files.pythonhosted.org/packages/fa/06/7399a607f434119c6e1fdc8ec89a8d51ccccadf3341dee4ead6bd14caaf5/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c31c13da98624f957b0fb1b5bae5383b2333c2c3f6793d9825dd5ce79b525cb7", size = 194295, upload-time = "2026-03-09T13:15:38.22Z" }, { url = "https://files.pythonhosted.org/packages/b5/91/53255615acd2a1eaca307ede3c90eb550bae9c94581f8c00081b6b1c8f44/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-win_amd64.whl", hash = "sha256:1f1489f769582498610e015a8ef2d36f28f505ab3096d0e16b4858a9ec214f57", size = 75987, upload-time = "2026-03-09T13:15:39.65Z" }, - { url = "https://files.pythonhosted.org/packages/e9/eb/5fcbbbf9a0e2c3a35effb88831a483345326bbc3a030a3b5b69aee647f84/kiwisolver-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ec4c85dc4b687c7f7f15f553ff26a98bfe8c58f5f7f0ac8905f0ba4c7be60232", size = 59532, upload-time = "2026-03-09T13:15:47.047Z" }, - { url = "https://files.pythonhosted.org/packages/c3/9b/e17104555bb4db148fd52327feea1e96be4b88e8e008b029002c281a21ab/kiwisolver-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:12e91c215a96e39f57989c8912ae761286ac5a9584d04030ceb3368a357f017a", size = 57420, upload-time = "2026-03-09T13:15:48.199Z" }, - { url = "https://files.pythonhosted.org/packages/48/44/2b5b95b7aa39fb2d8d9d956e0f3d5d45aef2ae1d942d4c3ffac2f9cfed1a/kiwisolver-1.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:be4a51a55833dc29ab5d7503e7bcb3b3af3402d266018137127450005cdfe737", size = 79892, upload-time = "2026-03-09T13:15:49.694Z" }, - { url = "https://files.pythonhosted.org/packages/52/7d/7157f9bba6b455cfb4632ed411e199fc8b8977642c2b12082e1bd9e6d173/kiwisolver-1.5.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:daae526907e262de627d8f70058a0f64acc9e2641c164c99c8f594b34a799a16", size = 77603, upload-time = "2026-03-09T13:15:50.945Z" }, - { url = "https://files.pythonhosted.org/packages/0a/dd/8050c947d435c8d4bc94e3252f4d8bb8a76cfb424f043a8680be637a57f1/kiwisolver-1.5.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:59cd8683f575d96df5bb48f6add94afc055012c29e28124fcae2b63661b9efb1", size = 73558, upload-time = "2026-03-09T13:15:52.112Z" }, ] [[package]] @@ -317,8 +261,7 @@ dependencies = [ { name = "cycler" }, { name = "fonttools" }, { name = "kiwisolver" }, - { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, - { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "numpy" }, { name = "packaging" }, { name = "pillow" }, { name = "pyparsing" }, @@ -326,13 +269,6 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/1f/24/080c99d223d158d3a8902769269ab6da5b50f7a0e6e072513907e02b7a6c/matplotlib-3.11.0.tar.gz", hash = "sha256:68c0c7be01b30dcca3638934f7f591df73401235cbdbf0d1ab1c71e7db7f8b57", size = 33251176, upload-time = "2026-06-12T02:29:15.508Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ce/a2/78f662f1b18968531f67d3fcde1b7ea8496920bacd4f16ddb5b79d112e46/matplotlib-3.11.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:f857524b442f0f36e641868ce2171aafa88cb0bc0644f4e1d8a5df9b32649fef", size = 9436261, upload-time = "2026-06-12T02:27:34.161Z" }, - { url = "https://files.pythonhosted.org/packages/5e/92/044f1de43901310202f4c79acf4f141be53b2ca8d8380e2fcefb3d523a75/matplotlib-3.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:57baa92fdc82948ed716eae6d2579d4d6f40965cd8d2f416755b4a72580a3233", size = 9264669, upload-time = "2026-06-12T02:27:37.413Z" }, - { url = "https://files.pythonhosted.org/packages/53/f4/f0b4f9ba7ec14a7af8151f3ad71ecfe3561e6ba38cfab1db3681ba4ca112/matplotlib-3.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:630eee0e67d35cce2019a0e670719f4816e3b86aff0fa72729f6c69786fceb45", size = 10021076, upload-time = "2026-06-12T02:27:39.926Z" }, - { url = "https://files.pythonhosted.org/packages/d7/33/4d679c6dcd594a156542080ac907ddccf7b09ca11655c4b28eca8e9ee5da/matplotlib-3.11.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5106c444d0bf966eee2853548c03772af4ab7199118e086c62fbac8ccb07c055", size = 10828999, upload-time = "2026-06-12T02:27:42.433Z" }, - { url = "https://files.pythonhosted.org/packages/07/74/0a3683802037d8cd013144d77c247219b47f2aabace6fdde74faa12bacf7/matplotlib-3.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4d7aea652b58e686444079be3376ef546bffa1eee9b9bb9c472b9fcf6cf410d3", size = 10913103, upload-time = "2026-06-12T02:27:44.827Z" }, - { url = "https://files.pythonhosted.org/packages/d0/9f/970fcbf381e82ec66fdf5da8ea76e2e9240f61a24011ce9fd1d42c37ac2d/matplotlib-3.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:70a5b3e9a5dab708c0f039709ae7c68d5b4d254e291ef76492cdba230c8bb5e4", size = 9310945, upload-time = "2026-06-12T02:27:46.867Z" }, - { url = "https://files.pythonhosted.org/packages/14/4e/6e7cfed23611265ded53806852343b5c59339e506e84c474a9b5afc3b249/matplotlib-3.11.0-cp311-cp311-win_arm64.whl", hash = "sha256:3d68266213e73823ac3be90615bab0cf31f88851e114cdb1dd25dacf3b01e1a7", size = 8999304, upload-time = "2026-06-12T02:27:48.798Z" }, { url = "https://files.pythonhosted.org/packages/da/17/f5276b496c61477a6c4fc5e7401f4bfe1c2e5ef7c6cd67896f2ade3809cb/matplotlib-3.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:06b5872e9cf11adc8f589ded3ce11bc3e1061ad498259664fabc1f6615beb918", size = 9449976, upload-time = "2026-06-12T02:27:50.989Z" }, { url = "https://files.pythonhosted.org/packages/82/34/bdd77418adb2178a1d59f044bd67bfebb115896e91b840b8a197eb3f4f4e/matplotlib-3.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0515d495124be3124340e59f164d901ed4484e2246a5b74cfa483cac3b80bd97", size = 9279307, upload-time = "2026-06-12T02:27:53.247Z" }, { url = "https://files.pythonhosted.org/packages/94/95/7f522393c88313336b20d70fc849555757b2e5febc22b83b3a3f0fd4bce9/matplotlib-3.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:be5f93a1d21981bfb802ded0d77a0caa92d4342a47d45754fac77e314a506344", size = 10031353, upload-time = "2026-06-12T02:27:55.215Z" }, @@ -368,9 +304,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ef/f9/9b030b6088354acb0296871bb624b25befc1c42509d3c6cd17420c83a5b8/matplotlib-3.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:15b0d160079cb10699a0e98b5989c70677b2df7cacdc62af67c30f2facec46d9", size = 10939427, upload-time = "2026-06-12T02:29:02.527Z" }, { url = "https://files.pythonhosted.org/packages/59/94/6b273eaee4ee250863567d100865da61a5c1527fa67f527b7ed22e0dd29c/matplotlib-3.11.0-cp314-cp314t-win_amd64.whl", hash = "sha256:446307e6b04b57b1f1239e228a1ec2af0d589a1008cebc3dfa3f5441d095cfb6", size = 9535809, upload-time = "2026-06-12T02:29:04.994Z" }, { url = "https://files.pythonhosted.org/packages/60/95/1d36bddf2b7e2692c1540e78a6e5bc88bc1496b137e3e35a611f91b65ac3/matplotlib-3.11.0-cp314-cp314t-win_arm64.whl", hash = "sha256:652fb5696271d4c50f196d22a5ff4f8e4444c74f847423570d7dc0aa2bbd0159", size = 9209226, upload-time = "2026-06-12T02:29:07.033Z" }, - { url = "https://files.pythonhosted.org/packages/0f/c2/f5da6cd37ed6871f5c9b3c0507ddb69f14d6c36fac4541e4e0c60cb8cdfc/matplotlib-3.11.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:81ae77077a1e16d37a5b61096ccb07c8d90a99b518fa8256b8f21578932f2f62", size = 9434094, upload-time = "2026-06-12T02:29:09.135Z" }, - { url = "https://files.pythonhosted.org/packages/f8/07/56f66906e0f87a0c6d0d0acbd34dbc9432b1931d8f26ef618bd6f92932a9/matplotlib-3.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ddef37840695f5eef65f9f070fe2d2f510f584c2156203f9f622a5b0584efffd", size = 9262183, upload-time = "2026-06-12T02:29:11.283Z" }, - { url = "https://files.pythonhosted.org/packages/0c/d8/c4ecab06b7ea36a570c4f3bd2d48d1799fd5d9174470e45c2194199431e7/matplotlib-3.11.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cf662e5ac5707658cb931e19972c4bd99f7b4f8b7bf79d3c821d239fa6b71e64", size = 10015653, upload-time = "2026-06-12T02:29:13.251Z" }, ] [[package]] @@ -403,102 +336,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f4/4e/afc8c31605cb8be1d3bb4438c4d979daa104dab6306cd2b87abe9c3a7299/narwhals-2.23.0-py3-none-any.whl", hash = "sha256:769e7b9ab102c93d8fa019f6b4cd1a657909b04a20bf6210e5a35aae06814ae9", size = 458938, upload-time = "2026-07-01T11:21:51.677Z" }, ] -[[package]] -name = "numpy" -version = "2.4.6" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.12' and sys_platform == 'win32'", - "python_full_version < '3.12' and sys_platform == 'emscripten'", - "python_full_version < '3.12' and sys_platform != 'emscripten' and sys_platform != 'win32'", -] -sdist = { url = "https://files.pythonhosted.org/packages/d0/ad/fed0499ce6a338d2a03ebae59cd15093910c8875328855781952abf6c2fe/numpy-2.4.6.tar.gz", hash = "sha256:f3a3570c4a2a16746ac2c31a7c7c7b0c186b95ce902e33db6f28094ed7387dda", size = 20735807, upload-time = "2026-05-18T23:37:14.07Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b3/49/ec46835a70be8fa6446c495126ac84fdb28cb2558e1620ffb87a10c8b64c/numpy-2.4.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0280e0356c0829a18d9de1cb7eee50ec22ca639878d7240307ca0943d73cd2c4", size = 16969194, upload-time = "2026-05-18T23:33:13.503Z" }, - { url = "https://files.pythonhosted.org/packages/0e/0d/f5957185c0ee2f3e12f78715aa9e3b353fd83633316c8532b38faa37e3f6/numpy-2.4.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:110f8b71aacb688ec69062bb7f6938a0f8acb01b7c1c4beb453c65b6d234584d", size = 14964111, upload-time = "2026-05-18T23:33:17.795Z" }, - { url = "https://files.pythonhosted.org/packages/ad/40/40a40ee0ddf7ceb782c49af278894b686e586d65d8c1889c8b5da01a3d7d/numpy-2.4.6-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:4cfe66903cc32a9921a6733d96b19bb6abf310397581bbad89c228f5abaf0ee8", size = 5469159, upload-time = "2026-05-18T23:33:20.654Z" }, - { url = "https://files.pythonhosted.org/packages/63/13/f9a8046535cb21deae82f8d03de9617e08882d274fad2539630761888228/numpy-2.4.6-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8155154c7c691289fe18f510b5d4657c68c67989f293f0535a91360392ff6538", size = 6798936, upload-time = "2026-05-18T23:33:22.987Z" }, - { url = "https://files.pythonhosted.org/packages/33/a8/6fa8c1a345a8c85dbb21932c447bee07c30a2c2a3f31e369c0a84b300147/numpy-2.4.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ab0a9c4ffb1a6d95ef519fe4247dba8eb6b18ad93999f76b7f657039acabd47", size = 15966692, upload-time = "2026-05-18T23:33:26.62Z" }, - { url = "https://files.pythonhosted.org/packages/02/03/74fe2a4cb3817d94d86402f2506554130a2f01414e299b5a843e5a8a957f/numpy-2.4.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:89cd468399cfd2504718f0ba50e410dca55a170b61a02ad92bb18c8a65186e93", size = 16918164, upload-time = "2026-05-18T23:33:29.955Z" }, - { url = "https://files.pythonhosted.org/packages/c5/80/3615be3313f7e7696609bc194b9f0101da809df79e859bdb84e0cd043f46/numpy-2.4.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c2d37ab77531417474168eb79d6d80b14f821a966818505d03013d0833edb7a8", size = 17322877, upload-time = "2026-05-18T23:33:34.724Z" }, - { url = "https://files.pythonhosted.org/packages/ca/ac/a691e0fe2675e370d0e08ff905adc49a1c8830e8cae03efe4477e92cd55d/numpy-2.4.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f407cb6b8e9d6d8c626bc73c945db1706035af8fd632295547bf1c9e46d092d6", size = 18651487, upload-time = "2026-05-18T23:33:38.217Z" }, - { url = "https://files.pythonhosted.org/packages/15/a7/9bc1cd626d7bf6869bfedf27b91b6ab5dd607758bf8e959d6fa80c6a59cb/numpy-2.4.6-cp311-cp311-win32.whl", hash = "sha256:ddea102b48f9e339f3948bf22040944184627a30fdf7f858667673b9c5f033c8", size = 6233945, upload-time = "2026-05-18T23:33:41.331Z" }, - { url = "https://files.pythonhosted.org/packages/c5/31/7fc6239c12bce7e931463251cca4426c465e1876ba3cc785402ef4dd8f4e/numpy-2.4.6-cp311-cp311-win_amd64.whl", hash = "sha256:1e254a00cdf42b1e4d5b3d68d33af63268d41340d8885df2ab6470f2e1500147", size = 12608406, upload-time = "2026-05-18T23:33:44.131Z" }, - { url = "https://files.pythonhosted.org/packages/27/83/140f85a466595a16382996a1bf06b2b54bcd597488921b0c9daaeeda72af/numpy-2.4.6-cp311-cp311-win_arm64.whl", hash = "sha256:ed9749eef4cbd126da3dc1d6bcb3a57f5eb7ac6a6484146bdbf743f552dfc577", size = 10479528, upload-time = "2026-05-18T23:33:50.725Z" }, - { url = "https://files.pythonhosted.org/packages/95/2a/3d7b5ac8aac24feaf9ad7ed58f45b0bbc06d37e4338ae84c9f2298b570f9/numpy-2.4.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:001fbb8e08d942dd57599e781f2472269ee7f2755fae407b4f67b2f0b17da3f1", size = 16689119, upload-time = "2026-05-18T23:33:54.065Z" }, - { url = "https://files.pythonhosted.org/packages/ea/12/92c4c131527599e8288d6918e888d88726f84d805d784b771f32408aeaef/numpy-2.4.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ebfb099f8dcf083deef3ac1ca4c1503f387cf76296fcb3816b66f5ecb5f54fdb", size = 14699246, upload-time = "2026-05-18T23:33:57.621Z" }, - { url = "https://files.pythonhosted.org/packages/ad/fe/c0a6b7b2ca128a8fb228575147073b660656734b8ebe4d76c8fd748dcc79/numpy-2.4.6-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:3213d622a0283a39a93d188f3cf72b26862df52fbb4ca3697f51705016523d41", size = 5204410, upload-time = "2026-05-18T23:34:00.302Z" }, - { url = "https://files.pythonhosted.org/packages/f3/d4/9770d14ba719432bb90a421bfd443872ed0f70f7264b64bec12ea363d5fd/numpy-2.4.6-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:357cc07a6d7b0b182ff02249616a03742827ebb1277546b5c7cd7f7620a45698", size = 6551240, upload-time = "2026-05-18T23:34:02.852Z" }, - { url = "https://files.pythonhosted.org/packages/c9/c6/50a46a6205feba2343f1d6d17438107c5dc491ed1c736e6ea68689fd906b/numpy-2.4.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f9fb9157b4ce2971008323afe46053787b526ef624fea915b261468a8421a0f", size = 15671012, upload-time = "2026-05-18T23:34:05.485Z" }, - { url = "https://files.pythonhosted.org/packages/99/60/14115e6364fa676c5397c2ad3004e527e9aa487abf5d0706ec81bbd08529/numpy-2.4.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:90f9849678c75fe7afa2d348ac842c168b0a4d3d61919687216dfc547976d853", size = 16645538, upload-time = "2026-05-18T23:34:09.265Z" }, - { url = "https://files.pythonhosted.org/packages/ae/c5/693cbe59e57db94d2231fa519ca3978dc9e19da5a8f088588f5c6e947ff2/numpy-2.4.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c1a2af6c6ef86344a6b0db6b97834208bf598db514f2b155042439b62605601a", size = 17020706, upload-time = "2026-05-18T23:34:13.053Z" }, - { url = "https://files.pythonhosted.org/packages/ef/fc/85b7c4eff9b4966ade25c2273cf7e7012e92366c032058653934b37de044/numpy-2.4.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e5805d5a22fd19c8ccff10a9561f9df94436b0545619ea579db2d3c35294bce2", size = 18368541, upload-time = "2026-05-18T23:34:17.024Z" }, - { url = "https://files.pythonhosted.org/packages/f6/81/e1b27545deedce7f4a0b348618c6b62d74e36a4dc9ccd42f3eb2f85eee32/numpy-2.4.6-cp312-cp312-win32.whl", hash = "sha256:e3eeb0aabd6bd5ce64faae67e9935203a6991b4bc2a485a767fbafb2c5125f45", size = 5962825, upload-time = "2026-05-18T23:34:20.3Z" }, - { url = "https://files.pythonhosted.org/packages/ab/ca/feab00bd44aa5fe1ad2c18f08b4d3bb92e26484b0b1d1443897809ed528c/numpy-2.4.6-cp312-cp312-win_amd64.whl", hash = "sha256:d8e8286dd7cea7895157318d1b91cdacac64c479f3cbc8dce548331728484751", size = 12321687, upload-time = "2026-05-18T23:34:23.095Z" }, - { url = "https://files.pythonhosted.org/packages/63/cf/5a6d34850a39d1093558564f77ee8e8e0bee5061151b8f05a55711001ec7/numpy-2.4.6-cp312-cp312-win_arm64.whl", hash = "sha256:4081eb135ac24158bd51cdfbef16f1c64df7063b1143f24731387137c092bec8", size = 10221482, upload-time = "2026-05-18T23:34:25.876Z" }, - { url = "https://files.pythonhosted.org/packages/fb/82/bdab26d7438c6791ca31b7c024ca37c1eab8b726ba236129005cd4a06e45/numpy-2.4.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:511dbaf848decaaaf4b4ca48032619fb3138710c4bf7da7617765edad1ef96b0", size = 16684648, upload-time = "2026-05-18T23:34:29.41Z" }, - { url = "https://files.pythonhosted.org/packages/1b/30/a80189bcc7f5e4258b3fbc3968d909d1756f54d023299ecc39ad6fdb9ef8/numpy-2.4.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:bf162abab1c1a736333192707cef898e735a5ca00f38f27eeedf44b39d9e85eb", size = 14693902, upload-time = "2026-05-18T23:34:33.013Z" }, - { url = "https://files.pythonhosted.org/packages/97/12/70b5d0d7c15e1ebb8a6a84a8caa1d19e181d84fb58bb6d70aca29099dec1/numpy-2.4.6-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:043191bfa8eab18c776647b62723ac9dddece59743b13f49b2016094129c2b3f", size = 5198992, upload-time = "2026-05-18T23:34:36.132Z" }, - { url = "https://files.pythonhosted.org/packages/ba/8c/ebd2a8f8a83541f8d38cc5667e8c2b69cecfd30da6e45693e8158857d44b/numpy-2.4.6-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:6180d8b35af935aed8ece3a85e0a43f87393ae0ac87c8d2c8bd2c993f7270ef3", size = 6546944, upload-time = "2026-05-18T23:34:38.484Z" }, - { url = "https://files.pythonhosted.org/packages/bb/c5/7b863a97a91671a0338f4253bd3b5a3d3852f0692dae91711c9f4a10e787/numpy-2.4.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72fbe16c6fac95aedf5937fa873445cec2110be35d8a4e9433d7501fd98dae6b", size = 15669392, upload-time = "2026-05-18T23:34:41.257Z" }, - { url = "https://files.pythonhosted.org/packages/a5/9d/3584b9984ca4c047aea75214ce1a4c4c73d849bd71b604264b7f5653f8a8/numpy-2.4.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a7830bab239b79cda9c08c2da014761cafb48da6150e1da17ac06283f43b6089", size = 16633220, upload-time = "2026-05-18T23:34:45.075Z" }, - { url = "https://files.pythonhosted.org/packages/05/ae/7c67fba23bd98caec7c99261f3a16072ade14813486b0282cb29846de832/numpy-2.4.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ef4aea96ce4d3b074422cb4f2f64e216bf9e213004bb58ecfdf50ea02ea8eb9a", size = 17020800, upload-time = "2026-05-18T23:34:49.065Z" }, - { url = "https://files.pythonhosted.org/packages/d9/5d/3b6725cb31d983c5e66916f5d36f6d7e5521129e4c4404d64f918292a5b6/numpy-2.4.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:dfa20cc6ca228e6b155b11da03825975ce66aea520985dbbddf0f2a5a495c605", size = 18357600, upload-time = "2026-05-18T23:34:52.709Z" }, - { url = "https://files.pythonhosted.org/packages/f7/da/2ccc6c2fe8898dee01d90c75c5f5f914a23daf99e3e0f59516a08760c8b5/numpy-2.4.6-cp313-cp313-win32.whl", hash = "sha256:56b39e5e0622a09a25bf5baf62f4bcf0cb8a41ae6e2819cf49bbc5a74c083f91", size = 5961134, upload-time = "2026-05-18T23:34:55.618Z" }, - { url = "https://files.pythonhosted.org/packages/b5/cd/9cc4dc876fb065d5c220aae4d5e14826b2715331bb7618ce1fb07a679d99/numpy-2.4.6-cp313-cp313-win_amd64.whl", hash = "sha256:c4fc99836233ea196540b17ab0983aff60ed07941751930f5f4d05bc3b3b7359", size = 12318598, upload-time = "2026-05-18T23:34:58.928Z" }, - { url = "https://files.pythonhosted.org/packages/39/1e/c0bcba1f8694116485fe28fd1be698c278fcda4141c5b0e53a2aed8b12a8/numpy-2.4.6-cp313-cp313-win_arm64.whl", hash = "sha256:a7c711e21628b52034bb5ab8d1bce291f752fcc5e92accc615778acee1ff4778", size = 10222272, upload-time = "2026-05-18T23:35:02.167Z" }, - { url = "https://files.pythonhosted.org/packages/63/6d/cc5619247c8f4204e507f5883528372e4ac4bb189e579fb859a12e480b1f/numpy-2.4.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:112b06a867b235ef466ed3508ddf0238050df9c727cafb5301ac385b899189a1", size = 14821197, upload-time = "2026-05-18T23:35:05.468Z" }, - { url = "https://files.pythonhosted.org/packages/00/58/f1c39161c87d9e9bed660f1ed4bafc0e403d5ec9650b6dd77aead07d489b/numpy-2.4.6-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:eaf7fa2de5c0be8ae6ff8e9bea2ccd725e980541244521d8d4b5f3354a27babe", size = 5326287, upload-time = "2026-05-18T23:35:08.693Z" }, - { url = "https://files.pythonhosted.org/packages/af/57/3917ab0fd97f271a8694513581b8a36c655f111c446852c302f04ccdb6fc/numpy-2.4.6-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:7265a2f3d436e54ef9f2b52b5c937e6be778781bd97a590319d7348f1c1ca997", size = 6646763, upload-time = "2026-05-18T23:35:11.459Z" }, - { url = "https://files.pythonhosted.org/packages/eb/0f/037e64c494b67581ae18193d770adef354c41f3f2c8ebf865602d949bf8f/numpy-2.4.6-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f74a575920ab21fe304421a3fc28793d82e299cae9eccb37084e9fc7f3617c20", size = 15728070, upload-time = "2026-05-18T23:35:14.79Z" }, - { url = "https://files.pythonhosted.org/packages/21/a6/5d2bae9c9542eb4df16dc9c46dc79c186e9bad53805dfa5399a6023c6db0/numpy-2.4.6-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ede83e07a75dd06bc501566c1eca2afc0d61677c1472ac9ad93fdee6e638a48d", size = 16681752, upload-time = "2026-05-18T23:35:18.836Z" }, - { url = "https://files.pythonhosted.org/packages/92/14/23d1dfb410ae362cd59ce53e936b1513d545eb40db3949ced632e19a459e/numpy-2.4.6-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:68bb27509ac1b9a3443094260f6326150663b06abe40b73a2f81160623da5b67", size = 17086024, upload-time = "2026-05-18T23:35:22.52Z" }, - { url = "https://files.pythonhosted.org/packages/4b/6e/23595a2c642cdf3bc567877064bdd7f91c8b0038a4453cf2daf7248eafe9/numpy-2.4.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a0df0043bdb289bde1f62da130d20df23d58b45429f752bc7a8fc5325a225ecd", size = 18403398, upload-time = "2026-05-18T23:35:26.398Z" }, - { url = "https://files.pythonhosted.org/packages/8a/90/0ac3bc947217e66dec77e7cbc6a1979d1af70b6461b82f620d3bccd5e4c8/numpy-2.4.6-cp313-cp313t-win32.whl", hash = "sha256:29a287e0cf63ff528da061de6b9f64a4618da591ca1046aafc54062e40ca7eab", size = 6084971, upload-time = "2026-05-18T23:35:29.387Z" }, - { url = "https://files.pythonhosted.org/packages/77/71/5673e351671a1d2bd6063b91b44f70c0affea7d1516fa7a6572941ba4aa1/numpy-2.4.6-cp313-cp313t-win_amd64.whl", hash = "sha256:25c692919ac5a01f170a3bfcd62d745b24fd095c353d50812637d6fcab442e75", size = 12458532, upload-time = "2026-05-18T23:35:32.175Z" }, - { url = "https://files.pythonhosted.org/packages/3f/88/19d3503c5046e688f049274b27a3ef3d771152fa80d3ba3d01a3dff61abe/numpy-2.4.6-cp313-cp313t-win_arm64.whl", hash = "sha256:1e978ec1e8bd0e0e4de6bb75de9d30cbb74db6b6a2bb727618613703ca0167dd", size = 10291881, upload-time = "2026-05-18T23:35:35.465Z" }, - { url = "https://files.pythonhosted.org/packages/f8/91/3ab2044d05fd16d343c5ac2e69b127f1b2854040dd20b193257c78028bd3/numpy-2.4.6-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:06ca2f61ec4385a07a6977c55ba998a4466c123642b4a32694d3128fce18c079", size = 16683458, upload-time = "2026-05-18T23:35:38.353Z" }, - { url = "https://files.pythonhosted.org/packages/8e/62/764ce66fa4147ae6d73071a3abf804ffe606f174618697c571acdf26a7c9/numpy-2.4.6-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:38efbc8de75c7a0fc1ac190162d892787f3f47b57cc291231aafee36b80982b7", size = 14704559, upload-time = "2026-05-18T23:35:42.14Z" }, - { url = "https://files.pythonhosted.org/packages/60/61/23f27c172f022e04025b7dc2367f4d63c1a398120607ec896228649a6f48/numpy-2.4.6-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:d581b735e177fdcdce6fed8e7e8880a3fb6ee4e3653a3ac6af01c6f4c03effc5", size = 5209716, upload-time = "2026-05-18T23:35:45.377Z" }, - { url = "https://files.pythonhosted.org/packages/03/71/21cf70dc6ea3e3acb95fc53a265b2fc248b981f0194ceb5b475271b8809d/numpy-2.4.6-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:0a041d3d761dc3c35cc56ce0351506a02bcbc25f7b169f652435141a17db9096", size = 6543947, upload-time = "2026-05-18T23:35:47.926Z" }, - { url = "https://files.pythonhosted.org/packages/d5/91/64288395ee1799bd2e0b04a305dce9666da90c961e1f3fe982a05ee1c036/numpy-2.4.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40fdc1ae7125e518ea98e53e69a4ebc27e1fd50510c47b7ea130cf21e5e1d42b", size = 15685197, upload-time = "2026-05-18T23:35:50.863Z" }, - { url = "https://files.pythonhosted.org/packages/f3/eb/ebffaa97dc55502df69584a8f0dcf07f69a3e0b3e2323670a2722db9aa39/numpy-2.4.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a2c306dea656c12c68f51f4cea133cbe78ca7435eb28c735eac1d3ebe73be6e8", size = 16638245, upload-time = "2026-05-18T23:35:54.752Z" }, - { url = "https://files.pythonhosted.org/packages/b8/0b/54f9da33128d7e350fab89c7455902eeae70349ee52bddb448dc4a576f45/numpy-2.4.6-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:33111801a01c12a8a1e3721f0a9232f8cfc8ae2c6b7098167e6f623c6073f402", size = 17036587, upload-time = "2026-05-18T23:35:58.355Z" }, - { url = "https://files.pythonhosted.org/packages/b6/f0/fdebc1052db1cc37c64beb22072d67cd6d1c71adca1299f53dec2b5e20d3/numpy-2.4.6-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:ae506e6902902557576a26ff33eda8695e7ecb3cb36c3b573a0765dee114ebdb", size = 18363226, upload-time = "2026-05-18T23:36:02.845Z" }, - { url = "https://files.pythonhosted.org/packages/aa/b4/298628d98c72b57e57f7165ae6a481a1deaf6f3c28262a6e4c739c275930/numpy-2.4.6-cp314-cp314-win32.whl", hash = "sha256:aaf159caa35993cb1f56fb9b8e4610d35758e7ca005412eb1daa856a78c9c4b1", size = 6010196, upload-time = "2026-05-18T23:36:05.92Z" }, - { url = "https://files.pythonhosted.org/packages/df/ac/46de6dda46478f7942f839e094970be2d4a861e005c4b3bf07c92e291a09/numpy-2.4.6-cp314-cp314-win_amd64.whl", hash = "sha256:b507f5c4c1d508876d1819b6bf9a49d365b96320b5d4993426b33a23ca4b8261", size = 12450334, upload-time = "2026-05-18T23:36:09.107Z" }, - { url = "https://files.pythonhosted.org/packages/78/92/b8b798ac784102c0da830d2257d59358e3d3d90d1e2b3f2575dad976c5cf/numpy-2.4.6-cp314-cp314-win_arm64.whl", hash = "sha256:6f41ae150c4e32db4f3310cdaf64b1593a03dbabe29eec77fc9b50fe64061df6", size = 10495678, upload-time = "2026-05-18T23:36:12.766Z" }, - { url = "https://files.pythonhosted.org/packages/30/34/ec28d1aa8115971537c01469ab2011ee96827930f0a124de1000cc2a7ed7/numpy-2.4.6-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ece3d2cfe132e7d51f44a832b303895e6f2d499c5e74dfbdb06ee246147a304a", size = 14823672, upload-time = "2026-05-18T23:36:16.473Z" }, - { url = "https://files.pythonhosted.org/packages/16/bd/f6d1fede4e54e8042a7ff97bb495510f3c220f94bcd9e8b228e87c92cc0d/numpy-2.4.6-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:e3e5193ef5a3dc73bceee50f7fdc2c90dbb76c42df8d8fae3d1067a583df579e", size = 5328731, upload-time = "2026-05-18T23:36:19.767Z" }, - { url = "https://files.pythonhosted.org/packages/f4/f0/e105b9e2fd728a9910103884decd6951d9dd73896b914a98d9a231de02ee/numpy-2.4.6-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:17f9ade344e7d9b464a084d69bcf18fc691cb1db67c62ed80820bf4926d78f0e", size = 6649805, upload-time = "2026-05-18T23:36:22.266Z" }, - { url = "https://files.pythonhosted.org/packages/82/dd/1206a7ca6ab15e3f02069707ca96222e202af681bb73756da7527f3cb837/numpy-2.4.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9cd5ffd25db4e7ba6a375693b3fc0fc1791ec636c17db3720da19bde7180ec43", size = 15730496, upload-time = "2026-05-18T23:36:25.713Z" }, - { url = "https://files.pythonhosted.org/packages/51/e7/38d3ea825dcab85a591734decb2f6c67caa7c8367d374df1a1c3842f9b07/numpy-2.4.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7d92c3819208a60205a12a245c91ad70cb0a85336659b19b834205573ac8456e", size = 16679616, upload-time = "2026-05-18T23:36:29.652Z" }, - { url = "https://files.pythonhosted.org/packages/93/b7/caabfdf53edf663e0b4eb74d7d405d83baef09eb5e83bcd32d601d72b93e/numpy-2.4.6-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e85b752a1e912b70eaad4fafbd4d1238007ab221de2009b9a2f5ae7461239895", size = 17085145, upload-time = "2026-05-18T23:36:33.449Z" }, - { url = "https://files.pythonhosted.org/packages/f9/45/68d7c33a6bcf3e5aa3bdbd57a367e6f615286dfd6482f97e8ffeb734306e/numpy-2.4.6-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:29cb7f67d10b479ff07c17d33e39f78c07f71c40ef30d63c153d340e96cd3fb4", size = 18403813, upload-time = "2026-05-18T23:36:37.369Z" }, - { url = "https://files.pythonhosted.org/packages/9c/50/0753655aa844c99cd9e018aacf76f130f1bd81d881bb74bc0aef5d73a8ba/numpy-2.4.6-cp314-cp314t-win32.whl", hash = "sha256:260a5d70215b61ab4fadf5c7baacd64821842975eea312125ed3c39a6391b063", size = 6156982, upload-time = "2026-05-18T23:36:40.817Z" }, - { url = "https://files.pythonhosted.org/packages/b2/d4/7c67becf668f973cb490cec3e98dfd799d866f9c989a54d355672cfa0db6/numpy-2.4.6-cp314-cp314t-win_amd64.whl", hash = "sha256:81a1cca95ed5bb92aa8b10dd2cdc9a0d3853a50fad926c28b5d7e8ea54389627", size = 12638908, upload-time = "2026-05-18T23:36:43.996Z" }, - { url = "https://files.pythonhosted.org/packages/43/bb/e1c71a4295b1b1d1393d50dbb4f2a36283c6859d9d3892e84f00ec5a91d5/numpy-2.4.6-cp314-cp314t-win_arm64.whl", hash = "sha256:0c9136e14ed34a9e343a31c533d78a9813a69a3148332bce5e9821cb2f996e66", size = 10565867, upload-time = "2026-05-18T23:36:47.114Z" }, - { url = "https://files.pythonhosted.org/packages/de/12/b422cc84439adc0d00de605bf4a308890ae5c26f2c71fbd73e5d08fbb0dd/numpy-2.4.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:55cced7c52e981362f708ad635198e97a752dfba412cc03c23bbf3bd8d5cd662", size = 16847511, upload-time = "2026-05-18T23:36:50.673Z" }, - { url = "https://files.pythonhosted.org/packages/44/53/f481bef68011740f8849418d82db07230e825013f31f4eef5ba5b805316a/numpy-2.4.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d6da64deb6b8ed903e7560180a92f2d804ee1ba5eeb849ac2748b8c1aba1f6d7", size = 14889064, upload-time = "2026-05-18T23:36:53.879Z" }, - { url = "https://files.pythonhosted.org/packages/7f/57/42ed575c10ced8af951d426bc4e1f8aff16fd851db33f067036215a7f860/numpy-2.4.6-pp311-pypy311_pp73-macosx_14_0_arm64.whl", hash = "sha256:68a5124b13fa6cc2086764a20005d30bc0548146f7f5322f02fce212ca14317f", size = 5394157, upload-time = "2026-05-18T23:36:57.194Z" }, - { url = "https://files.pythonhosted.org/packages/6a/ef/f66cc724fcc36c1e364c67f51ae9146090b8b584f27d58b97fdae3edd737/numpy-2.4.6-pp311-pypy311_pp73-macosx_14_0_x86_64.whl", hash = "sha256:948424b06129ce883307e8cff868c31396d8dc7630a59c61d70d98dbe70f222c", size = 6708728, upload-time = "2026-05-18T23:36:59.575Z" }, - { url = "https://files.pythonhosted.org/packages/1a/9c/c531f2293b91265d8b48e9b329f54fdd7ffae73cb4134ea10cca4237e9cc/numpy-2.4.6-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5dbbdb29840ca3d91ee0fece42fc29278886d908280bfec0a5846c6f901a3eb0", size = 15798374, upload-time = "2026-05-18T23:37:02.674Z" }, - { url = "https://files.pythonhosted.org/packages/1a/b0/413077f6b1153ed3cba361401c6783bbad6114804a000cc22eb71c13e190/numpy-2.4.6-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8ad03c0965fb3c692200e74d458ca28c1dbb4ce96f9a479a8aa041ad5fabca02", size = 16747286, upload-time = "2026-05-18T23:37:06.327Z" }, - { url = "https://files.pythonhosted.org/packages/15/ce/e5ec180bc41812edcd8daeb8639d205622c0e8c02259d8ab25a0201b3c2a/numpy-2.4.6-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:2803abfebfc990042cd494d8ce2d5f82e9d847af6d35ec486923aa19dbad5e73", size = 12504263, upload-time = "2026-05-18T23:37:09.715Z" }, -] - [[package]] name = "numpy" version = "2.5.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", -] sdist = { url = "https://files.pythonhosted.org/packages/e7/05/3d27272d30698dc0ecb7fdfaa41ad70303b444f81722bb99bce1d818638a/numpy-2.5.0.tar.gz", hash = "sha256:5a129578019311b6e56bdd714250f19b518f7dceeeb8d1af5490f4942d3f891c", size = 20652461, upload-time = "2026-06-21T20:57:51.95Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/fa/0a/11486d02add7b1384dff7374d124b1cfbb0ee864dcc9f6a2c0380638cf84/numpy-2.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:489780423903667933b4ed6197b6ec3b75ea5dd17d1d8f0f38d798feb6921561", size = 16789987, upload-time = "2026-06-21T20:56:16.657Z" }, @@ -551,8 +392,7 @@ name = "numpydantic" version = "1.10.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, - { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "numpy" }, { name = "pydantic" }, ] sdist = { url = "https://files.pythonhosted.org/packages/95/5c/0cfed22c6483338c73d2faf182d863c47836e5f8f34e65b70aea345e7b72/numpydantic-1.10.0.tar.gz", hash = "sha256:a17d5ccc3b893c4a2e539c81c2f18960d70884ad7fcaa09c9eb56a95e8daf4a3", size = 98771, upload-time = "2026-06-22T22:04:46.251Z" } @@ -575,15 +415,6 @@ version = "12.3.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/1c/3d/bb7fca845737cf9d7dbde16ed1843984665ff2e0a518f5db43e77ec540b9/pillow-12.3.0.tar.gz", hash = "sha256:3b8182a766685eaa002637e28b4ec8d6b18819a0c71f579bf0dbaa5830297cce", size = 47025035, upload-time = "2026-07-01T11:56:38.965Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fb/c8/0a78b0e02d7ac54bc03e5321c9220da52f0c2ea83b21f7c40e7f3169c502/pillow-12.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:00808c5e14ef63ac5161091d242999076604ff74b883423a11e5d7bbb38bf756", size = 5392415, upload-time = "2026-07-01T11:53:47.162Z" }, - { url = "https://files.pythonhosted.org/packages/b2/5b/a02d30018abd97ced9f5a6c63d28597694a00d066516b9c1c6de45859fc9/pillow-12.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:37d6d0a00072fd2948eb22bce7e1475f34569d90c87c59f7a2ec59541b77f7a6", size = 4785266, upload-time = "2026-07-01T11:53:49.079Z" }, - { url = "https://files.pythonhosted.org/packages/c8/98/766667a4be768150a202836acd9fad19c06824ca86c4286d3cf6b274964e/pillow-12.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bcb46e2f9feff8d06323983bd83ed00c201fdcab3d74973e7072a889b3979fcd", size = 6263814, upload-time = "2026-07-01T11:53:51.32Z" }, - { url = "https://files.pythonhosted.org/packages/3b/2d/ede717bc1144f63886c21fd349bb95860b0d1a21149ff16f2bb362b612b6/pillow-12.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:23d27a3e0307ec2244cc51e7287b919aa68d097504ebe19df4e76a98a3eea5bd", size = 6934408, upload-time = "2026-07-01T11:53:53.487Z" }, - { url = "https://files.pythonhosted.org/packages/a3/48/9c58b685e69d49c31af6c8eb9012055fab7e665785165c84796e2c73ce72/pillow-12.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4f883547d4b7f0495ebe7056b0cc2aea76094e7a4abc8e933540f3271df27d9c", size = 6337160, upload-time = "2026-07-01T11:53:55.457Z" }, - { url = "https://files.pythonhosted.org/packages/ff/fa/dc2a5c0ba6df93f67c31d34b808b7ce440b40cdbf96f0b81cde1d1e6fa93/pillow-12.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:236ff70b9312fb68943c703aa842ca6a758abfa45ac187a5e7c1452e96ef72b5", size = 7045172, upload-time = "2026-07-01T11:53:57.736Z" }, - { url = "https://files.pythonhosted.org/packages/86/a5/444817a4d4c4c2417df00513086ca196f388d8f9ef40c2e4ccd1ad1af54b/pillow-12.3.0-cp311-cp311-win32.whl", hash = "sha256:10e41f0fbf1eec8cfd234b8fe17a4caac7c9d0db4c204d3c173a8f9f6ef3232b", size = 6472232, upload-time = "2026-07-01T11:53:59.767Z" }, - { url = "https://files.pythonhosted.org/packages/63/c6/4bad1b18d132a50b27e1365e1ab163616f7a5bb56d330f66f9d1d9d4f9d4/pillow-12.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:8e95e1385e4998ae9694eeaa4730ba5457ff61185b3a55e2e7bea0880aef452a", size = 7233653, upload-time = "2026-07-01T11:54:02.066Z" }, - { url = "https://files.pythonhosted.org/packages/fd/16/00f91ab7760dc842f5aad55217e80fc4a7067a0604535249bc8a2d6d9870/pillow-12.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:ebaea975e03d3141d9d3a507df75c9b3ec90fa9d2ffd07567b3a978d9d790b26", size = 2568195, upload-time = "2026-07-01T11:54:04.622Z" }, { url = "https://files.pythonhosted.org/packages/37/bf/fb3ebff8ddcb76aac5a01389251bbbb9519922a9b520d8247c1ca864a25d/pillow-12.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ba09209fbe443b4acccebe845d8a138b89a8f4fbaeedd44953490b5315d5e965", size = 5345969, upload-time = "2026-07-01T11:54:06.397Z" }, { url = "https://files.pythonhosted.org/packages/d8/66/9a386a92561f402389a4fc70c18838bf6d35eb5eb5c6850b4b2dc64f5048/pillow-12.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ffd0c5368496f41b0944be820fcb7a838aa6e623d250b01acf2643939c3f99d7", size = 4780323, upload-time = "2026-07-01T11:54:09.351Z" }, { url = "https://files.pythonhosted.org/packages/25/27/ac8f99618ffd3dde21db0f4d4b1d2ab00c0880595bfd17df103f7f39fd0c/pillow-12.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d9c7f76c0673154f044e9d78c8655fb4213f6ca31a836df48b40fe5d187717b9", size = 6266838, upload-time = "2026-07-01T11:54:11.71Z" }, @@ -647,11 +478,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/18/f0/a5595c1e8c3ae44b9828cb2f0fa8155e5095ef04d6327b8f61cf44a3df85/pillow-12.3.0-cp315-cp315t-win32.whl", hash = "sha256:1657923d2d45afb66526e5b933e5b3052e6bdea196c90d3abb2424e18c77dae8", size = 6474384, upload-time = "2026-07-01T11:56:18.855Z" }, { url = "https://files.pythonhosted.org/packages/e4/04/62bcd9f844984c5938d3b05264a61d797a29d3e0812341a8204af70bbdee/pillow-12.3.0-cp315-cp315t-win_amd64.whl", hash = "sha256:8cd2f7bdda092d99c9fc2fb7391354f306d01443d22785d0cbfafa2e2c8bb418", size = 7243537, upload-time = "2026-07-01T11:56:21.214Z" }, { url = "https://files.pythonhosted.org/packages/3d/68/1f3066acedf37673694a7141381d8f811ae97f30d34413d236abe7d489f1/pillow-12.3.0-cp315-cp315t-win_arm64.whl", hash = "sha256:06ff022112bc9cbf83b60f8e028d94ad87b60621706487e65f673de61610ab59", size = 2567491, upload-time = "2026-07-01T11:56:23.506Z" }, - { url = "https://files.pythonhosted.org/packages/75/18/2e8b40223153ccbc60df07f9e8928dc0c76202aa4e55ae9f53962b6510d6/pillow-12.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b3c777e849237620b022f7f297dd67705f9f5cf1685f09f02e46f93e92725468", size = 5302510, upload-time = "2026-07-01T11:56:25.736Z" }, - { url = "https://files.pythonhosted.org/packages/46/3e/51fabf59d5ab801ceab709453d3ab6b180083496579549de4c45ced6528a/pillow-12.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:b343699e8308bdc51978310e1c959c584e7869cc8c40780058c87da7781a1e94", size = 4736058, upload-time = "2026-07-01T11:56:28.041Z" }, - { url = "https://files.pythonhosted.org/packages/bf/20/22fe9384b7949e25fb1293bcfc84fb82590ff4ea6b37c95b24d26d793d86/pillow-12.3.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fbd139c8447d25dd750ab79ee274cc5e1fe80fc56340ab10b18a195e1b6eca3e", size = 5237776, upload-time = "2026-07-01T11:56:30.263Z" }, - { url = "https://files.pythonhosted.org/packages/08/14/f6ba68107680ffa74b39985f3f30884e41318fbc4250caa423c79b4788bb/pillow-12.3.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e7e480451b9fa137494bccd3a7d69adbe8ac65a87d97be61e11f1b1050a5bac3", size = 5860358, upload-time = "2026-07-01T11:56:32.68Z" }, - { url = "https://files.pythonhosted.org/packages/36/54/0169bc772ec491108b62f644f8ecf1fe5d8ae5ebafde2ee2142210166903/pillow-12.3.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:04f01d28a6aaff387bf842a13be313df23ba0597a44f1a976c9feb3c6ff4711a", size = 7231786, upload-time = "2026-07-01T11:56:35.046Z" }, ] [[package]] @@ -728,21 +554,6 @@ dependencies = [ ] sdist = { url = "https://files.pythonhosted.org/packages/9d/56/921726b776ace8d8f5db44c4ef961006580d91dc52b803c489fafd1aa249/pydantic_core-2.46.4.tar.gz", hash = "sha256:62f875393d7f270851f20523dd2e29f082bcc82292d66db2b64ea71f64b6e1c1", size = 471464, upload-time = "2026-05-06T13:37:06.98Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5c/fa/6d7708d2cfc1a832acb6aeb0cd16e801902df8a0f583bb3b4b527fde022e/pydantic_core-2.46.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:0e96592440881c74a213e5ad528e2b24d3d4f940de2766bed9010ab1d9e51594", size = 2111872, upload-time = "2026-05-06T13:40:27.596Z" }, - { url = "https://files.pythonhosted.org/packages/ae/6f/aa064a3e74b5745afbdf250594f38e7ead05e2d651bcb35994b9417a0d4d/pydantic_core-2.46.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0d65b8c354be7fb5f720c3caa8bc940bc2d20ce749c8e06135f07f8ed95dd7c", size = 1948255, upload-time = "2026-05-06T13:39:12.574Z" }, - { url = "https://files.pythonhosted.org/packages/43/3a/41114a9f7569b84b4d84e7a018c57c56347dac30c0d4a872946ec4e36c46/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bfb192b3f4b9e8a89b6277b6ce787564f62cfd272055f6e685726b111dc7826", size = 1972827, upload-time = "2026-05-06T13:38:19.841Z" }, - { url = "https://files.pythonhosted.org/packages/ef/25/1ab42e8048fe551934d9884e8d64daa7e990ad386f310a15981aeb6a5b08/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9037063db01f09b09e237c282b6792bd4da634b5402c4e7f0c61effed7701a04", size = 2041051, upload-time = "2026-05-06T13:38:10.447Z" }, - { url = "https://files.pythonhosted.org/packages/94/c2/1a934597ddf08da410385b3b7aae91956a5a76c635effef456074fad7e88/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc010ab034c8c7452522748bf937df58020d256ccae0874463d1f4d01758af8e", size = 2221314, upload-time = "2026-05-06T13:40:13.089Z" }, - { url = "https://files.pythonhosted.org/packages/02/6d/9e8ad178c9c4df27ad3c8f25d1fe2a7ab0d2ba0559fad4aee5d3d1f16771/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c5dac79fa1614d1e06ca695109c6105923bd9c7d1d6c918d4e637b7e6b32fd3", size = 2285146, upload-time = "2026-05-06T13:38:59.224Z" }, - { url = "https://files.pythonhosted.org/packages/80/50/540cd3aeefc041beb111125c4bff779831a2111fc6b15a9138cda277d32c/pydantic_core-2.46.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9fa868638bf362d3d138ea55829cefb3d5f4b0d7f142234382a15e2485dbec4", size = 2089685, upload-time = "2026-05-06T13:38:17.762Z" }, - { url = "https://files.pythonhosted.org/packages/6b/a4/b440ad35f05f6a38f89fa0f149accb3f0e02be94ca5e15f3c449a61b4bc9/pydantic_core-2.46.4-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:17299feefe090f2caa5b8e37222bb5f663e4935a8bfa6931d4102e5df1a9f398", size = 2115420, upload-time = "2026-05-06T13:37:58.195Z" }, - { url = "https://files.pythonhosted.org/packages/99/61/de4f55db8dfd57bfdfa9a12ec90fe1b57c4f41062f7ca86f08586b3e0ac0/pydantic_core-2.46.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4c63ebc82684aa89d9a3bcbd13d515b3be44250dc68dd3bd81526c1cb31286c3", size = 2165122, upload-time = "2026-05-06T13:37:01.167Z" }, - { url = "https://files.pythonhosted.org/packages/f7/52/7c529d7bdb2d1068bd52f51fe32572c8301f9a4febf1948f10639f1436f5/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:aaa2a54443eff1950ba5ddc6b6ccda0d9c84a364276a62f969bdf2a390650848", size = 2182573, upload-time = "2026-05-06T13:38:45.04Z" }, - { url = "https://files.pythonhosted.org/packages/37/b3/7c40325848ba78247f2812dcf9c7274e38cd801820ca6dd9fe63bcfb0eb4/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:18e5ceec2ab67e6d5f1a9085e5a24c9c4e2ac4545730bfe668680bca05e555f3", size = 2317139, upload-time = "2026-05-06T13:37:15.539Z" }, - { url = "https://files.pythonhosted.org/packages/d9/37/f913f81a657c865b75da6c0dbed79876073c2a43b5bd9edbe8da785e4d49/pydantic_core-2.46.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a0f62d0a58f4e7da165457e995725421e0064f2255d8eccebc49f41bbc23b109", size = 2360433, upload-time = "2026-05-06T13:37:30.099Z" }, - { url = "https://files.pythonhosted.org/packages/c4/67/6acaa1be2567f9256b056d8477158cac7240813956ce86e49deae8e173b4/pydantic_core-2.46.4-cp311-cp311-win32.whl", hash = "sha256:041bde0a48fd37cf71cab1c9d56d3e8625a3793fef1f7dd232b3ff37e978ecda", size = 1985513, upload-time = "2026-05-06T13:38:15.669Z" }, - { url = "https://files.pythonhosted.org/packages/aa/e6/c505f83dfeda9a2e5c995cfd872949e4d05e12f7feb3dca72f633daefa94/pydantic_core-2.46.4-cp311-cp311-win_amd64.whl", hash = "sha256:6f2eeda33a839975441c86a4119e1383c50b47faf0cbb5176985565c6bb02c33", size = 2071114, upload-time = "2026-05-06T13:40:35.416Z" }, - { url = "https://files.pythonhosted.org/packages/0f/da/7a263a96d965d9d0df5e8de8a475f33495451117035b09acb110288c381f/pydantic_core-2.46.4-cp311-cp311-win_arm64.whl", hash = "sha256:14f4c5d6db102bd796a627bbb3a17b4cf4574b9ae861d8b7c9a9661c6dd3362d", size = 2044298, upload-time = "2026-05-06T13:38:29.754Z" }, { url = "https://files.pythonhosted.org/packages/ce/8c/af022f0af448d7747c5154288d46b5f2bc5f17366eaa0e23e9aa04d59f3b/pydantic_core-2.46.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3245406455a5d98187ec35530fd772b1d799b26667980872c8d4614991e2c4a2", size = 2106158, upload-time = "2026-05-06T13:38:57.215Z" }, { url = "https://files.pythonhosted.org/packages/19/95/6195171e385007300f0f5574592e467c568becce2d937a0b6804f218bc49/pydantic_core-2.46.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:962ccbab7b642487b1d8b7df90ef677e03134cf1fd8880bf698649b22a69371f", size = 1951724, upload-time = "2026-05-06T13:37:02.697Z" }, { url = "https://files.pythonhosted.org/packages/8e/bc/f47d1ff9cbb1620e1b5b697eef06010035735f07820180e74178226b27b3/pydantic_core-2.46.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8233f2947cf85404441fd7e0085f53b10c93e0ee78611099b5c7237e36aacbf7", size = 1975742, upload-time = "2026-05-06T13:37:09.448Z" }, @@ -803,22 +614,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/30/a6/9f9f380dbb301f67023bf8f707aaa75daadf84f7152d95c410fd7e81d994/pydantic_core-2.46.4-cp314-cp314t-win32.whl", hash = "sha256:e846ae7835bf0703ae43f534ab79a867146dadd59dc9ca5c8b53d5c8f7c9ef02", size = 1955575, upload-time = "2026-05-06T13:38:51.116Z" }, { url = "https://files.pythonhosted.org/packages/40/1f/f1eb9eb350e795d1af8586289746f5c5677d16043040d63710e22abc43c9/pydantic_core-2.46.4-cp314-cp314t-win_amd64.whl", hash = "sha256:2108ba5c1c1eca18030634489dc544844144ee36357f2f9f780b93e7ddbb44b5", size = 2051624, upload-time = "2026-05-06T13:38:21.672Z" }, { url = "https://files.pythonhosted.org/packages/f6/d2/42dd53d0a85c27606f316d3aa5d2869c4e8470a5ed6dec30e4a1abe19192/pydantic_core-2.46.4-cp314-cp314t-win_arm64.whl", hash = "sha256:4fcbe087dbc2068af7eda3aa87634eba216dbda64d1ae73c8684b621d33f6596", size = 2017325, upload-time = "2026-05-06T13:40:52.723Z" }, - { url = "https://files.pythonhosted.org/packages/ee/a4/73995fd4ebbb46ba0ee51e6fa049b8f02c40daebb762208feda8a6b7894d/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:14d4edf427bdcf950a8a02d7cb44a08614388dd6e1bdcbf4f67504fa7887da9c", size = 2111589, upload-time = "2026-05-06T13:37:10.817Z" }, - { url = "https://files.pythonhosted.org/packages/fb/7f/f37d3a5e8bfcc2e403f5c57a730f2d815693fb42119e8ea48b3789335af1/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:0ce40cd7b21210e99342afafbd4d0f76d784eb5b1d60f3bdc566be4983c6c73b", size = 1944552, upload-time = "2026-05-06T13:36:56.717Z" }, - { url = "https://files.pythonhosted.org/packages/15/3c/d7eb777b3ff43e8433a4efb39a17aa8fd98a4ee8561a24a67ef5db07b2d6/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90884113d8b48f760e9587002789ddd741e76ab9f89518cd1e43b1f1a52ec44b", size = 1982984, upload-time = "2026-05-06T13:39:06.207Z" }, - { url = "https://files.pythonhosted.org/packages/63/87/70b9f40170a81afd55ca26c9b2acb25c20d64bcfbf888fafecb3ba077d4c/pydantic_core-2.46.4-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66ce7632c22d837c95301830e111ad0128a32b8207533b60896a96c4915192ea", size = 2138417, upload-time = "2026-05-06T13:39:45.476Z" }, { url = "https://files.pythonhosted.org/packages/9d/1d/8987ad40f65ae1432753072f214fb5c74fe47ffbd0698bb9cbbb585664f8/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl", hash = "sha256:1d8ba486450b14f3b1d63bc521d410ec7565e52f887b9fb671791886436a42f7", size = 2095527, upload-time = "2026-05-06T13:39:52.283Z" }, { url = "https://files.pythonhosted.org/packages/64/d3/84c282a7eee1d3ac4c0377546ef5a1ea436ce26840d9ac3b7ed54a377507/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:3009f12e4e90b7f88b4f9adb1b0c4a3d58fe7820f3238c190047209d148026df", size = 1936024, upload-time = "2026-05-06T13:40:15.671Z" }, { url = "https://files.pythonhosted.org/packages/d7/ca/eac61596cdeb4d7e174d3dc0bd8a6238f14f75f97a24e7b7db4c7e7340a0/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad785e92e6dc634c21555edc8bd6b64957ab844541bcb96a1366c202951ae526", size = 1990696, upload-time = "2026-05-06T13:38:34.717Z" }, { url = "https://files.pythonhosted.org/packages/fa/c3/7c8b240552251faf6b3a957db200fcfbbcec36763c050428b601e0c9b83b/pydantic_core-2.46.4-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00c603d540afdd6b80eb39f078f33ebd46211f02f33e34a32d9f053bba711de0", size = 2147590, upload-time = "2026-05-06T13:39:29.883Z" }, - { url = "https://files.pythonhosted.org/packages/11/cb/428de0385b6c8d44b716feba566abfacfbd23ee3c4439faa789a1456242f/pydantic_core-2.46.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:0c563b08bca408dc7f65f700633d8442fffb2421fc47b8101377e9fd65051ff0", size = 2112782, upload-time = "2026-05-06T13:37:04.016Z" }, - { url = "https://files.pythonhosted.org/packages/0b/b5/6a17bdadd0fc1f170adfd05a20d37c832f52b117b4d9131da1f41bb097ce/pydantic_core-2.46.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:db06ffe51636ffe9ca531fe9023dd64bdd794be8754cb5df57c5498ae5b518a7", size = 1952146, upload-time = "2026-05-06T13:39:43.092Z" }, - { url = "https://files.pythonhosted.org/packages/2a/dc/03734d80e362cd43ef65428e9de77c730ce7f2f11c60d2b1e1b39f0fbf99/pydantic_core-2.46.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:133878133d271ade3d41d1bfb2a45ec38dbdbda40bc065921c6b04e4630127e2", size = 2134492, upload-time = "2026-05-06T13:36:58.124Z" }, - { url = "https://files.pythonhosted.org/packages/de/df/5e5ffc085ed07cc22d298134d3d911c63e91f6a0eb91fe646750a3209910/pydantic_core-2.46.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9bc519fbf2b7578398853d815009ae5e4d4603d12f4e3f91da8c06852d3da3e9", size = 2156604, upload-time = "2026-05-06T13:37:49.88Z" }, - { url = "https://files.pythonhosted.org/packages/81/44/6e112a4253e56f5705467cbab7ab5e91ee7398ba3d56d358635958893d3e/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:c7a7bd4e39e8e4c12c39cd480356842b6a8a06e41b23a55a5e3e191718838ddf", size = 2183828, upload-time = "2026-05-06T13:37:43.053Z" }, - { url = "https://files.pythonhosted.org/packages/ac/ad/5565071e937d8e752842ac241463944c9eb14c87e2d269f2658a5bd05e98/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:d396ec2b979760aaf3218e76c24e65bd0aca24983298653b3a9d7a45f9e47b30", size = 2310000, upload-time = "2026-05-06T13:37:56.694Z" }, - { url = "https://files.pythonhosted.org/packages/4f/c3/66883a5cec183e7fba4d024b4cbbe61851a63750ef606b0afecc46d1f2bf/pydantic_core-2.46.4-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:86e1a4418c6cd97d60c95c71164158eaf7324fae7b0923264016baa993eba6fc", size = 2361286, upload-time = "2026-05-06T13:40:05.667Z" }, - { url = "https://files.pythonhosted.org/packages/4b/2d/69abac8f838090bbecd5df894befb2c2619e7996a98ddb949db9f3b93225/pydantic_core-2.46.4-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:d51026d73fcfd93610abc7b27789c26b313920fcfb20e27462d74a7f8b06e983", size = 2193071, upload-time = "2026-05-06T13:38:08.682Z" }, ] [[package]] @@ -903,8 +702,7 @@ name = "trendify" source = { editable = "." } dependencies = [ { name = "matplotlib" }, - { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, - { name = "numpy", version = "2.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "numpy" }, { name = "numpydantic" }, { name = "plotly" }, { name = "polars" }, From 9b2b572250b2c6decb0dc955b2619ee182d5846b Mon Sep 17 00:00:00 2001 From: David Gable Date: Sat, 4 Jul 2026 10:36:12 -0700 Subject: [PATCH 05/19] Building new dashboard and expanding the tests. Breaking changes incoming. --- gallery/data/data_products.json | 1 - gallery/gallery.py | 327 ------ gallery/trendify/assets/static/analysis.jpg | Bin 312163 -> 0 bytes gallery/trendify/assets/static/clusters.jpg | Bin 312163 -> 0 bytes gallery/trendify/assets/static/comparison.jpg | Bin 254491 -> 0 bytes .../trendify/assets/static/distributions.jpg | Bin 254491 -> 0 bytes .../assets/static/distributions_melted.csv | 19 - .../assets/static/distributions_pivot.csv | 4 - .../assets/static/distributions_stats.csv | 4 - gallery/trendify/assets/static/sine.jpg | Bin 358688 -> 0 bytes .../assets/static/statistics_melted.csv | 19 - .../assets/static/statistics_pivot.csv | 4 - .../assets/static/statistics_stats.csv | 4 - gallery/trendify/assets/static/waves.jpg | Bin 358688 -> 0 bytes gallery/trendify/products/analysis/0.json | 1 - gallery/trendify/products/analysis/1.json | 1 - .../trendify/products/analysis/index_map.csv | 2 - gallery/trendify/products/clusters/0.json | 1 - gallery/trendify/products/clusters/1.json | 1 - .../trendify/products/clusters/index_map.csv | 2 - gallery/trendify/products/comparison/0.json | 1 - gallery/trendify/products/comparison/1.json | 1 - .../products/comparison/index_map.csv | 2 - .../trendify/products/distributions/0.json | 1 - .../trendify/products/distributions/1.json | 1 - .../products/distributions/index_map.csv | 2 - gallery/trendify/products/sine/0.json | 1 - gallery/trendify/products/sine/1.json | 1 - gallery/trendify/products/sine/index_map.csv | 2 - gallery/trendify/products/statistics/0.json | 1 - gallery/trendify/products/statistics/1.json | 1 - .../products/statistics/index_map.csv | 2 - .../products/statistics/reserving_index.lock | 0 gallery/trendify/products/waves/0.json | 1 - gallery/trendify/products/waves/1.json | 1 - gallery/trendify/products/waves/index_map.csv | 2 - .../products/waves/reserving_index.lock | 0 pyproject.toml | 6 +- requirements.txt | 129 ++- sample_data/.gitignore | 2 - sample_data/models/0/data_product.json | 1 - sample_data/models/0/results.csv | 47 - sample_data/models/0/stdin.csv | 7 - sample_data/models/1/data_product.json | 1 - sample_data/models/1/results.csv | 49 - sample_data/models/1/stdin.csv | 7 - sample_data/models/2/data_product.json | 1 - sample_data/models/2/results.csv | 42 - sample_data/models/2/stdin.csv | 7 - sample_data/models/3/data_product.json | 1 - sample_data/models/3/results.csv | 44 - sample_data/models/3/stdin.csv | 7 - sample_data/models/4/data_product.json | 1 - sample_data/models/4/results.csv | 42 - sample_data/models/4/stdin.csv | 7 - sample_data/models/5/data_product.json | 1 - sample_data/models/5/results.csv | 50 - sample_data/models/5/stdin.csv | 7 - sample_data/models/6/data_product.json | 1 - sample_data/models/6/results.csv | 46 - sample_data/models/6/stdin.csv | 7 - sample_data/models/7/data_product.json | 1 - sample_data/models/7/results.csv | 47 - sample_data/models/7/stdin.csv | 7 - sample_data/models/8/data_product.json | 1 - sample_data/models/8/results.csv | 44 - sample_data/models/8/stdin.csv | 7 - sample_data/models/9/data_product.json | 1 - sample_data/models/9/results.csv | 46 - sample_data/models/9/stdin.csv | 7 - scripts/gen_ts_models.py | 243 +++++ scripts/matrix_generator.py | 792 +++++++++++++++ src/trendify/__init__.py | 6 +- src/trendify/cli.py | 301 +++++- src/trendify/examples.py | 65 +- src/trendify/formats/format2d.py | 7 +- src/trendify/generator/__init__.py | 15 +- src/trendify/generator/generate.py | 102 +- src/trendify/generator/render.py | 100 +- src/trendify/generator/xy_data_plotter.py | 14 +- src/trendify/pipeline.py | 28 +- src/trendify/plotting/__init__.py | 6 + src/trendify/plotting/figure.py | 22 +- src/trendify/plotting/histogram.py | 19 +- src/trendify/plotting/scatter.py | 130 +++ src/trendify/plotting/trace.py | 105 +- src/trendify/store/product_store.py | 5 +- .../trendify/viewer/__init__.py | 0 src/trendify/viewer/app.py | 108 ++ src/trendify/viewer/plot_config.py | 100 ++ src/trendify/viewer/routes/__init__.py | 7 + src/trendify/viewer/routes/api.py | 133 +++ src/trendify/viewer/routes/pages.py | 33 + src/trendify/viewer/tag_tree.py | 128 +++ src/trendify/viewer/templates/base.html | 48 + src/trendify/viewer/templates/index.html | 75 ++ .../viewer/templates/partials/__init__.py | 0 .../viewer/templates/partials/footer.html | 15 + .../viewer/templates/partials/nav.html | 148 +++ .../viewer/templates/partials/sidebar.html | 156 +++ .../viewer/templates/partials/table_view.html | 26 + .../viewer/templates/static/__init__.py | 0 .../templates/static/assets/__init__.py | 0 .../viewer/templates/static/assets/logo.svg | 11 +- .../templates/static/assets/logo_white_bg.svg | 33 +- .../viewer/templates/static/css/app.css | 69 ++ .../viewer/templates/static/js/main.js | 2 + .../viewer/templates/static/ts/build.mjs | 23 + .../templates/static/ts/package-lock.json | 537 ++++++++++ .../viewer/templates/static/ts/package.json | 15 + .../viewer/templates/static/ts/src/lib/api.ts | 45 + .../templates/static/ts/src/lib/clipboard.ts | 31 + .../templates/static/ts/src/lib/connection.ts | 56 ++ .../templates/static/ts/src/lib/fullscreen.ts | 33 + .../static/ts/src/lib/local-storage.ts | 14 + .../templates/static/ts/src/lib/resize.ts | 57 ++ .../static/ts/src/lib/sidebar-node.ts | 49 + .../templates/static/ts/src/lib/table-view.ts | 169 ++++ .../templates/static/ts/src/lib/theme.ts | 47 + .../templates/static/ts/src/lib/toast.ts | 69 ++ .../templates/static/ts/src/lib/url-state.ts | 55 + .../viewer/templates/static/ts/src/main.ts | 79 ++ .../templates/static/ts/src/types/global.d.ts | 17 + .../viewer/templates/static/ts/tsconfig.json | 16 + .../templates/static/vendored/__init__.py | 0 .../static/vendored/alpine-3.15.12.min.js | 5 + .../static/vendored/alpine-LICENSE.md | 21 + .../static/vendored/dataTables-LICENSE.txt | 3 + .../vendored/dataTables.dataTables.min.css | 1 + .../static/vendored/dataTables.min.js | 4 + .../static/vendored/jquery-3.7.1.min.js | 2 + .../static/vendored/jquery-LICENSE.txt | 3 + .../static/vendored/tailwind-4.3.2.global.js | 947 ++++++++++++++++++ .../static/vendored/tailwind-LICENSE | 21 + tests/test_cli.py | 25 - tests/test_pipeline.py | 21 - tests/test_render.py | 31 +- tests/test_viewer_api.py | 144 +++ uv.lock | 220 ++++ 139 files changed, 5550 insertions(+), 1346 deletions(-) delete mode 100644 gallery/data/data_products.json delete mode 100644 gallery/gallery.py delete mode 100644 gallery/trendify/assets/static/analysis.jpg delete mode 100644 gallery/trendify/assets/static/clusters.jpg delete mode 100644 gallery/trendify/assets/static/comparison.jpg delete mode 100644 gallery/trendify/assets/static/distributions.jpg delete mode 100644 gallery/trendify/assets/static/distributions_melted.csv delete mode 100644 gallery/trendify/assets/static/distributions_pivot.csv delete mode 100644 gallery/trendify/assets/static/distributions_stats.csv delete mode 100644 gallery/trendify/assets/static/sine.jpg delete mode 100644 gallery/trendify/assets/static/statistics_melted.csv delete mode 100644 gallery/trendify/assets/static/statistics_pivot.csv delete mode 100644 gallery/trendify/assets/static/statistics_stats.csv delete mode 100644 gallery/trendify/assets/static/waves.jpg delete mode 100644 gallery/trendify/products/analysis/0.json delete mode 100644 gallery/trendify/products/analysis/1.json delete mode 100644 gallery/trendify/products/analysis/index_map.csv delete mode 100644 gallery/trendify/products/clusters/0.json delete mode 100644 gallery/trendify/products/clusters/1.json delete mode 100644 gallery/trendify/products/clusters/index_map.csv delete mode 100644 gallery/trendify/products/comparison/0.json delete mode 100644 gallery/trendify/products/comparison/1.json delete mode 100644 gallery/trendify/products/comparison/index_map.csv delete mode 100644 gallery/trendify/products/distributions/0.json delete mode 100644 gallery/trendify/products/distributions/1.json delete mode 100644 gallery/trendify/products/distributions/index_map.csv delete mode 100644 gallery/trendify/products/sine/0.json delete mode 100644 gallery/trendify/products/sine/1.json delete mode 100644 gallery/trendify/products/sine/index_map.csv delete mode 100644 gallery/trendify/products/statistics/0.json delete mode 100644 gallery/trendify/products/statistics/1.json delete mode 100644 gallery/trendify/products/statistics/index_map.csv delete mode 100644 gallery/trendify/products/statistics/reserving_index.lock delete mode 100644 gallery/trendify/products/waves/0.json delete mode 100644 gallery/trendify/products/waves/1.json delete mode 100644 gallery/trendify/products/waves/index_map.csv delete mode 100644 gallery/trendify/products/waves/reserving_index.lock delete mode 100644 sample_data/.gitignore delete mode 100644 sample_data/models/0/data_product.json delete mode 100644 sample_data/models/0/results.csv delete mode 100644 sample_data/models/0/stdin.csv delete mode 100644 sample_data/models/1/data_product.json delete mode 100644 sample_data/models/1/results.csv delete mode 100644 sample_data/models/1/stdin.csv delete mode 100644 sample_data/models/2/data_product.json delete mode 100644 sample_data/models/2/results.csv delete mode 100644 sample_data/models/2/stdin.csv delete mode 100644 sample_data/models/3/data_product.json delete mode 100644 sample_data/models/3/results.csv delete mode 100644 sample_data/models/3/stdin.csv delete mode 100644 sample_data/models/4/data_product.json delete mode 100644 sample_data/models/4/results.csv delete mode 100644 sample_data/models/4/stdin.csv delete mode 100644 sample_data/models/5/data_product.json delete mode 100644 sample_data/models/5/results.csv delete mode 100644 sample_data/models/5/stdin.csv delete mode 100644 sample_data/models/6/data_product.json delete mode 100644 sample_data/models/6/results.csv delete mode 100644 sample_data/models/6/stdin.csv delete mode 100644 sample_data/models/7/data_product.json delete mode 100644 sample_data/models/7/results.csv delete mode 100644 sample_data/models/7/stdin.csv delete mode 100644 sample_data/models/8/data_product.json delete mode 100644 sample_data/models/8/results.csv delete mode 100644 sample_data/models/8/stdin.csv delete mode 100644 sample_data/models/9/data_product.json delete mode 100644 sample_data/models/9/results.csv delete mode 100644 sample_data/models/9/stdin.csv create mode 100644 scripts/gen_ts_models.py create mode 100644 scripts/matrix_generator.py create mode 100644 src/trendify/plotting/scatter.py rename gallery/trendify/products/analysis/reserving_index.lock => src/trendify/viewer/__init__.py (100%) create mode 100644 src/trendify/viewer/app.py create mode 100644 src/trendify/viewer/plot_config.py create mode 100644 src/trendify/viewer/routes/__init__.py create mode 100644 src/trendify/viewer/routes/api.py create mode 100644 src/trendify/viewer/routes/pages.py create mode 100644 src/trendify/viewer/tag_tree.py create mode 100644 src/trendify/viewer/templates/base.html create mode 100644 src/trendify/viewer/templates/index.html rename gallery/trendify/products/clusters/reserving_index.lock => src/trendify/viewer/templates/partials/__init__.py (100%) create mode 100644 src/trendify/viewer/templates/partials/footer.html create mode 100644 src/trendify/viewer/templates/partials/nav.html create mode 100644 src/trendify/viewer/templates/partials/sidebar.html create mode 100644 src/trendify/viewer/templates/partials/table_view.html rename gallery/trendify/products/comparison/reserving_index.lock => src/trendify/viewer/templates/static/__init__.py (100%) rename gallery/trendify/products/distributions/reserving_index.lock => src/trendify/viewer/templates/static/assets/__init__.py (100%) create mode 100644 src/trendify/viewer/templates/static/css/app.css create mode 100644 src/trendify/viewer/templates/static/js/main.js create mode 100644 src/trendify/viewer/templates/static/ts/build.mjs create mode 100644 src/trendify/viewer/templates/static/ts/package-lock.json create mode 100644 src/trendify/viewer/templates/static/ts/package.json create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/api.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/clipboard.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/connection.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/fullscreen.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/local-storage.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/resize.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/sidebar-node.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/table-view.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/theme.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/toast.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/lib/url-state.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/main.ts create mode 100644 src/trendify/viewer/templates/static/ts/src/types/global.d.ts create mode 100644 src/trendify/viewer/templates/static/ts/tsconfig.json rename gallery/trendify/products/sine/reserving_index.lock => src/trendify/viewer/templates/static/vendored/__init__.py (100%) create mode 100644 src/trendify/viewer/templates/static/vendored/alpine-3.15.12.min.js create mode 100644 src/trendify/viewer/templates/static/vendored/alpine-LICENSE.md create mode 100644 src/trendify/viewer/templates/static/vendored/dataTables-LICENSE.txt create mode 100644 src/trendify/viewer/templates/static/vendored/dataTables.dataTables.min.css create mode 100644 src/trendify/viewer/templates/static/vendored/dataTables.min.js create mode 100644 src/trendify/viewer/templates/static/vendored/jquery-3.7.1.min.js create mode 100644 src/trendify/viewer/templates/static/vendored/jquery-LICENSE.txt create mode 100644 src/trendify/viewer/templates/static/vendored/tailwind-4.3.2.global.js create mode 100644 src/trendify/viewer/templates/static/vendored/tailwind-LICENSE create mode 100644 tests/test_viewer_api.py diff --git a/gallery/data/data_products.json b/gallery/data/data_products.json deleted file mode 100644 index 5e84cee..0000000 --- a/gallery/data/data_products.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["waves","sine"],"metadata":{},"format2d":{"title_fig":"Sine Wave with Reference Lines","title_legend":null,"title_ax":"Sine Function with Noise","label_x":"X (radians)","label_y":"Amplitude","lim_x_min":0.0,"lim_x_max":12.566370614359172,"lim_y_min":-1.5,"lim_y_max":1.5},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.10026939953215828,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.12693303650867852,"y":-0.16092098352812628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25386607301735703,"y":0.3276852605327678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3807991095260356,"y":0.30567338551023343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5077321460347141,"y":0.49900135630636205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6346651825433925,"y":0.534972699256308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.7961469718892045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8885312555607496,"y":0.740830522750966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0154642920694281,"y":0.8894979096105764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1423973285781066,"y":0.7819338702462854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.269330365086785,"y":1.0089392489477815,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3962634015954636,"y":1.035769168693198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5231964381041423,"y":0.8285870133681512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0913390506149405,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7770625111214993,"y":1.0510246915043298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9039955476301778,"y":0.9050181205954253,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0309285841388562,"y":0.8802176991903781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1578616206475347,"y":0.7803849703349443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.284794657156213,"y":0.5567452002222999,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4117276936648917,"y":0.5525082657406788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.53866073017357,"y":0.6291262651082701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6655937666822487,"y":0.43336711375698433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.792526803190927,"y":0.1890448678199384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.9194598396996057,"y":0.27028648092559937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.0463928762082846,"y":0.1654331990578402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.173325912716963,"y":-0.005783255424274457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.3002589492256416,"y":-0.1752011493351814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.42719198573432,"y":-0.2284446672575539,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.5541250222429985,"y":-0.39525691147080677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.681058058751677,"y":-0.632335190049382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.8079910952603555,"y":-0.6903269513213697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.934924131769034,"y":-0.7159200291723884,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.0618571682777125,"y":-0.7793021207475179,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.188790204786391,"y":-0.8179547856809217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.3157232412950695,"y":-0.8906627973871658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.442656277803748,"y":-0.95976139046228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.569589314312426,"y":-0.9868383705032965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.8894881061822846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.823455387329783,"y":-1.2232601985061606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.950388423838462,"y":-1.103417767805032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.07732146034714,"y":-0.7840743297451092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.204254496855819,"y":-0.6971318741701817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.331187533364497,"y":-0.7218156391663821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.458120569873176,"y":-0.7274989739447338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.585053606381854,"y":-0.795078849705095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.711986642890533,"y":-0.5552973521240004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.838919679399211,"y":-0.4611551847649299,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.96585271590789,"y":-0.22744511270300138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.092785752416569,"y":-0.15520841436870086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.219718788925247,"y":0.12876355802768394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.346651825433926,"y":0.187950045204541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.473584861942604,"y":0.19958764583500013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.600517898451283,"y":0.2187544318884767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.727450934959961,"y":0.33844637460643134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.85438397146864,"y":0.5027823572577393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.981317007977318,"y":0.633731750190512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.108250044485997,"y":0.6000860197284025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.235183080994675,"y":0.7704673884809164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.362116117503354,"y":0.932770345441603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.489049154012032,"y":0.9199678229388483,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.615982190520711,"y":0.9264318342392917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.742915227029389,"y":0.8397540263545904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.869848263538068,"y":1.0947456163774127,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.996781300046746,"y":0.9081800629591213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.123714336555425,"y":1.1123781744074777,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.250647373064103,"y":0.9991260799457424,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.377580409572783,"y":0.9722952271246664,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.50451344608146,"y":0.8218024190001034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.631446482590139,"y":0.8100795877709401,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.758379519098817,"y":0.5185353773731596,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.885312555607497,"y":0.5066771974834824,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.012245592116175,"y":0.32084744719483005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.139178628624853,"y":0.214577780345088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.266111665133531,"y":0.29500663380836734,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.39304470164221,"y":0.17410425199764418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.519977738150889,"y":-0.1373838392379228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.646910774659567,"y":-0.2566608567754442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.773843811168245,"y":-0.1794361001181416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.900776847676925,"y":-0.508419595721873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.027709884185603,"y":-0.7932685652015635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.15464292069428,"y":-0.6105879353301285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.28157595720296,"y":-0.9485940834176981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.408508993711639,"y":-0.8042173219068625,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.535442030220317,"y":-0.8470955358535776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.662375066728995,"y":-0.852710295154024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.6900281246487727,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.916241139746353,"y":-0.8879508586465501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.04317417625503,"y":-0.9249685279910077,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.170107212763709,"y":-1.1754603382709985,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.297040249272388,"y":-1.0211940292996469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.423973285781067,"y":-0.9075381572957095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.550906322289745,"y":-0.829881239884507,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.677839358798423,"y":-0.8708365116057788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.804772395307102,"y":-0.7524488728777099,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.93170543181578,"y":-0.5003062213331707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.058638468324459,"y":-0.5107912840101354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.185571504833138,"y":-0.44872936468837155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.312504541341816,"y":-0.2805021859286123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.439437577850494,"y":-0.03870652164850846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.566370614359172,"y":0.019142567500961546,"marker":null,"product_type":"Point2D"}],"pen":{"color":"blue","size":2.0,"alpha":1.0,"zorder":0.0,"label":"Noisy Sine"},"product_type":"Trace2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Upper Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":-1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Lower Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.25386607301735703,"y":0.3276852605327678,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.7961469718892045,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.0154642920694281,"y":0.8894979096105764,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.3962634015954636,"y":1.035769168693198,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0913390506149405,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.53866073017357,"y":0.6291262651082701,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.9194598396996057,"y":0.27028648092559937,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.8894881061822846,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":5.204254496855819,"y":-0.6971318741701817,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":6.981317007977318,"y":0.633731750190512,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.362116117503354,"y":0.932770345441603,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.615982190520711,"y":0.9264318342392917,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.869848263538068,"y":1.0947456163774127,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":8.123714336555425,"y":1.1123781744074777,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":9.266111665133531,"y":0.29500663380836734,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":9.773843811168245,"y":-0.1794361001181416,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.15464292069428,"y":-0.6105879353301285,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.408508993711639,"y":-0.8042173219068625,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.6900281246487727,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":11.550906322289745,"y":-0.829881239884507,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":11.93170543181578,"y":-0.5003062213331707,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.9221105500146662,"y":2.884756484355801,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.4746245460633847,"y":2.631986255117436,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.783588562110246,"y":1.7725727534605404,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0039785262929963,"y":2.962036585363362,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.3699683346943203,"y":2.7707833398521133,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.927994580165554,"y":1.657316508864739,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8063927536180564,"y":2.101937702751391,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4653415776530445,"y":1.3333361937217414,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.586854950972423,"y":2.799459123965884,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8883138200135698,"y":1.754281035173901,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.5723931887112936,"y":2.762387415280557,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.551683318623435,"y":2.109865725331881,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.688586384744068,"y":2.7032878299383976,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.335249325098969,"y":2.3485135730474918,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8366863409566716,"y":1.8165841369226898,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.595748978291324,"y":1.9236316640142477,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.215602394192905,"y":2.700611262945084,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5841498246352896,"y":1.9156963072441944,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1674357594187272,"y":1.4068543868019807,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0439999098209407,"y":2.0678558546699133,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4560099055644913,"y":2.921655468408661,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.7678911214118287,"y":1.611739618375668,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.080076141453948,"y":0.9917102997106022,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4843018842639286,"y":2.192463072716355,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.465222799152521,"y":2.5962657219950787,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5310468651343898,"y":2.175064878871786,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.943089297749337,"y":2.1812480513055883,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0596742226397073,"y":1.8257918057687221,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.114250625686339,"y":1.5869882320185276,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.11126258528492,"y":1.6232254475196248,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8348905632217076,"y":1.8746052337496495,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.3643889838239016,"y":1.6746700318901517,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.466418754928247,"y":1.1932299240480968,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9246665171247088,"y":1.1374941464786734,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1676429529213523,"y":2.3874562395479533,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.0395313745462589,"y":2.2416977843735584,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.906230284264933,"y":1.4553576284841574,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1794096481709486,"y":2.008017581610824,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1835238895549542,"y":2.4735388349263276,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4575438269548857,"y":1.6821474370792102,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8009176804984142,"y":1.4291425974218304,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8240446284788785,"y":1.4933509738999016,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.7431824283168278,"y":1.3794634083872546,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.408714442691814,"y":1.7246580742003341,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5443566317769706,"y":1.662175799816247,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.22343174819289,"y":1.0920344171276626,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.390458652737501,"y":1.5706107670736045,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.3309546421179639,"y":2.1294315792816447,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.6626031689429936,"y":3.1350169295241352,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.23554954935192,"y":2.4069056133265705,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.382758202303417,"y":2.8357669954638136,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.428274306474105,"y":4.471558988362641,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.62965793140442,"y":4.458578954658716,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9102558172377573,"y":3.811591731725235,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.936495930390198,"y":4.402746044884202,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.468845452303013,"y":4.406780827194744,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.633960710634268,"y":4.415460252711927,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.767322590132426,"y":4.174651666497631,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4475993087600525,"y":3.6471919721288493,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.470885402673881,"y":4.096965508518036,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7540586570592165,"y":3.8913496649698387,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7139556519680474,"y":3.775787375751351,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.763591507467401,"y":2.994756447516303,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.066671098074033,"y":4.431265525779744,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.660029968927538,"y":4.509520314123512,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.159549112221466,"y":4.290622958059059,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9872040749763826,"y":2.9261918541399576,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.2024204607156226,"y":4.078751680132195,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.538091411657851,"y":3.643539331848956,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.965035287321225,"y":4.432598707757688,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.6621080146827634,"y":3.652287053701343,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.901121357510579,"y":4.1436864483174025,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.2714020384639815,"y":4.543184058881175,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7446734211539194,"y":4.005848014244756,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.437678788457105,"y":4.3059969536388065,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.7082499123918495,"y":3.6739416163489365,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1636530136413596,"y":5.126730408763378,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5976473073605817,"y":4.867620531273806,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.20833087151454,"y":4.664878193848876,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1878901734227094,"y":4.4567407611391054,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8086379891204536,"y":4.072943814123825,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7910685636061574,"y":4.400951559504923,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.27678923562839,"y":4.823339286279603,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.351544270970793,"y":4.093170666710282,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.59161407824672,"y":3.8055275539374853,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.35229933525572,"y":3.9396088933717732,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8722273102673106,"y":3.928011387242411,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.6384737109644765,"y":3.9224075309983593,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4221951705447538,"y":5.3020605309178865,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.97263195622846,"y":4.7438908278074186,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9146006678023455,"y":4.516825334093359,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.864496880138455,"y":3.331679338149047,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.2203656743825846,"y":3.753800208200412,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.313845415058228,"y":3.4559658717169635,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.478830603873197,"y":4.170300033463122,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.231046748488496,"y":3.142099137971873,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.4190749773631035,"y":3.6780223789836675,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.3297859035607997,"y":3.4816482039366017,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.041573451729374,"y":3.8045061392968185,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.561754660826278,"y":3.44222064030427,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.030439788861027,"y":2.005618234755235,"marker":{"color":"darkblue","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 1","symbol":"*"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.964445487707155,"y":4.0589114035878415,"marker":{"color":"darkred","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 2","symbol":"*"},"product_type":"Point2D"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.120079468117885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.159985987032749,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28970162006359923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0034896864307150752,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1900485847988933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.018672755004419,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2047305536280604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5880325330713116,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.079281046802381,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6676007366804675,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9939759581300792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11294378508467533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3979186394856011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0767022830247326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7365778068193176,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.012034891073042793,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4543524095491243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6323820951100011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3706318604789957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0811133279529923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8467644862399857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9368684199573918,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4902085533512968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4805583818656307,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26037219262434985,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1200396833779322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3478681619647558,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9418670472840802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0265899795958824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2374696630649622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.33747068047000894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.045115032540837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2998143816859236,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2127428841692818,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13934858912830114,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4469256450129502,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0881641272924887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0678469920033153,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4028324326678695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7876006986853263,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.433174564058142,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7518775543041794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2151157067829501,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3648755562378347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6958318309196823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3566931878637618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2602391753832248,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0661617310083715,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.04822961666383703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.637336977706114,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.030264249892606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9789741218358532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36560697310593954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.64181870106827,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8021875645020912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7122240977976928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19358823619159055,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2948626990655026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3070914615414242,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8179811547411515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2576160235558744,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1948079879159899,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7982061054207352,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5363805717648256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31994641742955315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.282223469378326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.45672080952143845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2698878956108795,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8202162877901165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18798963994837387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06662775642133793,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3814037976273756,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5015248592785475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1043264638271406,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6572865151350569,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09126943797947167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8079507311342945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.47663899375574004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.348953265595747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14652809984470458,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1010186543581297,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.44998650233244386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.05128451469646128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2839906675475677,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5890637713021755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6903584377673045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35772465513609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2424448811717872,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0407375459419348,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8389899767701002,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9472352542504863,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2736118685289757,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.30592333305864916,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9282334326005461,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.560249162197477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.39033797479536825,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7291500043375275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3397597822101166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3330327208625012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7659259921853442,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29579883199199264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005771549198345732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.921115962229323,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18887165964072625,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6320204659342772,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9775572858850219,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.250701442800246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3109964385647264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8060337150449026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8305861381927256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6300344335811258,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1797732182968404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1604687067947421,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6713376148467942,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.127447925688627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2577191665198624,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8387441489814336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8834646789368447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7170230653460998,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21881139248285061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28402192691902567,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5809460264108127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36310956804378575,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0599996372843798,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3979339491519201,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3215901997101438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7455672135836389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38368176337163185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1410937540732708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5144659286544553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5326929816148065,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3320199814407802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1661379555263667,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4519797156361312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4419023620560685,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2490578630628841,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4588191587720996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.901247250245794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24688043714143235,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5213140340402103,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18028199120085173,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9849915417254579,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8077868514206563,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.548824922338457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.008074777938248501,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9925694455444747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20028418232181086,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04532058639791045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.023914343016710516,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3295656348262214,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7708616680391279,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8900510531406677,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.55454299142933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.022295767008040177,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08101984138462057,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4456219751636634,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6972915535171448,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1877827008895279,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9359499814039537,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.179599706115283,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-3.0148890907114687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.342476506909519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6573842031803905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0951530660700033,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4469597345214312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.304559836048395,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5805893396298237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16218576453273498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.455123300804622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9456680442002712,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.354176138617658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6727315369548842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9837034357629091,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0548704309612524,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18084100219441226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.036817724429752695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1024867899747122,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5681257896880509,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06904144797930274,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7693471776171562,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2716715306374236,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03608869423612861,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08968940148425145,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04232030654573784,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0271700354609623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48409976737215155,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2655410809282775,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.04236500834835278,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27437801892767893,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12694889851038205,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8066495297755694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02044184777771792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0141515443247557,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16268187999788028,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0945268773629824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5504968941376533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.077438723613027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5600490475270491,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3240423052931443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8652753385045975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4705760560890417,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6240255246433499,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8707625994164325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7139516527356435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8820731673761063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1197368874778697,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12646355999993317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.00791862853404046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005589806380031188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7345837323854396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.013866377553194144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40605618748538197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9165675743183146,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46085906285269973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.325307497651439,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35178447118844386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17488334979331385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6620519762539686,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7665529033357077,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.662085494664533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7444224015231452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2703875836806389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5849558289572263,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9300989989021692,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.3136383171116317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5134470213092188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9204059481276052,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36908737939600295,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7482732536155505,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2468713454136044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6286157604274308,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.078388210257864,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5164690885534667,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5343692909070064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12402150651252941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7658556107100224,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38615950449029895,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4377960865204464,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5563254488652966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4513081276332738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9463543810284283,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5408507897747048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2515998443147637,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1999152010894699,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.24541401762782708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8255050172294163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9205123877685628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5916106781398268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2611112612305004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5045672558590294,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0547694629056505,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004314816104522443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07278358308198973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6791140425942338,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7587245740778051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3094044353406133,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0842306242001005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8980952788948717,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6033214530476244,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0408416618243255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23641194909915225,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38582698674434335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10763065886107376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15498988863449503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42153100222805345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8221440223445606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7257176368113676,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4404916807669748,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6398574508230455,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.36876493055281,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11133454473273004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3090674453957074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.676515480647337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2506509898394622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5172254968272066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7861370350908782,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.249982035585684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5361821059824315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1672835719750936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5148123886586979,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6412984538977557,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13617484561137091,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39235780846412804,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9259983420688154,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4832708421912532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5439769668203354,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.352597830148396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5718671221273617,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3329132625083995,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06271689039924407,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6784422274539493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48601987064015284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.827359898800379,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8074386767592374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5541936909442975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06957090904932622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-3.2813833583438567,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4861957898964921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1630803935040512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8515998118998664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4506624452943475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.63602659454857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3811490889461273,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04710287648311384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2817128862408352,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.116224222209635,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5429962444590284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0958174670130125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5204046733745465,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42872425225921307,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0450371641799996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03921039457537817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9788053984124228,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18810824886179417,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.607412139543325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0809953885815522,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08780936327109166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0886736312131182,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5307552504342298,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.054115587940878,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5899275481441639,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4763307906966703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0556246097645254,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9840347606444012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1919670774759585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0659220713532576,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3008816136134185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.452864315792931,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7624306116140845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7901637659854209,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5434322855996321,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5823726466852489,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4651262285374434,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19294028244387665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8569601775158913,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5063840209539817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9562631777935735,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.297264342725389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5002004016511064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1009078868775015,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6252727568027817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.458308439690674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8119927680599291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9551240177719488,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2570841992020363,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.41180888294082496,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15270278091836512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6324394167843309,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1623839203779998,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1099801203384982,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4560304396532664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9561816921950694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4224432223009463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5279638514270759,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7332751280337431,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.591507311327671,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1088746195965529,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5085313886962973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.018026634665159372,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.5242371252564415,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2904865652446649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5934647705670124,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4586589426195928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5277464567170275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38907194533371586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9844877448209196,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3422647327413064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9236525286157473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5475858491423542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7159607780134586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6666478637707478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5439828605131374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11795009145546044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.51059495515519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8651688450981543,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7713611304515572,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1077215255604493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.026305800500636075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5850893902044055,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28007931900538546,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05833776904616565,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2765349236300132,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7625083372463004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42233824118060925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7256871780821674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9528491131074683,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.47759885707519373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0975107976173529,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6035877995705508,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8195622857449858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.267133121394595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8975421909178695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7237481182316082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4370898890267739,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.025583656795796134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.042316336203108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3761626060685435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0199031644966294,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2788872252045969,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02565120958509866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06725665349908073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16508182308733643,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7902363769029381,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5382800987129672,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.018724291376097768,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1550748325219284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0625930603995066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.253626724079992,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5477980609425169,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9589819848431792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1101737519839858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5667470445461694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.661234261829938,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09792380189054814,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5538877316168808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0336732711544168,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5293280785973582,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3973107163106388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.322942892199383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3465331307137776,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.974894547267515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.564293358237618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3337611121114129,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2464688117317764,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7966366486837649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5731444283439087,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11602083139703026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48850900877774134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.542925079119887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6804273299984738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.915496280934384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4501368784651871,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0595125325985788,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.025484873893315767,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8551203219409718,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1610704387805943,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5513591136676017,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1622115596002807,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2209756973722459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4211117347465985,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16334900206586403,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4513354396686838,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.382961173137108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.531823614637725,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18156161506646945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46367326247173507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6002391465664486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02778350147067911,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7594844155064984,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5112297109867523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4282359091253287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4516432254383156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0170615418834925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8112112130175816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02965726792364337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05283798235935131,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1152572601806823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5132555200566858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7493109652082396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9641765051931254,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7886401697032043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3619001697036042,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35696966051994306,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9822844810047188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06088647632836013,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.404735419009416,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6177333945742036,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0408551075472197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.030082929396038714,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1391488394389856,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5520842276261322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0216531430336264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36089150727091335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4960775410787598,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3091996194432038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19872495121595024,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6931543100570086,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9506172517795163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42854732858456485,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6943856743721964,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2587030254660136,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.033518308713741944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3230873198548139,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4458728605148163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7141706604963104,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1542617470911092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.252655779627315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5315403290198673,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.482672658443414,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.22412533296880394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9707130385184004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.291676411174275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5990034333051384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.449150058779108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.407223370467809,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04852029589321182,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1255358387998367,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4608631973516684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5903422317361727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5671885628389853,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7720680626097615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4595309871923077,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7593292093724403,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06783787565763873,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2348853577830814,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4843442926182957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6914492347434056,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11508090814284092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3689950454149413,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7655882142422425,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6494852345304842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9561656495627419,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8640274245730996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4027187504517627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7328717881635859,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06944222725243437,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0361899993139452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19339854596394832,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36967752296453965,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1855150755911082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0913658422100148,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8057449313259128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9848729406936151,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4045951401496159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.971839037913713,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40134150389519885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47198853652236206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42010950783684486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5157935768849239,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1919638784009936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7099156685420454,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3679531806669551,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9884037693524327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.018236396080742193,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.119246876916298,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.45803730294112627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2555375468188832,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.734681941601936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2420017675809067,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14690780115533478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13716478698820964,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7440709413654802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8739597047257628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20036408312066556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8474326026572228,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6428856774872632,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6579219863593521,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2852534128415536,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9482982273826306,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42003921873369326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8274947618946779,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4763960370566322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.017930281056328132,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1796104047487224,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0674291251101828,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7002444420012063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0015535834511417627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0032746516469175,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5450114099911869,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3177332621350319,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5824580523830187,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9104533650621609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.09674086415459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4881909110450731,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6415615888192874,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42282678862771805,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7640179907566302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09970169067222318,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1430427773263194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0563250369082276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5941467228928694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5122046793276166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4079175029008685,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.016418765800888507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4792313083775483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6793113524704257,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5920769658563574,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18258014302804032,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9803021910393794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8233996650564449,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40086769828553354,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7190280730382533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9163714811366012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02123595339356357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9099784660026032,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9096671915790213,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5029139726090309,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8093719219878586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5963766440861249,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0040986873712234,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7788873310054304,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1151707297889553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3352552237384376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1017815147905954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5582436255758443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.787982801534208,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3420168971407385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.491228990869596,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25563187704977686,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4074533305141317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4533936991216092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5132876381578448,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.068631653582732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.100078499433435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8628573512459288,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7473605997088321,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1496216841794817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7201173311608519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3288396973130376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1904690744203772,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08425199589152682,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48811299447029377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.613366583229375,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3951634801472388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3253845911876447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3457299685718648,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5528363746804609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1375605305217664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4992949943597624,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.365106845244512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1846705543473872,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35969075609927237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.013410590522385591,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3589999116285216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5933868818230038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15346795093659085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0858071804725156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.275771920117914,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6780204750184647,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.17892980665912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2943242385595932,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2496896574935525,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4329390743852206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.741411472329618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2552384960810787,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9845306277503063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42001801517368414,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.908690672148016,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7886228228846687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1951757291097631,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4662418954929661,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9472482064786503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3588704110404999,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10123279874365113,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13705996908047888,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3151033834684547,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6652525027816475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0727770073864908,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7770566029549542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5189626642273492,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0380340497861351,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0541220120151344,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2378414330291523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8821976020185023,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.366623617723953,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6967293074231011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5790455827335583,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16193530065912243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0899810176891056,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6000769493035252,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6980057839619073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03549355975064452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8217448856661159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9722707412020272,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.00024370623030124222,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8919612889961663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24815079436862225,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2178787341887902,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.37747525062151166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2487443625745425,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38266533954685816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3519424836818703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3018860079610746,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5201585498382082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08539052009426144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.29247103717306383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4423030176213937,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5733787028707968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6074474131308659,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14098751587653446,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1565343106865287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7643496241835432,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12219282513492112,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9103886245405898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5513624934074868,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12642158338474854,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6555208674617585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39063306703646267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3933683798799051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0767853881752503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2398086154327708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13925821991409268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12995261408639042,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39834788439711627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4066432486302387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23180732659990408,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6318558656317058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4606872554894468,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8158779726296266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8324162092809162,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9656627122542968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.019318694389191954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.858393638081219,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5182109062782936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9579761174476438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.990561620730773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26628210741492475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2531228942237007,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4773011501673387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16375635412947695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8030859960551628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2863027210376663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2544536479884214,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4040182084272506,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2880428463183139,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07580298390935572,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0880150931587325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9930743581494273,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1532288183411281,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15306464039587026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9962380880197754,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.812139539409371,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.551599915097931,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.36976074425493943,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5985679755619102,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7721556890021154,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6257970975397479,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2780327316116353,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5778689697530894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11789816226537808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9571071403710549,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6613517197930473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16448551037599626,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0756617429496291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005486256604913148,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1043673146291944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.585979523058966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1841868136486051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4728668739570045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4889331542898436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15036412412547762,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004901909632703497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3176118849905203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.06824976296593,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.00268113065134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.354441328575494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8459234641781747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5947049887537025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3672296871172831,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9081288825924052,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3145335930120641,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1401957248943833,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.091089007148666,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6186243969394665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2892037891006973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38871468166050255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9045590364470386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20007405754193092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24452635305818696,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8575259199081902,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":3.440146165727759,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5638336905369729,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.068313063619539,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5142106518423373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.528284604426438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4825750726495847,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7674016705028001,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0336967934346366,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0721764921568844,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6647167348472456,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.39630837967337607,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1818515375649512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4963333521752161,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15616856367969226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8704698691944566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8188569781156769,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20997087465331926,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3430569982858351,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6782435281618302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2432804983828974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2213758526039246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.49570059954221,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.099555519066164,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5916340086614763,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.369851614113232,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4625812717356492,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9090423115660747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0449846166859569,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07862388966934215,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6273511208234813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39939341784949356,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40429771463942027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4859420460503231,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7011817483262185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8565944266909761,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.810911740526412,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.586122161256551,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5158681913403454,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1916764114235145,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.008571804062078433,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7312338660886553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07878683455077012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15005711045372092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47271490404122773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5551217420532342,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1691149547433595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6346489272121553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.214838776787388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13542804413215837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4433240340906241,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4186167343122511,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.017060684783566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4866510291636102,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.44948532930324264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0905211717862961,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9643188508936933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.846591382754655,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.17884439730996424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09117297247621824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31946755880807165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0107226723105125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5866621240269869,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35852220535676566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.05619577804362177,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3043057305866065,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004682598487849613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1006025645585846,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2659945936430435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0249103793032923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7791332376219957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5208182681998651,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7311541846743996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20728575140449843,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.175663379861912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40079349518159463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9657259180395652,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9496582378219126,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0954871066543201,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29853168397631386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.32883776273511944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27161862047632374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43269965965584206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27976452266361673,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5691803172563004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8900559695129806,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8690531741809179,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.991188100354075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2677657543239636,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23285352167725046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6012502974163327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15736199144147645,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4458460554251733,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8006298091214348,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4509760437990202,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17645677484194838,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9863506629385365,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.112913799294046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7303868984335494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8160132950024266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5999484518480799,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7106336225664025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9560457288889112,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07038973203215682,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.023386054721209935,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1976664955145064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3180065569991337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.795753901817945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28119739709331826,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0082406013857588,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08698220206221385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7131638661904867,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1246886233913653,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7720185741926784,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07531589680754586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9067460877892843,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.014132970378786955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05557111818566905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.094328601778773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03199616768286542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.3613864354210303,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15631443779220514,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6048337046741532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7585822461626507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2920627017968735,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8580308459144302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.027508286813845807,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8733374585211251,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25318108024579267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9057309078930382,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.122493677691716,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.21687368309147026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19994191561430968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1156254625031845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6173314092991128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9714979661939074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.33742697816681966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.837270067651247,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8549060461574629,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7189841679707029,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.054133883558465025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5875355442752473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7024202087784504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35001460780416693,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1629841644122711,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6516271766434345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9700558777345409,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23719060836581335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.30437347721363384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0475639568872428,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2590873771140658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2829431606075383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6081380053310699,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4980286621656975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.20401556974571533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11753047277664061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.460067837472457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.5970068102588324,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9064460063647226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2139300136255495,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6407247444381553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5435841291688327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4319000175809085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2352235899451045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4009753503912674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1515157792303268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8073639219949376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.31941604713499,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.011763658945339634,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.3031212020285095,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8711598502355442,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4415838590357515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5923709500447328,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5405918855121625,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36915485486893845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.044015579707663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6806117204198509,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3946082701676755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.433262444452237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2809348020024917,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6167465613631599,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9174522326605945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.303659385515075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1444260437891627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31359855494172284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.827965738933697,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20886068183675074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0181395024808035,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5495564114623008,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5935901772565061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8489516282968159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5279518090396038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6774548626709525,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23221524735082727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8964618626496531,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1769654804012317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3981957372533457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0329719766569094,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10932408069482973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5182779244227104,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5394091643630073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.14560822446265928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7601992626966761,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26455350958709684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31366136498901626,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8767478300204156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2789195485080071,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1134735109843938,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09097338872593252,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6652262963210892,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23935148444342416,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0586352857790926,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.42195233545498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8155891120290197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.086909558916387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3983669373101553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5806672777640535,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3984180358930243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2911785795328379,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6837133466153538,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8013897466712078,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.072647785485368,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3194622894375136,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3915583987997542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7620711660153798,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46642466566448143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0915012498858347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5817623554143544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1716470904805458,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1143501716778823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.722773428273033,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43928617700371747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2374420498059453,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4313169302171123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08368198582838003,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.21690197185414684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.612272645712347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18470206519952198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25392855313111606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3252872767237143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9532228638552497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5005305206808699,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7802524243155107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.436890954026386,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5883020242262882,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8683687528764215,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19080315723660002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2997828382779457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9305471774862126,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6070149980387867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7725735105306315,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02223298126381268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.875167806516373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6731500016752787,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1522945467444266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.39133601599792023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9715441392358639,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7967157668428584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1674895165025427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0277223638338304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16707794040150015,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09956051828819179,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6819525300318103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5368797357403956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.161429277450119,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27652594955659904,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.787135313219541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5515293813228235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9282794105954073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2444796798543538,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16426502008085464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16205344349330453,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3885451082372104,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5758404841896594,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0271794158465704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9957732824637282,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.597917194011154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8468649591295971,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.806422636840542,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1312152163768707,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1153766162783465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0922907021256152,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8939848358643934,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2421517007907683,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6473483589277502,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.332947633650122,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07646767665779564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02008399640616121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32002146732788317,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5948027765949906,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6430401799540877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1863593952997662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8829090682228165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2601655732850525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8014714490175625,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5179641874170926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8908612651688421,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1526471497429656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6783659861273255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3354899767180082,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6882232148181013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6294933647937979,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8978456031989381,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.44252451220249,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9512607411619451,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06288379451712167,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00912137405211011,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.870028774218786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5537571073658132,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6652734957944912,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49270858947562646,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19131023297198135,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2866667270161165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3599166715575457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2805655679415087,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7577120452561261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5799523251630707,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6453045585373305,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06991787979724995,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7022918636585125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.259630667759696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.42414476384769,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9845149255503665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4001092745323915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25070248400855366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7187210211563229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013307077919324062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6452121901765198,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6335424938999981,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5873252161540332,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24583867748311716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3459529084268316,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1944213400160959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7921230574649911,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.118132675382956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1049106227722802,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3680089899634704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7761428781818203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0401685106940315,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7916261484939513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.383299648117032,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7486475516757127,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9664553826937876,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10727954924637295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9072267987890146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.80579867951151,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4674508582850554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5344348108780452,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.727291295685959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8953693264882414,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8376849886593094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5288035380058975,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.469535116585885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5424251830814164,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3028105130337604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8518909254062885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.258590151976973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.687784475322371,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.121747540439268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9198410034323339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.06168421811984,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0759743160922963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2190718006573942,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9953285524289632,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39511787454318714,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3762978681623488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.63027015856186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0015054084236720833,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23442679977503111,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16416562237197319,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1265455711107575,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0970374143702468,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07963208276146183,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0291889707987658,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.894792317974213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09775044858599058,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0123584409838973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13030230238503027,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.366671446453235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2956354192353454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4685400993170785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06834530668476768,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0088119820750467,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.05318960954914731,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1638397428947607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4783369916622715,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8245904325935465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2824722363785859,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03584930962528743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48652057849140373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2693212176359183,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5647342846982681,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3996423399676514,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.905927784165676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7419796160963759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.990147319275367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.509225141311334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0556753770028622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.100074952631001,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5718901133670231,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2673174969645955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8032328963998872,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9639529745188598,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.954435787689612,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.256494065172856,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.595736359603141,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4934609914484662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6227910763872981,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8265552976013852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14705197242084367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0495227439471866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22332839397108106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.342027296406941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9226712518051055,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0948614151987659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6539044122558781,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7735723800773346,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4288134889733959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09840856366403017,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8039291884498097,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4122063114666603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1080764488492898,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.00973818189860598,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08029114650351588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31283035422062033,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6238182091693676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3593914576503923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9267083938481848,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2183368039693567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9766517749635817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1182669607878006,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.46913195076540326,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7246986200513343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8580166702061147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9209994126164656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47101118078999127,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9157769105910618,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22361430169369045,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4265342572456001,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9059453643212159,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03852390548758278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7890787962459713,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5194193766588828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9466485355102279,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9941634414710303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0012894436976252,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0983946468033339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4081041016590117,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5240465841807187,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.718925226495541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7389520603230331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1089789058234896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9243988513403125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1950043706222377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5177399534864522,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8710221542824486,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8153572103588766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4794540691776938,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.879523816788649,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.527288623831899,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.896620654706791,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13249450034025534,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.994142865156125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2685030456105766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9033258095437184,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7614314580340884,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8130659990903073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6571503754534893,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3100063096129806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.946376078817353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8663112654816647,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4662570388895153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0189336322433862,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2051929111138584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17192959973324662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.374467539109073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.38761499712753134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.413640960355885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3620338057157189,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9970998229389938,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.731579361758965,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.43904257899249455,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9118193741135538,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.382469195731086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4807525710829013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.815425069576087,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.009070082850347383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3364062690858565,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7400394957507879,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9678178829009454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.171454189962637,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9681495946781844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9290647331774826,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21292600962848063,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6490352232802645,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6450322803367086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2141014372946155,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4809245623985947,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9635464675425496,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14559021376720915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9491038373825726,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5344615929610539,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08007933907115472,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7082515994308567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9936993305222828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9551558576819255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6218752984317173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2407310435480192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2552520304740735,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0514744126254838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.682056947827776,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3801410154943294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9753078627396583,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016381951673174466,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0949333298293173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9614076927556443,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5707095618096476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7641921230296118,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2021645763850644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.323051479642952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2465916717904975,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3773963294135476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3469589440949408,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2928973881405446,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9863859793818848,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.080405064477711,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9918305453949698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4303003734323307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0477519996555023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19971638575424455,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14439147017544052,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.561067385763828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2129575822833845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26198969166530306,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4884035419364312,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7534589457644456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5091720891743905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9951884020113035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1280315064164181,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9558998089475339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3007006648782133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.51228169206012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2500914166360277,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4095862868009217,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5049135898550285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6645579546758795,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.479331456383738,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8763702013481627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6521505692949936,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.844625206186858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5086711543954214,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9571326963725895,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5190306985919229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7469850967574492,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6590336649719069,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.986715865967787,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5274998818603098,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6868733432638692,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.885756877147815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13713671215255818,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.12321879262932267,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1524451902163264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7324860269039704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6457330677972783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8529722075552773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.567789096036138,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.780804871236748,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.028193496333486223,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9934931464387682,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6738068992219501,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3280417649292242,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7349485396966116,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8759131024565394,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3014560634695447,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.953968815432392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0312409971198555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1267058294129146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6790709061879778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8535432690445144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1641231237554761,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03683129034546173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3105037719192083,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8423988853608431,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2399625305622646,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4801347353623489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.77416491147393,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3999587197206398,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.941453346557727,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08335227764062259,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8214378319647837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9349171336138782,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.44175421919909486,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9080086207602176,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08354840561484123,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.896908204454069,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1331391905542896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6251526907735285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5703119008165154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8854421027020489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5466578504865534,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7958886371230163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.853636633215293,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06514112023375551,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9242199362385812,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.900119216904915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7518824200452743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2049195125028338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6312010095935237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9969832395169473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0894174335445617,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7496619654381274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6544770004318914,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.32940777883745564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9944180157083937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4173800972963106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1123299245738143,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9958226558028702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6228035888802133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.879560528741003,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0316934446036643,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9500315750144206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.594924408956413,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3755073215223517,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36307998153870313,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6576383323229131,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48965490625666863,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19726663428656366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40572531542228596,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0230783897528966,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6647567531077136,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.046796746895458874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5977442570187148,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7181012669726847,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1175790295298982,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6300733811568846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45423298019144953,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6092638964307708,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9906959873653469,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0502558107713922,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2248433156266385,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9849182244766834,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2031990479021877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1683113924551218,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.006887438369902,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.711647449497192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.010706769250545367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.765587291957258,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7723140594695779,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2862882840378025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3053791297732622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4510809011144614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2643260114740933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.293775533863207,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.462954899026244,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.048239183362008,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.476831128751412,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.005324109255188336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29597171232393604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9243907641022018,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.518905783215343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8238308282212579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.304300186405865,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9657100541265793,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10053319780701608,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4462375922681399,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.557087619859999,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7641210255177824,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.435335567910713,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2651976481446878,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9749414423605458,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1572628630905357,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4738899362471596,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4199655930209416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.814160286674674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0438668068537997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2056125035329082,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.416111851792511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1154410309996177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5423802327227163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4912535848489585,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4333378824181158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2804632683447328,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8648314747275321,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5250091064657529,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45299831003654933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07294643652630262,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9127580187254658,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4230358311439808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9689716136386988,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6766838143234923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25342211211997334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.34545973348938475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4170501677300753,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14767204072422624,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23653372677943896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2735134144124238,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48776343067025874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.801155011538945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8036243196980806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8524382516003972,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1593952571782449,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2482691837574107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8473626122200089,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.391647709884261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5410451759608144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3585134866838509,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.385952927420386,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.124433650152144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3718024747041473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6906760247298291,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.584963279437702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.116244424362316,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6994395230796475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7707626171030353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1910335403179837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3061193762911851,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8108788026915974,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.011653133268309634,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.604209414134929,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33906957555604533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1721332373003728,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4133519078638241,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3603022632640842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3107823824648586,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2222625515000178,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.111396109119085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2961522600075024,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4193527394346002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5809289810551554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0464020422430726,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8644285441302526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1606644453047719,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2855174814686121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3542732345562025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5750485499050333,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5749969835060336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5730943695025204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5233817540740007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.587697855845858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8061556878201843,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0327194045392627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.265160331560336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5124764725418829,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7011479576119828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6187438970890926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.018078566159532627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1432281498103158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5575314630855988,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6872205894389571,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4324149837479943,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1310330287074533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.429710370359833,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.580622612177193,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3501085644552915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.034407966817095126,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4135600368580121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5225232419909691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26381009766073404,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4934529735475373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4202692822285021,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6535487569971057,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6031371045265139,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2730217490389837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19965175227150578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4167078183741051,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0305921072838915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7054395703218383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4031145045290434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.988674154278438,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5261722001064881,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.170136228346307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3706030272071743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4024541202864698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4336996585609652,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1279118958671845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8807245654805165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1466509810180052,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0585508233777952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.857299079822874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.911953438245252,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4570568529664953,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9461524448631558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.916136620342579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.922146989474657,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.592524339811459,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.401217965787842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3047983493547286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8859100557054522,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11846841367198158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13179722513162817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4346494377881176,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.36567092853867056,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7879588577804064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5113659002646314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5409550294361112,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05679665398493805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4517184461719643,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9828061304771674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4307183930499128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2824045509122173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0748456056884659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05933552373117923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08374655605891013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8080607802633941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2711521528982095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9180539092382785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5894709663042481,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6307735387927917,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6592593658891328,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8439794384523585,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.157764621883842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2599841100973102,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.953923349331895,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3070770735174535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0051813350228556,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05179524586147588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1142962288180644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3665504127522401,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2077091933961768,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07045369916268251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9639155081756012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03562486106065288,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4216173802050305,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8987364763450669,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.910907759469541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5204779223504739,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7401587176806919,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.23495505750024,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8835213465373166,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.349793261835444,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3804223432335685,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2122465477181628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.500741087305454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26685845755831084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4832378531168744,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18138297766740008,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15966352335842338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.07453799322855,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8459146643663096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18024268759468454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9234856303313554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4870728446969794,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7650263471394134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7438543387542276,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7621209529323334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6071818101053101,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6699796629212247,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45052986275839046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2874309880752808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1528872281696314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7868228988722943,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3149802110245177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5708689599600696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.435895512593559,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6175474221106962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.222331029958867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3775471263923764,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2875023439014903,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9345900511100527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9915366947769542,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9022438774645853,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10404484742907094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8203861511835324,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6386712152931286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9500471978987948,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5211937720229267,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5094184758116298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3318778466838146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9568100028676358,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5092186575928133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1536739616214153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21184150723233053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9944849562515525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1083699965828546,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.029868106355119828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5783944953467843,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7260457900356054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8258773801504122,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8689230372197567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7679076435323786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8944769819038445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21524558553048445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3704814452092116,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4301268498931798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7252487674324475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15589304068448362,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1433052641898298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4104960664465702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.699790288721688,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8849709278871929,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6242483196947908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8120204460142313,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3483567388073139,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4216473847365148,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0049689563853144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3864990788972924,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.603594645304545,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.029529515978712784,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8547540424734188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8593873772009402,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8444210158226628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2021646677739133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9978500422232064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7904062170183526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2755509064820942,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7763573615790089,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1944408827919193,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6720043223378003,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3248529366354473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8047164195405028,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7901844004950616,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7859642957010013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3128069196054084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7064699441748745,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25576734911345866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3198376579727178,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7035346133790732,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0219454319115564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2526912851824448,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9381722398560699,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5182801460059263,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2772970045629202,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6947954973229997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9224338133622489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9568359053559203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0524785072368563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2549540482328445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9238628510799067,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.373506534802059,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4634523641212773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3028906360516128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5849563257181578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.542553335316764,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9218646573056919,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1926170575002488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.998129040486294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13731533687434672,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7806225912985494,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8722472945743323,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3652595760442483,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6309445859750036,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2718552209993086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6757151471086664,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6114671183084872,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6827433030048091,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9001874431138108,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1056795172894298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4867461263404578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.246168652315506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.245390985414021,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0268407425927997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1381704341171717,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41698857614842977,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07038621701262837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0869511129655467,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.287081756575434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7052882709429662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3410698905206035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7531266610811773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6502035049359272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.34343833277754454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3916480900959476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9478002788622759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1406575254469553,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24843017187688377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9490884985336763,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.329630296202685,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5141014355982692,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06979721272034434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0933189547969584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.330254185186445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21262423306321665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8057112974205456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1303014292246383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.781790621234197,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6592461160747987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9476533200574622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8686130021513736,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.101252510396999,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5956205436808304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9594643268926824,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6363151880545734,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9214064971735167,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8749473228231994,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8229621901821322,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1910216150149595,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5515717709235366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6950130608979888,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8199061708794355,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8683802032933419,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9789428162362146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9713573530350779,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2972036162791154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9937801991240272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1224287022054718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9387645769408568,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.744566993160185,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2788986305659416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9650732444528023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8268088347340607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6289255646449203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9422946571571242,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.724136215655311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4514793099745558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9325396465202194,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4703874367962473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.928559231308006,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9701600740294558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9461568569390235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9539807825840834,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0879572841139491,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9048522174946063,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8957336641327207,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.770905452654917,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0174838714907706,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.156233447359031,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.163799173359945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3869595174793825,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.457204589831246,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8636024425944933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8402427635227778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5916556585788149,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7668121082166626,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6067727324655712,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5649893103923862,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6704073596681535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3647042819101913,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6440325208683353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14024168678031135,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6881844150311904,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0455576582065285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.220663769399716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3070600111807571,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5566463048094903,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08506463192062297,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1409791443561188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2093427312049614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2123118009012428,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.43758692448804926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4023330272404433,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2904941822946667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4713672737440562,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18814366501713575,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8996992956916983,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.040414982135203115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3033213210649168,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8161876344129864,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.684937677032527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.913116280427007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6094736724738716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9340523588969973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5059507255124407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8044037480236343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0317485439892886,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5104179136055107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14035719786866618,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.058207302109536,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6876338633327168,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.35973414155398364,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.940783335026941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9507683711890866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3605221976202939,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9719968467975888,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.668552287518378,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9735503301785564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15653509226041828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33349675276851487,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3142033687621377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28707184967480304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.169664077918791,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5820815151685506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0660332599473041,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.38349011936752,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8900795607195229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8113014741230491,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.70440174446225,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0417622930236718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8851037912004718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0148944461386606,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3014093137719436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2780531974743239,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7281223671492452,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7152403101150213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8952240081229554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8324919886138678,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5550158022425844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0246216262240044,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6100424183093809,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1175713006745358,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9358208824714858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.413813422912567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.873864966398338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.261508252970526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.710279884663418,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5692160988189348,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5163375205276775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8014264969406266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5495106396899754,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9666068275733775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7797791465458763,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4262623216576844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4332116526105554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5774511231830011,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5938533410080806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.780231879114369,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9572802550589898,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3813039916997578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1726732146166436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.795236444792097,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8889831281581078,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9735477170939251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3309829031344815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6045080826684854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3149005603099209,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9045345584104978,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10164666832338876,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3272661028999373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.963929821511091,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.23202473394663814,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3404897929135111,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9270844500955255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7908008264824047,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8618722806367232,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4146026275310564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1904488500433774,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9390860392732274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.164509413448421,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.307320619721367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4387454873082932,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1544744026773186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7218100690641158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6107031258410691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.479243551325951,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8217513272785251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0010266121145638962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03363440298776954,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5164893061025535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.05516633865508869,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.879476565934628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14857264686905847,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.216585452925576,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40921160050759564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5726736902182816,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7244025988691192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2651312462325746,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6806209362358064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2487935786859854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3140714267878275,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8246982471335231,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3667916142988408,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.191149613019162,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0849205328436025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3656847581846092,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9382654696968653,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12505091567105397,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8892202805491447,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0311698797283109,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8922780949052767,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1183381856063206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5067235975834392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19480472998981435,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.695740847727345,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7195065189760723,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1533214450036402,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.018364534989666392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.345596283053795,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4083047817540866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.841184288578042,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2061253398576812,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6226084285828617,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06604583313802337,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.184491229072718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5633893377082781,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1830610783570079,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0948547563960882,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.615912504286117,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3957351065739751,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9703975370552134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2777854105208837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.192907111118343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7723483011649304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33246577833180346,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6041600537034495,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4567237240246125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7422722250865794,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.42339589050934645,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5760106263330784,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9280621611820816,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7717138903239809,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8489147653421778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.273795933151555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7534256267729567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9294185059043372,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.961076063977246,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4922862863577109,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6437659471913855,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5023839621805783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.822239017590706,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38328328242149867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0811307278672464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.85376444380605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7528158095830189,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7626963184450979,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8699421884448579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.335268398213438,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18765052053898268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06336939743515924,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.841889696231954,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8520354959128373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8211319583962169,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3595617187093487,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10305703998626159,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6778394427254701,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3123543076180666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8794412087259991,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5679025411297456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6531026448699588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5925368290254536,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.544050579763213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11513083904278298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.44968615721171235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3911126934238376,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5604822971780963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4320940684242314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5526083703709688,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.656281227543594,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21363557518140608,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3950710230086578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6460061083002286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45749414893457363,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8713515096858755,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1917969261109724,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02658925779930721,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.70892367837877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22910455051698264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5925586839517272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4803109259055263,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2864635447835577,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4322277203131377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22762459949779545,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4597898113187524,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11846055966560222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.553067717415143,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.325057369945132,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3271845875254943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5517395059244675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.135737531667159,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.913055291569789,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3411139530835107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0088929873342891,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20936234413742552,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2441976904778245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7055617820550392,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30375521453962556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2238600223481004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6302995363336303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0509042711545074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2241069508988154,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9962236679923606,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29246991454862964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30230864302098204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1214678329546772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.085426235962982,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0011657177705666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8127036577108309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5798728299704768,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22246371122866027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.044945343030718,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23470266716699625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.669437029466509,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8320064512242517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8154660500883505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36172681946652835,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42650391908797397,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1192364398820662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04916983266296474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7931679657600245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.580170079737609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23748382364207965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.587069145716041,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.21170430397077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7858579594623722,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.14638291094629,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7986733368137635,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7369868559268332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.864057115314912,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4375854032903731,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.777241827874442,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7029494504449303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5159371101199254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4459088757861251,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05038671425624168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19386680910665605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2129609757360464,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.994332274820168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2024671470776779,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2034008399307845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8529350786361327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6721800684054685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8731911549078033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0244678471963766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44625752317739537,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0651975505904536,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0217864502598002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7515002932475525,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8093603874230602,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1626184757659805,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3657816550784343,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0463334539496782,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04448646557959563,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1921878808248951,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.985275484388694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.021035093128925604,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2264029274327212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.005730701667583,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.780858120180202,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4213427023868087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28836125805965407,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7919581018205194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5536009641695817,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26889144540903676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7036903131323047,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.007264135852503334,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.020851368374943956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4998792034588487,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7767433671117371,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24351308988768647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2465618881637448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.921539302168309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8269356356739825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4379216525560032,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19333305037073834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21666711995662769,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5975442621822278,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17320902202964575,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.325417899568286,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2735619223015644,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6365237215624919,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.20547207363141,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4028406843761314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4951392074504497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21487027059034072,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.409644295887401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1861284520768027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2262344860832253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.916476462052884,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.431121724762615,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5359959919987772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0726584077644048,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.7416964379764375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7167277787562317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7096069813222426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3583934825506088,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23020961805828674,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35997625752875684,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6249328308700663,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.850940276065546,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1527144956980851,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2000771466097777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2504826806834093,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17876082745648575,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4140950710802611,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.01863401257401761,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.468002693948565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2941040039826803,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.153675133162446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48232928508169376,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5376580738907947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9843718999141908,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2772919238443562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20654760706584993,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5334622741647582,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3398294485304827,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13503989923117826,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2621594395895173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5027640693248883,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8162918134659094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6718632638495792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33274703473423484,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8218886871444949,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09279492150871675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2833442849930947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3652962954271757,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.7860582979394866,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.58126838360917,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8054363453419358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1252767599697648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5601573099122321,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04321049224053563,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3984545026275404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6112287480163356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2642866835941187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.193763622803479,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7659050759568411,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.293544583452774,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7899695553043667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8307997388118914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3527016758879007,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5316250452462403,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.261362458082432,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.433877491923016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.640726884384163,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0466726592567008,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7545759739059128,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3551472963215212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6389205788284029,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.750409767093094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7142866522304083,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09828364290883669,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8498803109930242,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3133721014879489,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5596617205548751,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.205402205316074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03212751611506012,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0571282928596212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1228982978328275,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5243295848109297,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8123089391938332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2987430928626963,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6124895107959805,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1127236569839583,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28687663598234553,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6081825154263196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.685118144295189,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18183134617994118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5615807749558664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3595613430094815,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43410637044291017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07000569843264694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.034300365925151,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3819232790028391,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13264713487740118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4960526764908628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4557342027539955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18048867166545107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31519919989484724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.003573522832880523,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.011314380159558848,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7399573418293413,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8014721563874652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.858378260094558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0249151977422852,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13674380955835386,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10010874145182609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1829219834183988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5997935458416044,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7829362460448849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7977414870495718,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6912715923819808,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4246719321557224,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27715868946843275,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8576267382879335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8126048196376691,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4906334857609094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.448524476397013,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21001438864649166,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7898884196121432,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9859743490277492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4169654461811014,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03247258031231176,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05784441372486837,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8134275989777783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9736244140536878,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5038789313154258,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21417924244143816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8266166779353648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08357831806246235,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7369289396333952,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3450025775423462,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.412122059278836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11078458733543074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5604814071277824,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.586120832296678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7885463474161865,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1698667577205207,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14409382048906316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7017629004837238,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.881162181424919,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0188292420738685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10247704161674925,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.350470464365567,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4749594564965844,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.293202849679374,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6412244036537015,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3261888010456506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8807614046155497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14073206845008351,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8586192277329836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1934733476245136,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.130516594073523,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.020457549281819663,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9974900160634362,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36160396785736126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7351973894562622,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04711534143316889,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5934872058341092,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0359862441814656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0697384439193711,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4519597434963178,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4396326592285624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19117542138404156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36270509760247244,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04205709175448742,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4918375359794123,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.665050102643809,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5353610134412775,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8569106121585043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33289872925605846,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9831591029797998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04060790703769585,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32485887098961785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43071907342686366,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1302941692045065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1540472107020558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5513199110902325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.288121725528557,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30794348793610404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.343906261693231,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3464485312851056,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0933612220216148,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8839432547127788,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0732587180296793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2878030731862418,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6431070444778317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6085623042031129,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1758648216365504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9835583288720666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02194084474927314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7546164749736064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7093521875342026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.2355835637726442,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1313148608529107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1074356108579764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0957748482457381,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6358081782328283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22178886263586076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.573182982641168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3404513854892863,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9660901884464816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.575081760792263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4198146224130769,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30551573981189567,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.198422258587068,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3092081994065496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3649708774517149,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.506574481572325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3290658936065155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.417335367526793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.017420281665727903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.034207591209094265,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7704543511317645,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2507564276505359,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0822141616835022,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8751686884485073,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43698524068096545,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.259433236972221,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8150352607529985,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18656290814118653,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0709757808327787,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20209616817231912,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.667987358851078,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7678034702026385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15366008514597623,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06680377074548993,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7272173590020033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4599297744993778,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6644696910262252,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2764824381732711,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40590033511177376,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9708101955167758,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49972571607257255,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24291794894969082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.478159130837245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.196516068369026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.007834095720431,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7130240431656554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10059030796711319,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2217800031505703,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4081362711694825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2407107434463243,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6183888921291006,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.025248166643097748,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40094625353811086,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.164534973663651,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07226383558361135,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.166716896246845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0867860167298986,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.062762976575499,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8327114913981126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46966559602220675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3429613145887043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0474749988542116,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2747495725521103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18004894790363937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9083481501891443,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0810986237456548,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9862985988550579,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8593250187213236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5633725582147097,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07504037017811574,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43823047666866144,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10480863973956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3457341443441987,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1208704950474102,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.023054559473575445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4886895704455559,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.297105175184915,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.74354846394726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20229074961869217,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08554981850559461,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7848734726930674,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18686469762447225,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32236191029985445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7873487744834506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0710429470710328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7166622574337488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21389968677480897,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07983885253519495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.491813572403467,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0363553728170344,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26679521776292187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5413817531801832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43252927369590033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9162155152622314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18641174917673212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2909050036118375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35268941613363874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5542898100546922,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1074063350740204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4730844166239914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6733472880871463,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7571455523644631,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7541837983156532,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8646173456849617,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8612147790451943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24703376730821644,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8260140868805081,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1094075601557134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1067306636592874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.101834531665978,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6478108936593892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40437488019716283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.596286181432551,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6725960900068984,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18100853156790256,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8825185072493347,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0602447818668956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7036300875838217,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7488895967569342,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.358829581433742,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.142070536767825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7333879412625688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14320006471832203,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35780234766316027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08711725103688678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09098930592076658,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30263236235916485,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8853194901463874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.663879831706248,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8999596489637121,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8725728149429528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3121509313788095,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7340054556807236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.755828683191183,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1758202522166554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5453794506226337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8437082361177453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.7564511981578126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8547328340026973,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7042408831154398,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.664948120018378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5333181795804615,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11231818630886851,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5270408310011236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17198538330377305,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9039714656236453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.061786268464328595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.942797018452606,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.445866284010363,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14243030478088067,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30614957092350814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7497583223986111,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5503232328045048,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5299638170712305,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5758577475995503,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1418274332317402,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.373533875689113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.507409724854512,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3873642420979568,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06006407868129783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.123545449078399,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.94986505876807,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2538840193733813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1997186864635727,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3682974199146056,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13843330045121943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8538199647999162,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.049060690670848506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6626253112281405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.73443436983612,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9788060201863963,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10862838072374495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1920955803059115,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7377014243096662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49765877649621065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4705000365604336,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41050517396256186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4863725157955194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0173909949956437,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3486417880604636,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.204253929978614,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.024598719487491327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04614323839553581,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6993079677873528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6857809570649378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9116585037315268,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2362847083510453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23161341648790829,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.074164036257824,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.571510941750655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4276640219401849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.019503197716538,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7032549598752562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4811112861350246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4008470429204274,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38797840701754566,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8387532067238144,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1824945291906707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31228140895494416,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3383308867339825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9591889701723016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1019146695877584,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.402223039473388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26797953150963016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.001408435913018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5634242425449418,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5186698184277142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14761744570812757,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.185211778112676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6625552521129159,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.324222656375915,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27049283303654387,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.060198247304314605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.228256715676076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2209836077187934,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4148321837269533,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2468685695867219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9781418044858752,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8705306961910045,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12324771200059034,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34801038893987496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.193279055478952,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1214906867253445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0578128774071367,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.022177232529952202,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30778219706076193,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6674113650471292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3837228389911416,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3676710300030996,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3253094721837125,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.532786134120087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.822951693956755,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4326742669507164,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9111394606423153,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2717508124070245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1301866513886399,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.492720163442015,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0755919496964261,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9277230001242187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3444998643552295,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.327300918933204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4003877826649736,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8680890027531932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2247303189618752,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14884888380881908,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.399492635921614,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6434144285403647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.95920186387113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1329667799897598,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.087178622529297,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0509355143429433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":7.5227805028819414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1839063382533537,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7784146576922616,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4701032081269223,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3000958464282368,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1235465787097714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8135237066547822,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6097418263043504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9942181817152069,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5836910502188497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6591099059487726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7283062975962785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2559077865374526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47446852290961783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3380233407133404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4483602290944075,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38645026231176527,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0881799728886531,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1256717672619923,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9960790488164777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4386516277936383,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4823761111103595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2633538097221309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23685053109221219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9179713280639186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1441751345460613,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.481633885784747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.098998670816481,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3587228143375385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24049558433740165,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24313519144155132,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5945761863208415,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.345002624159807,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.1883198488810605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6057640909851199,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.693324026240088,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.625965706812524,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0597886149100135,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6635070761057933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8927318834002165,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5563000805006864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.571863845938277,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7090590147225668,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.005409013468047531,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7455600277573675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1248378709022309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24203683121315764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8430649937515565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16518670456211507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14280182582958545,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3633433960270029,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4661274349655862,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0946322931587652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.49655831546122,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.643861906312357,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04110928042383067,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2792678165320218,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11266537127638093,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7769054808339515,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0087365247517233,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7490537699454451,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4206857737608811,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6569037519451107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0188992644677766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15630119860708708,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2313930717439213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.746308375801584,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4052030714777746,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6211384052464394,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5865784312808396,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.563834682079928,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16245212657848904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6537987062422167,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6480010246714303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4317893676114828,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.157778559179781,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7400575611743965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.532877615634495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3701027649516277,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3279922423450172,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.718199430014179,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44914553100259064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6246839440453833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8357297850116692,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26104888295536594,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.103015225088236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7059667669807738,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.415331704604871,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9810257059314262,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17627961580852627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9481596098234097,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1201509477894642,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.410923301292435,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11285802660067744,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8539310259558118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3396879121556448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28244723564770713,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21104057223374137,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4205706469360577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.654185885432966,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1409663024744496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.81076332664931,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1181032393310141,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.028722514613751,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3314019587876358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6508320130597678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7007814546266062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2853784100501142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.372573611639786,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32685303034977026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08178126435215947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8555954362518425,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6090068658640213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.830823257379473,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4960787207846831,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9614154600112785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42419759502124355,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2370096335019938,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5952548678767098,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20247749222337405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3366953582443026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7065822387513243,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8400612529166293,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35073634767108874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.332316925804183,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5900576908699158,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1613818946204628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7722318133180289,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6553694535550043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47530670533130304,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8169682049899933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0016061568141640594,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3937144907325734,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1947590742137566,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2222422197737777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25158715747558597,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08469482029801113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46895427269565426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3885610847893558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1287196652879355,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8982199861967726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3871352605065996,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5785551336487667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28201367514794595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14984598037051905,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6397880261647448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7206867143267307,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2446426757656346,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08707040044024401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9678964666696855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.482625259744522,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4914129372886933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6321808189837526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7548580921894968,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3481734582826472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.049229257846370944,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11357830523862253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7694323804955128,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.018654308922523608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29628374957942366,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.939863115575371,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8805458589162773,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39241848289728104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7911914951844743,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.236510046718904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36948943024104564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2659506768683023,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28770569440889765,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2444738253401688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29134681491682396,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14243372114240593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5089153495312433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6117154234543174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7215649947141005,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46081493876949337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04643928022262657,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.08924862828504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8351206476419869,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9293887096441596,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15740346114957382,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3439592738900192,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016581896667221156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7086532958083103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21728949656303675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6227698447543975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11377276530494562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.33476353637679,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.089012315237359,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3886133846009103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05856246588659504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5127795967846356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6429333842914393,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4686677434110647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6046929141594505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7855079307144712,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36727654341094373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.628228612226497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6463350889854935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16602203873567026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.262442076772764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5486292396514806,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4810460578584361,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.306748842844712,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.311031001779749,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11205433215264152,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3626405556317014,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2073301181327781,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.046203274506617,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.335994319484451,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5381627113887901,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25005060959500697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36346586998766955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.050223015312149163,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23197989892798423,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1558103576405254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14210093349000325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4630324457855505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7455207164224174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8712017421631573,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8923712828543957,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9539170318881793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7589078618026283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0791827662580145,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8815673081971988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8410155932633946,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5468183009320873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40295573226518466,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0486849142161123,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8379455345013538,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9723866223020472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.163354348476521,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21603295955129556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2911935979108486,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24028042571743094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5285314731659955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6528273274205076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27934758428585404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0036083466554306,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5575446786189833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3338052208062932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7220225621058806,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9723433861019556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.014501992109875654,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5085904923838267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3779538748983897,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1017989750917032,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8912193561446885,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2173553111005087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6296676312381626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2508683582769185,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.385737548624332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3071580692411003,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4749903535599675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8669991243397142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18186106331857924,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6766179292953707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3476310794606421,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8433415303069117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.54471737337419,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3494071532966872,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1319534100830055,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8283708483990213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6415765637657864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2147946645628194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4090284347108004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.298349426203194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10406666319845426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47170248545775634,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2035396409532138,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9778920951925842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.87976023826328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31524428080421507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.079543370794517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.474160416177627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3100686578733645,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.791889335083955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3746536046451833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9860622585214236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7388534769841988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5039834568989034,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00621416538882835,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.718433422348181,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.030066672979688104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2397119002233639,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5082647583319008,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10131198989475106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6721249605484125,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2782868649421589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9054111762753675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.170669165525596,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9048479943331964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49078883300457327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2293422585004798,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23020128387004082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41781022563821296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7522252456554782,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17151533027997676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5029701018121235,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3122711453321913,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0784538190131896,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2102454317284157,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.150333080328699,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1036544631623828,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6089242797828653,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08183378081306664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0579271507664496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6109885924048137,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13333079502357648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4289395028087864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.642676591047974,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6522492033963525,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3273590349482267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11711191475848151,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1637093255298085,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12442404091823292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2549542565186946,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2488364975891544,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.076204044994322,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.9069707259236117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07300779494952167,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04552282438124896,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06612099243947236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1894603563404496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21644484862582036,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5757610113791378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1197476111556637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.098841074512353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1630394469830353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9673395486616667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35510872140439886,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3923478830619608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.015562131750914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.640807061543329,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5365226669197869,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8672496588051524,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.035583780026566356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3395429086350706,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7988949699959834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3190965165083965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7331514402868031,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.462004434323655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31299413726587605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5852575138570004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8595066407393578,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.007581461302178318,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7855684678552122,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17372954674204155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16413004870748898,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09310408345128098,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3997072825311303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6993557212738042,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38952050035903685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5414943816573388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.010552796993276943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.016215579538471,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9973620570953519,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04174238179708121,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8846119597624609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35347675482699253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0703623023226145,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.606635540962245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2435560580309262,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1940643419315822,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2598554520787706,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5462993193261723,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42574020611861857,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.925548872434387,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1066086920027198,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4611663370837844,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9972365001865997,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7264953160072872,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.025076879509320964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.076764378427889,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03573499311027965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9518575361198082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06571692149971642,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7880854957467726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1223604310015116,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05657245949310657,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4235612212286637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.015866688236484062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0035954287887696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21599434331138673,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.144217393006954,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.297673810705411,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6847819079701196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5823131577270174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.742093291475086,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2550193147972115,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48818879173877666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18790018423879024,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18621660298589604,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5257062824994962,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08365931504034221,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1304522992248436,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.050034641700904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7206919091736873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.387565476311656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08066895678195786,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7347145776201216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.2764864559622473,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3935670660140724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3601867013770482,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1332508610290652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17100312190535602,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9655398599726224,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6098202373289698,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5260298664881953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4860660053240859,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05340119273459527,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12025294536135231,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9259299335237096,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.037713294012339,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4477743977422203,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12240508085921381,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6683364719200464,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5587088555762902,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2814844072001326,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7495187529967078,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8567974879989069,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0528260732039636,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20154072994679456,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1647090407671388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14256651811850593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.604979535024729,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7076015111012526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20153221362633875,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8433378745295652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4387225908120926,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15491306978992037,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.32687926175414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6325227248011185,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11530833234432201,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6895184258112335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2036195496010687,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18007188785955028,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30714533886416967,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2734088794176704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4912800543028577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6691103764133173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9082893503123503,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7425064061580254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.560185542731286,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6289469730967534,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6431822339765507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1778646891235156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5313472613429219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6873754602919802,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2770287622143895,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9205067458611358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37465867250603085,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.039847409109662044,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.464129257681991,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5471565279327573,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8795859212219777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0566866632443508,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19657937666905903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7107879490730017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.3275280702291345,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5654607412333341,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Mean","value":"0.01","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Std Dev","value":"1.02","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Skewness","value":"0.05","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Mean","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Std Dev","value":"1.15","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Skewness","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Mean","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Std Dev","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Skewness","value":"2.00","unit":null,"product_type":"TableEntry"}]} \ No newline at end of file diff --git a/gallery/gallery.py b/gallery/gallery.py deleted file mode 100644 index 90a824f..0000000 --- a/gallery/gallery.py +++ /dev/null @@ -1,327 +0,0 @@ -""" -Example script demonstrating trendify data products. -Run with: python example_trendify_static.py -Then run: trendify make static example_output example_results -""" - -import platform -import subprocess -import sys -import numpy as np -from pathlib import Path -from trendify.api.api import ( - Trace2D, - Point2D, - TableEntry, - HistogramEntry, - AxLine, - Pen, - Marker, - Format2D, - LineOrientation, - HistogramStyle, - DataProductCollection, -) - - -def generate_sine_wave_example(): - # Create sine wave with noise - x = np.linspace(0, 4 * np.pi, 100) - y = np.sin(x) + np.random.normal(0, 0.1, len(x)) - - # Create main trace - trace = Trace2D.from_xy( - tags=("waves", "sine"), - x=x, - y=y, - pen=Pen(color="blue", label="Noisy Sine", size=2), - format2d=Format2D( - title_fig="Sine Wave with Reference Lines", - title_ax="Sine Function with Noise", - label_x="X (radians)", - label_y="Amplitude", - lim_x_min=0, - lim_x_max=4 * np.pi, - lim_y_min=-1.5, - lim_y_max=1.5, - ), - ) - - # Add reference lines - hline_upper = AxLine( - tags=("waves", "sine"), - value=1.0, - orientation=LineOrientation.HORIZONTAL, - pen=Pen(color="red", label="Upper Bound", size=1.5), - ) - - hline_lower = AxLine( - tags=("waves", "sine"), - value=-1.0, - orientation=LineOrientation.HORIZONTAL, - pen=Pen(color="red", label="Lower Bound", size=1.5), - ) - - # Add some peak points - peaks = [] - for i, (x_val, y_val) in enumerate(zip(x[1:-1], y[1:-1])): - if y_val > y[i] and y_val > y[i + 2]: # Simple peak detection - peaks.append( - Point2D( - tags=("waves", "sine"), - x=x_val, - y=y_val, - marker=Marker(color="green", symbol="o", size=100, label="Peak"), - ) - ) - - return [trace, hline_upper, hline_lower] + peaks - - -def generate_scatter_plot_example(): - # Create two clusters of points - n_points = 50 - - # Cluster 1 - x1 = np.random.normal(2, 0.5, n_points) - y1 = np.random.normal(2, 0.5, n_points) - - # Cluster 2 - x2 = np.random.normal(4, 0.5, n_points) - y2 = np.random.normal(4, 0.5, n_points) - - format2d = Format2D( - title_fig="Cluster Analysis", - title_ax="Two Clusters with Centroids", - label_x="X Position", - label_y="Y Position", - lim_x_min=0, - lim_x_max=6, - lim_y_min=0, - lim_y_max=6, - ) - - # Create points for each cluster - cluster1 = [ - Point2D( - tags=("clusters", "analysis"), - x=x, - y=y, - marker=Marker(color="blue", symbol="o", size=50, label="Cluster 1"), - format2d=format2d, - ) - for x, y in zip(x1, y1) - ] - - cluster2 = [ - Point2D( - tags=("clusters", "analysis"), - x=x, - y=y, - marker=Marker(color="red", symbol="o", size=50, label="Cluster 2"), - format2d=format2d, - ) - for x, y in zip(x2, y2) - ] - - # Add centroids - centroids = [ - Point2D( - tags=("clusters", "analysis"), - x=np.mean(x1), - y=np.mean(y1), - marker=Marker(color="darkblue", symbol="*", size=200, label="Centroid 1"), - format2d=format2d, - ), - Point2D( - tags=("clusters", "analysis"), - x=np.mean(x2), - y=np.mean(y2), - marker=Marker(color="darkred", symbol="*", size=200, label="Centroid 2"), - format2d=format2d, - ), - ] - - return cluster1 + cluster2 + centroids - - -def generate_histogram_example(): - # Generate three different distributions - n_samples = 1000 - - # Normal distribution - normal_data = np.random.normal(0, 1, n_samples) - normal_entries = [ - HistogramEntry( - tags=("distributions", "comparison"), - value=v, - style=HistogramStyle(color="blue", label="Normal", alpha_face=0.3, bins=30), - format2d=Format2D( - title_fig="Distribution Comparison", - title_ax="Multiple Distributions", - label_x="Value", - label_y="Count", - ), - ) - for v in normal_data - ] - - # Uniform distribution - uniform_data = np.random.uniform(-2, 2, n_samples) - uniform_entries = [ - HistogramEntry( - tags=("distributions", "comparison"), - value=v, - style=HistogramStyle(color="red", label="Uniform", alpha_face=0.3, bins=30), - ) - for v in uniform_data - ] - - # Exponential distribution - exp_data = np.random.exponential(1, n_samples) - exp_entries = [ - HistogramEntry( - tags=("distributions", "comparison"), - value=v, - style=HistogramStyle( - color="green", label="Exponential", alpha_face=0.3, bins=30 - ), - ) - for v in exp_data - ] - - return normal_entries + uniform_entries + exp_entries - - -def generate_table_example(): - # Create a comparison table of distribution statistics - distributions = ["Normal", "Uniform", "Exponential"] - metrics = ["Mean", "Std Dev", "Skewness"] - - # Generate some example statistics - stats = { - "Normal": [0.01, 1.02, 0.05], - "Uniform": [0.0, 1.15, 0.0], - "Exponential": [1.0, 1.0, 2.0], - } - - table_entries = [] - for dist in distributions: - for i, metric in enumerate(metrics): - table_entries.append( - TableEntry( - tags=("distributions", "statistics"), - row=dist, - col=metric, - value=f"{stats[dist][i]:.2f}", - unit=None, - ) - ) - - return table_entries - - -def run_trendify_commands(input_dir: str | Path, output_dir: str | Path): - """ - Runs trendify commands with proper OS handling - - Args: - input_dir (str | Path): Input directory containing data products - output_dir (str | Path): Output directory for sorted products and assets - - """ - # Convert to Path objects - input_dir = Path(input_dir).resolve() - output_dir = Path(output_dir).resolve() - - # Determine if we need shell=True based on OS - use_shell = platform.system() == "Windows" - - commands = [ - [ - "trendify", - "products-sort", - "-i", - str(input_dir), - "-o", - str(output_dir), - "-n", - "1", - ], - ["trendify", "assets-make-static", str(output_dir), "-n", "1"], - ] - - for cmd in commands: - print(f"\nExecuting command: {' '.join(cmd)}") - try: - # Run command and capture output - result = subprocess.run( - cmd, - shell=use_shell, - check=True, - text=True, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - print("Command output:") - print(result.stdout) - - # Print any stderr output if it exists - if result.stderr: - print("Warnings/Errors:") - print(result.stderr) - - except subprocess.CalledProcessError as e: - print(f"Error executing command: {' '.join(cmd)}") - print(f"Exit code: {e.returncode}") - print("Error output:") - print(e.stderr) - sys.exit(1) - except Exception as e: - print(f"Unexpected error executing command: {' '.join(cmd)}") - print(f"Error: {e!s}") - sys.exit(1) - - -def make_gallery(output_dir: Path): - """ - Generates the gallery - """ - # Create output directory - output_dir.mkdir(exist_ok=True, parents=True) - data_dir = output_dir.joinpath("data") - data_dir.mkdir(exist_ok=True, parents=True) - trendify_dir = output_dir.joinpath("trendify") - - try: - from importlib.resources import files - from shutil import copy - - copy( - str(files("trendify").joinpath("gallery.py").resolve()), - str(output_dir.joinpath("gallery.py")), - ) - except Exception as e: - print(e) - - # Generate all examples - products = ( - generate_sine_wave_example() - + generate_scatter_plot_example() - + generate_histogram_example() - + generate_table_example() - ) - - # Save to JSON file - collection = DataProductCollection(elements=products) - data_dir.joinpath("data_products.json").write_text(collection.model_dump_json()) - - # Run trendify commands - run_trendify_commands( - input_dir=data_dir, - output_dir=trendify_dir, - ) - - -if __name__ == "__main__": - make_gallery(Path("gallery")) diff --git a/gallery/trendify/assets/static/analysis.jpg b/gallery/trendify/assets/static/analysis.jpg deleted file mode 100644 index 72e80d045d702cfe0f0c0655123e89d1a5c4e8e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 312163 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�c?;NQ&8a59`=e6cTh!T+Yi65@oP zIIb+@p;hRZR#|yD^+IKNl!i#!g1|b`;)w#6Y!-0WZ>~B0+wxGaqLxzIaLiRvvyrJT zt_Nw-eMt+Nub&pqbd|oO;=R5fGt(U-L^+3pg!*Y&@fBpeGm85Xk|bEC#kyli&9mnd zY<|gBpD2&Nk=xpPLR!J{8q3v=;2`;-O^Y=Jhy^@}tU)XScmlfyMTL|GfG2R{C@|IR zH%rM4R_yHZB0cG8vdLZr=O5uUpY((&y}Qr0hxujxEemS*{|*!1GrqPmWG^~qP(l-sDI zP5k2p>e(98+UPSXFN#MoeO4m{PXS9h_hZE574c({Tow_3mu*%hDDW z$PLRtAuj!vPe<4Q{;xnO#MWwKEH-{6sNJC6Ues2GQg%TH~`bu zW@OHsdF9L$if>i<<660?!U1cpGm;_~cB>+?&d2S|bn%Oh>R6qlx|f(J)NwlH)Y%1S zKpOUR6c)PfzS7dFo$I*C9LCMu$xb<}0aF0`fCvEA{&Vj18&UR8d!|1Q%^#k#UdW-- zxloY9CS+rC4aD$ns4L(aKE64^{i^!-iyI-&f-WXw#++UE!OhTkyzN~_*}6Py#)iaA z@B7Gg2IGBj!_d>AMC6B!)uDD$CsUh63qGECqGxj*00e*#w*%V$19;g6hf<_os9=y9 zm}HrUYb7U8I}ARIi|=;G2d?Yxo7Vp9Q}os)7@E5}Lhaqbhu`gre1ScyB|G$gF?8N_ zp7n#AvHtjeP&}z*JaYxG)p^|q6fKt^r+?mx|FShR*O3)*f_Tx-n2)p-DI$U3L)Mff zdE^^1xXfKeMbjmR>n`WD8>S|F)<%&<<^!)cqdSTTo?_0fC+a0^!5opH`s>2N`wphK zQsnftFZ~||HBMXD=$8yF*6(qN1l15l87&9d>T?&Krg2UZaX_v2g+BE!wchl5#5@{9 zk+F$Wq#^8nnu>}~3gk#ZRPY*Gzc6aM^HB2+cSQ#n8y2=5cK3bs#)AIyA&zWl>oxM0 zJ{|L2d4p&?hfZQ|G*&=hL}0Iy%XdmAY=~{G!6!76sXp@!9W@<0(t^^JL$0nKFu0|Z z8)9%4LASO37dzjc%)=p7=32 zMk6Jcq$<J1tOZs&-6O%?5EKl4ap_ewLJNSj;~v)Z&nLM8Dv)>w7y;H`~CzcSM$ zG9Ectb;W3C2X@koJymmQ?jboRg&VA57F6WWp7TnRG7X(PUc3F$IXv02 zS6+rOu8qU9ZoacuOA=_X#KnJ%Hx+K}K)@AMP8+2By&RV6x7?QbNxoN?V)t>avF)v9 z^2f*pL<0jVM%Y@g(d=eZ@q^p>7d3A^4$z!GV4g1`+w`7MI@jlX-+be;!GXB_01`lR zO+FgGLW>@kD^lfDJJ@vHH`HQQsdVLv`gEb`^1K^rXRdtlw1M{Ds_T^*^QUER&ao

d&Hi75iwL|YIoxOCAh-awZ43|meHB=c8mJlr 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

R3KLZMCjR5Xz7AS1kzS12(f#cE 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 z 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 z%0D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 diff --git a/gallery/trendify/assets/static/clusters.jpg b/gallery/trendify/assets/static/clusters.jpg deleted file mode 100644 index 72e80d045d702cfe0f0c0655123e89d1a5c4e8e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 312163 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�c?;NQ&8a59`=e6cTh!T+Yi65@oP zIIb+@p;hRZR#|yD^+IKNl!i#!g1|b`;)w#6Y!-0WZ>~B0+wxGaqLxzIaLiRvvyrJT zt_Nw-eMt+Nub&pqbd|oO;=R5fGt(U-L^+3pg!*Y&@fBpeGm85Xk|bEC#kyli&9mnd zY<|gBpD2&Nk=xpPLR!J{8q3v=;2`;-O^Y=Jhy^@}tU)XScmlfyMTL|GfG2R{C@|IR zH%rM4R_yHZB0cG8vdLZr=O5uUpY((&y}Qr0hxujxEemS*{|*!1GrqPmWG^~qP(l-sDI zP5k2p>e(98+UPSXFN#MoeO4m{PXS9h_hZE574c({Tow_3mu*%hDDW z$PLRtAuj!vPe<4Q{;xnO#MWwKEH-{6sNJC6Ues2GQg%TH~`bu zW@OHsdF9L$if>i<<660?!U1cpGm;_~cB>+?&d2S|bn%Oh>R6qlx|f(J)NwlH)Y%1S zKpOUR6c)PfzS7dFo$I*C9LCMu$xb<}0aF0`fCvEA{&Vj18&UR8d!|1Q%^#k#UdW-- zxloY9CS+rC4aD$ns4L(aKE64^{i^!-iyI-&f-WXw#++UE!OhTkyzN~_*}6Py#)iaA z@B7Gg2IGBj!_d>AMC6B!)uDD$CsUh63qGECqGxj*00e*#w*%V$19;g6hf<_os9=y9 zm}HrUYb7U8I}ARIi|=;G2d?Yxo7Vp9Q}os)7@E5}Lhaqbhu`gre1ScyB|G$gF?8N_ zp7n#AvHtjeP&}z*JaYxG)p^|q6fKt^r+?mx|FShR*O3)*f_Tx-n2)p-DI$U3L)Mff zdE^^1xXfKeMbjmR>n`WD8>S|F)<%&<<^!)cqdSTTo?_0fC+a0^!5opH`s>2N`wphK zQsnftFZ~||HBMXD=$8yF*6(qN1l15l87&9d>T?&Krg2UZaX_v2g+BE!wchl5#5@{9 zk+F$Wq#^8nnu>}~3gk#ZRPY*Gzc6aM^HB2+cSQ#n8y2=5cK3bs#)AIyA&zWl>oxM0 zJ{|L2d4p&?hfZQ|G*&=hL}0Iy%XdmAY=~{G!6!76sXp@!9W@<0(t^^JL$0nKFu0|Z z8)9%4LASO37dzjc%)=p7=32 zMk6Jcq$<J1tOZs&-6O%?5EKl4ap_ewLJNSj;~v)Z&nLM8Dv)>w7y;H`~CzcSM$ zG9Ectb;W3C2X@koJymmQ?jboRg&VA57F6WWp7TnRG7X(PUc3F$IXv02 zS6+rOu8qU9ZoacuOA=_X#KnJ%Hx+K}K)@AMP8+2By&RV6x7?QbNxoN?V)t>avF)v9 z^2f*pL<0jVM%Y@g(d=eZ@q^p>7d3A^4$z!GV4g1`+w`7MI@jlX-+be;!GXB_01`lR zO+FgGLW>@kD^lfDJJ@vHH`HQQsdVLv`gEb`^1K^rXRdtlw1M{Ds_T^*^QUER&ao

d&Hi75iwL|YIoxOCAh-awZ43|meHB=c8mJlr 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

R3KLZMCjR5Xz7AS1kzS12(f#cE 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 z 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 z%0D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 diff --git a/gallery/trendify/assets/static/comparison.jpg b/gallery/trendify/assets/static/comparison.jpg deleted file mode 100644 index 89a8b6b878a13b952f63cd228e295b538ebb7996..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254491 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�|2aOZK|Lk1_!IBQ`hwl` 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 w7NeYJuz#OZJ~9|iG2U#nE*eXOMW056 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 diff --git a/gallery/trendify/assets/static/distributions.jpg b/gallery/trendify/assets/static/distributions.jpg deleted file mode 100644 index 89a8b6b878a13b952f63cd228e295b538ebb7996..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254491 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�|2aOZK|Lk1_!IBQ`hwl` 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 w7NeYJuz#OZJ~9|iG2U#nE*eXOMW056 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 diff --git a/gallery/trendify/assets/static/distributions_melted.csv b/gallery/trendify/assets/static/distributions_melted.csv deleted file mode 100644 index 7b2654e..0000000 --- a/gallery/trendify/assets/static/distributions_melted.csv +++ /dev/null @@ -1,19 +0,0 @@ -row,col,value,unit -Normal,Mean,0.01, -Normal,Std Dev,1.02, -Normal,Skewness,0.05, -Uniform,Mean,0.00, -Uniform,Std Dev,1.15, -Uniform,Skewness,0.00, -Exponential,Mean,1.00, -Exponential,Std Dev,1.00, -Exponential,Skewness,2.00, -Normal,Mean,0.01, -Normal,Std Dev,1.02, -Normal,Skewness,0.05, -Uniform,Mean,0.00, -Uniform,Std Dev,1.15, -Uniform,Skewness,0.00, -Exponential,Mean,1.00, -Exponential,Std Dev,1.00, -Exponential,Skewness,2.00, diff --git a/gallery/trendify/assets/static/distributions_pivot.csv b/gallery/trendify/assets/static/distributions_pivot.csv deleted file mode 100644 index 5c08930..0000000 --- a/gallery/trendify/assets/static/distributions_pivot.csv +++ /dev/null @@ -1,4 +0,0 @@ -row,Mean,Skewness,Std Dev -Exponential,1.00,2.00,1.00 -Normal,0.01,0.05,1.02 -Uniform,0.00,0.00,1.15 diff --git a/gallery/trendify/assets/static/distributions_stats.csv b/gallery/trendify/assets/static/distributions_stats.csv deleted file mode 100644 index af1ce0d..0000000 --- a/gallery/trendify/assets/static/distributions_stats.csv +++ /dev/null @@ -1,4 +0,0 @@ -Name,min,mean,max,sigma3 -Mean,0.0,0.33666666666666667,1.0,1.7234558305915473 -Skewness,0.0,0.6833333333333332,2.0,3.421622422185125 -Std Dev,1.0,1.0566666666666666,1.15,0.2443358344574122 diff --git a/gallery/trendify/assets/static/sine.jpg b/gallery/trendify/assets/static/sine.jpg deleted file mode 100644 index daf801978b41e3e35266154b803c58d5a39d3b06..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358688 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%0A{4cK+3X%k5xmmP3h?hgtv!%d1P-D>gf`LV0Nqr} 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≫cLtg35lA98!lizfEN((&!ZjZ5p)cR>2oXw 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 diff --git a/gallery/trendify/assets/static/statistics_melted.csv b/gallery/trendify/assets/static/statistics_melted.csv deleted file mode 100644 index 7b2654e..0000000 --- a/gallery/trendify/assets/static/statistics_melted.csv +++ /dev/null @@ -1,19 +0,0 @@ -row,col,value,unit -Normal,Mean,0.01, -Normal,Std Dev,1.02, -Normal,Skewness,0.05, -Uniform,Mean,0.00, -Uniform,Std Dev,1.15, -Uniform,Skewness,0.00, -Exponential,Mean,1.00, -Exponential,Std Dev,1.00, -Exponential,Skewness,2.00, -Normal,Mean,0.01, -Normal,Std Dev,1.02, -Normal,Skewness,0.05, -Uniform,Mean,0.00, -Uniform,Std Dev,1.15, -Uniform,Skewness,0.00, -Exponential,Mean,1.00, -Exponential,Std Dev,1.00, -Exponential,Skewness,2.00, diff --git a/gallery/trendify/assets/static/statistics_pivot.csv b/gallery/trendify/assets/static/statistics_pivot.csv deleted file mode 100644 index 5c08930..0000000 --- a/gallery/trendify/assets/static/statistics_pivot.csv +++ /dev/null @@ -1,4 +0,0 @@ -row,Mean,Skewness,Std Dev -Exponential,1.00,2.00,1.00 -Normal,0.01,0.05,1.02 -Uniform,0.00,0.00,1.15 diff --git a/gallery/trendify/assets/static/statistics_stats.csv b/gallery/trendify/assets/static/statistics_stats.csv deleted file mode 100644 index af1ce0d..0000000 --- a/gallery/trendify/assets/static/statistics_stats.csv +++ /dev/null @@ -1,4 +0,0 @@ -Name,min,mean,max,sigma3 -Mean,0.0,0.33666666666666667,1.0,1.7234558305915473 -Skewness,0.0,0.6833333333333332,2.0,3.421622422185125 -Std Dev,1.0,1.0566666666666666,1.15,0.2443358344574122 diff --git a/gallery/trendify/assets/static/waves.jpg b/gallery/trendify/assets/static/waves.jpg deleted file mode 100644 index daf801978b41e3e35266154b803c58d5a39d3b06..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 358688 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%0A{4cK+3X%k5xmmP3h?hgtv!%d1P-D>gf`LV0Nqr} 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≫cLtg35lA98!lizfEN((&!ZjZ5p)cR>2oXw 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 diff --git a/gallery/trendify/products/analysis/0.json b/gallery/trendify/products/analysis/0.json deleted file mode 100644 index 743347a..0000000 --- a/gallery/trendify/products/analysis/0.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.2293869511406794,"y":1.5260908699347133,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.067670294465443,"y":2.120686897888613,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0657305878841563,"y":2.1014942678814856,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.7134113895872995,"y":1.2905779116862908,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1704078216806693,"y":1.755246167451225,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.6534202131963174,"y":1.2454102720459173,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.051961511562936,"y":1.9682887769448008,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.8382147857415716,"y":2.0154505751856964,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.218879573116304,"y":1.8190699356140168,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.223969820463248,"y":2.8834434324160156,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.567710100341034,"y":1.5255681291527736,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9105970937826362,"y":2.058803810565909,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.66471018551152,"y":1.5628622701948476,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.732114423728197,"y":2.6284552816228235,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.2192915965962348,"y":1.8012987295728946,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.40292143995342,"y":1.1813273616504505,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.3854275891835814,"y":3.096022286645942,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.202123292253476,"y":1.4036613941565776,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.026864544368701,"y":1.707760708109181,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.276381118285125,"y":2.433789692048709,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0449639621104976,"y":2.0581074676196547,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.23746660378692,"y":2.672637678917217,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.3405307190301587,"y":2.3247189426505184,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.7576986775520043,"y":2.376766636382165,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.6708025182419202,"y":2.0025764738089387,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9127101827143071,"y":2.403830609637984,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.2176101324338573,"y":2.2836676485075627,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.081436483806827,"y":1.8168702890376982,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.6835801426257517,"y":2.2572121831738974,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.186651749403805,"y":2.072741285584121,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.121067216499362,"y":1.2896379390255932,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8760601697393382,"y":2.4044254971677135,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5004060873880087,"y":2.2911467146145994,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0550597541883144,"y":2.410807714499176,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0883012938850327,"y":2.8674459541589945,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.38416520937676,"y":2.3414705846405335,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.0955894141166556,"y":2.6221785345723325,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.3687337138153364,"y":1.993541160853837,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.484994770098094,"y":1.6069863083232863,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5809319681758625,"y":2.754750344160127,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.154237504603358,"y":2.346046510733334,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8487527922575995,"y":2.470578487270819,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9510698048186736,"y":1.8564705888547959,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.0207933835124114,"y":3.366400577460152,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.887591868720823,"y":0.9620683358943791,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.6468624708815116,"y":1.9667242264887268,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.4052493751058988,"y":2.0220144950612715,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.370512289827568,"y":2.3149006716002116,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.173778076863228,"y":1.3353456047431929,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5915325547902766,"y":1.887014255393696,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5245498443850067,"y":4.115186034567542,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.390826364983078,"y":3.1313899162197023,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.251902151809179,"y":4.42716629814519,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.504162318309582,"y":4.2167320500656995,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.558953527791063,"y":3.5665810334555292,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4307943274262995,"y":4.346109291843548,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8882523608377935,"y":2.8095143776051916,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.415361335219546,"y":3.875373630422971,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.930586667350216,"y":3.5081609679966728,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5465166081819266,"y":4.090506355417837,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4081458805744087,"y":3.552123581656824,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.062865313450237,"y":4.795671458142072,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.140092170475891,"y":4.188465216424496,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4733090765662182,"y":3.193796685552496,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.012677952830704,"y":3.753790947100872,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.734516680977997,"y":4.492052073185238,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.66996464870554,"y":4.1140408062191,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.399736177183914,"y":3.2405606364435733,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.806362206632632,"y":4.694718882817694,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.266625826576648,"y":4.633916668692967,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":5.042615118195862,"y":4.384139402381813,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9781549887060828,"y":3.4866564066481063,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.944650728867333,"y":3.932269107065387,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.752849198640845,"y":4.029615706315989,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5237980277944194,"y":3.062208177076953,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.702874131015756,"y":4.293297842877625,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.491841215754401,"y":4.045698188957907,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.806501755746823,"y":3.9683429210445818,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.440183766907806,"y":4.029921440748331,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.559851185177766,"y":3.613435911827522,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.36981096544455,"y":3.0429766617817355,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.935397124857709,"y":4.011134908365138,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7811734179599923,"y":4.240064323818742,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.3334560981044055,"y":4.1041423787190725,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.650455853745514,"y":4.698345871239965,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.169946884221101,"y":3.4907805755481,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8853475977795218,"y":3.758152530079089,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.3501724885264204,"y":4.288030248433038,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.305129363906038,"y":3.767744095828678,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.083660391907226,"y":3.15334750154369,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7564506947628695,"y":4.345442371681437,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9884267507477995,"y":3.9308136715263506,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.107835884188249,"y":4.0852365108162605,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9398504211629635,"y":5.008846248794926,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.3053894965196458,"y":3.608380815371291,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.049885916055685,"y":4.106215176932521,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.6956509448253496,"y":3.9323570995665476,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.694206915776506,"y":4.794278906352692,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.696661505405307,"y":4.293280270909037,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.078509719024358,"y":3.531144554929712,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0072067044642545,"y":2.0700878498321083,"marker":{"color":"darkblue","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 1","symbol":"*"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9567387998399237,"y":3.955643134783149,"marker":{"color":"darkred","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 2","symbol":"*"},"product_type":"Point2D"}]} \ No newline at end of file diff --git a/gallery/trendify/products/analysis/1.json b/gallery/trendify/products/analysis/1.json deleted file mode 100644 index 1387503..0000000 --- a/gallery/trendify/products/analysis/1.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.9221105500146662,"y":2.884756484355801,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.4746245460633847,"y":2.631986255117436,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.783588562110246,"y":1.7725727534605404,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0039785262929963,"y":2.962036585363362,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.3699683346943203,"y":2.7707833398521133,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.927994580165554,"y":1.657316508864739,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8063927536180564,"y":2.101937702751391,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4653415776530445,"y":1.3333361937217414,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.586854950972423,"y":2.799459123965884,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8883138200135698,"y":1.754281035173901,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.5723931887112936,"y":2.762387415280557,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.551683318623435,"y":2.109865725331881,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.688586384744068,"y":2.7032878299383976,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.335249325098969,"y":2.3485135730474918,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8366863409566716,"y":1.8165841369226898,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.595748978291324,"y":1.9236316640142477,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.215602394192905,"y":2.700611262945084,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5841498246352896,"y":1.9156963072441944,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1674357594187272,"y":1.4068543868019807,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0439999098209407,"y":2.0678558546699133,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4560099055644913,"y":2.921655468408661,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.7678911214118287,"y":1.611739618375668,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.080076141453948,"y":0.9917102997106022,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4843018842639286,"y":2.192463072716355,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.465222799152521,"y":2.5962657219950787,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5310468651343898,"y":2.175064878871786,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.943089297749337,"y":2.1812480513055883,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0596742226397073,"y":1.8257918057687221,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.114250625686339,"y":1.5869882320185276,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.11126258528492,"y":1.6232254475196248,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8348905632217076,"y":1.8746052337496495,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.3643889838239016,"y":1.6746700318901517,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.466418754928247,"y":1.1932299240480968,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9246665171247088,"y":1.1374941464786734,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1676429529213523,"y":2.3874562395479533,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.0395313745462589,"y":2.2416977843735584,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.906230284264933,"y":1.4553576284841574,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1794096481709486,"y":2.008017581610824,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1835238895549542,"y":2.4735388349263276,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4575438269548857,"y":1.6821474370792102,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8009176804984142,"y":1.4291425974218304,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8240446284788785,"y":1.4933509738999016,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.7431824283168278,"y":1.3794634083872546,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.408714442691814,"y":1.7246580742003341,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5443566317769706,"y":1.662175799816247,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.22343174819289,"y":1.0920344171276626,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.390458652737501,"y":1.5706107670736045,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.3309546421179639,"y":2.1294315792816447,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.6626031689429936,"y":3.1350169295241352,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.23554954935192,"y":2.4069056133265705,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.382758202303417,"y":2.8357669954638136,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.428274306474105,"y":4.471558988362641,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.62965793140442,"y":4.458578954658716,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9102558172377573,"y":3.811591731725235,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.936495930390198,"y":4.402746044884202,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.468845452303013,"y":4.406780827194744,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.633960710634268,"y":4.415460252711927,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.767322590132426,"y":4.174651666497631,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4475993087600525,"y":3.6471919721288493,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.470885402673881,"y":4.096965508518036,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7540586570592165,"y":3.8913496649698387,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7139556519680474,"y":3.775787375751351,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.763591507467401,"y":2.994756447516303,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.066671098074033,"y":4.431265525779744,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.660029968927538,"y":4.509520314123512,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.159549112221466,"y":4.290622958059059,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9872040749763826,"y":2.9261918541399576,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.2024204607156226,"y":4.078751680132195,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.538091411657851,"y":3.643539331848956,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.965035287321225,"y":4.432598707757688,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.6621080146827634,"y":3.652287053701343,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.901121357510579,"y":4.1436864483174025,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.2714020384639815,"y":4.543184058881175,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7446734211539194,"y":4.005848014244756,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.437678788457105,"y":4.3059969536388065,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.7082499123918495,"y":3.6739416163489365,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1636530136413596,"y":5.126730408763378,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5976473073605817,"y":4.867620531273806,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.20833087151454,"y":4.664878193848876,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1878901734227094,"y":4.4567407611391054,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8086379891204536,"y":4.072943814123825,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7910685636061574,"y":4.400951559504923,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.27678923562839,"y":4.823339286279603,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.351544270970793,"y":4.093170666710282,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.59161407824672,"y":3.8055275539374853,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.35229933525572,"y":3.9396088933717732,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8722273102673106,"y":3.928011387242411,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.6384737109644765,"y":3.9224075309983593,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4221951705447538,"y":5.3020605309178865,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.97263195622846,"y":4.7438908278074186,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9146006678023455,"y":4.516825334093359,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.864496880138455,"y":3.331679338149047,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.2203656743825846,"y":3.753800208200412,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.313845415058228,"y":3.4559658717169635,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.478830603873197,"y":4.170300033463122,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.231046748488496,"y":3.142099137971873,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.4190749773631035,"y":3.6780223789836675,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.3297859035607997,"y":3.4816482039366017,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.041573451729374,"y":3.8045061392968185,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.561754660826278,"y":3.44222064030427,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.030439788861027,"y":2.005618234755235,"marker":{"color":"darkblue","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 1","symbol":"*"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.964445487707155,"y":4.0589114035878415,"marker":{"color":"darkred","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 2","symbol":"*"},"product_type":"Point2D"}]} \ No newline at end of file diff --git a/gallery/trendify/products/analysis/index_map.csv b/gallery/trendify/products/analysis/index_map.csv deleted file mode 100644 index 2931929..0000000 --- a/gallery/trendify/products/analysis/index_map.csv +++ /dev/null @@ -1,2 +0,0 @@ -0,/Users/talbotknighton/Documents/trendify/gallery/data -1,/Users/talbotknighton/Documents/trendify/gallery/data \ No newline at end of file diff --git a/gallery/trendify/products/clusters/0.json b/gallery/trendify/products/clusters/0.json deleted file mode 100644 index 743347a..0000000 --- a/gallery/trendify/products/clusters/0.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.2293869511406794,"y":1.5260908699347133,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.067670294465443,"y":2.120686897888613,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0657305878841563,"y":2.1014942678814856,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.7134113895872995,"y":1.2905779116862908,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1704078216806693,"y":1.755246167451225,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.6534202131963174,"y":1.2454102720459173,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.051961511562936,"y":1.9682887769448008,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.8382147857415716,"y":2.0154505751856964,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.218879573116304,"y":1.8190699356140168,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.223969820463248,"y":2.8834434324160156,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.567710100341034,"y":1.5255681291527736,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9105970937826362,"y":2.058803810565909,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.66471018551152,"y":1.5628622701948476,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.732114423728197,"y":2.6284552816228235,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.2192915965962348,"y":1.8012987295728946,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.40292143995342,"y":1.1813273616504505,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.3854275891835814,"y":3.096022286645942,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.202123292253476,"y":1.4036613941565776,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.026864544368701,"y":1.707760708109181,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.276381118285125,"y":2.433789692048709,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0449639621104976,"y":2.0581074676196547,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.23746660378692,"y":2.672637678917217,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.3405307190301587,"y":2.3247189426505184,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.7576986775520043,"y":2.376766636382165,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.6708025182419202,"y":2.0025764738089387,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9127101827143071,"y":2.403830609637984,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.2176101324338573,"y":2.2836676485075627,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.081436483806827,"y":1.8168702890376982,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.6835801426257517,"y":2.2572121831738974,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.186651749403805,"y":2.072741285584121,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.121067216499362,"y":1.2896379390255932,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8760601697393382,"y":2.4044254971677135,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5004060873880087,"y":2.2911467146145994,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0550597541883144,"y":2.410807714499176,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0883012938850327,"y":2.8674459541589945,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.38416520937676,"y":2.3414705846405335,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.0955894141166556,"y":2.6221785345723325,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.3687337138153364,"y":1.993541160853837,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.484994770098094,"y":1.6069863083232863,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5809319681758625,"y":2.754750344160127,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.154237504603358,"y":2.346046510733334,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8487527922575995,"y":2.470578487270819,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9510698048186736,"y":1.8564705888547959,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.0207933835124114,"y":3.366400577460152,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.887591868720823,"y":0.9620683358943791,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.6468624708815116,"y":1.9667242264887268,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.4052493751058988,"y":2.0220144950612715,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.370512289827568,"y":2.3149006716002116,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.173778076863228,"y":1.3353456047431929,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5915325547902766,"y":1.887014255393696,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5245498443850067,"y":4.115186034567542,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.390826364983078,"y":3.1313899162197023,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.251902151809179,"y":4.42716629814519,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.504162318309582,"y":4.2167320500656995,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.558953527791063,"y":3.5665810334555292,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4307943274262995,"y":4.346109291843548,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8882523608377935,"y":2.8095143776051916,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.415361335219546,"y":3.875373630422971,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.930586667350216,"y":3.5081609679966728,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5465166081819266,"y":4.090506355417837,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4081458805744087,"y":3.552123581656824,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.062865313450237,"y":4.795671458142072,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.140092170475891,"y":4.188465216424496,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4733090765662182,"y":3.193796685552496,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.012677952830704,"y":3.753790947100872,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.734516680977997,"y":4.492052073185238,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.66996464870554,"y":4.1140408062191,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.399736177183914,"y":3.2405606364435733,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.806362206632632,"y":4.694718882817694,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.266625826576648,"y":4.633916668692967,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":5.042615118195862,"y":4.384139402381813,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9781549887060828,"y":3.4866564066481063,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.944650728867333,"y":3.932269107065387,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.752849198640845,"y":4.029615706315989,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5237980277944194,"y":3.062208177076953,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.702874131015756,"y":4.293297842877625,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.491841215754401,"y":4.045698188957907,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.806501755746823,"y":3.9683429210445818,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.440183766907806,"y":4.029921440748331,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.559851185177766,"y":3.613435911827522,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.36981096544455,"y":3.0429766617817355,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.935397124857709,"y":4.011134908365138,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7811734179599923,"y":4.240064323818742,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.3334560981044055,"y":4.1041423787190725,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.650455853745514,"y":4.698345871239965,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.169946884221101,"y":3.4907805755481,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8853475977795218,"y":3.758152530079089,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.3501724885264204,"y":4.288030248433038,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.305129363906038,"y":3.767744095828678,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.083660391907226,"y":3.15334750154369,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7564506947628695,"y":4.345442371681437,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9884267507477995,"y":3.9308136715263506,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.107835884188249,"y":4.0852365108162605,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9398504211629635,"y":5.008846248794926,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.3053894965196458,"y":3.608380815371291,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.049885916055685,"y":4.106215176932521,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.6956509448253496,"y":3.9323570995665476,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.694206915776506,"y":4.794278906352692,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.696661505405307,"y":4.293280270909037,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.078509719024358,"y":3.531144554929712,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0072067044642545,"y":2.0700878498321083,"marker":{"color":"darkblue","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 1","symbol":"*"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9567387998399237,"y":3.955643134783149,"marker":{"color":"darkred","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 2","symbol":"*"},"product_type":"Point2D"}]} \ No newline at end of file diff --git a/gallery/trendify/products/clusters/1.json b/gallery/trendify/products/clusters/1.json deleted file mode 100644 index 1387503..0000000 --- a/gallery/trendify/products/clusters/1.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.9221105500146662,"y":2.884756484355801,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.4746245460633847,"y":2.631986255117436,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.783588562110246,"y":1.7725727534605404,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0039785262929963,"y":2.962036585363362,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.3699683346943203,"y":2.7707833398521133,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.927994580165554,"y":1.657316508864739,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8063927536180564,"y":2.101937702751391,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4653415776530445,"y":1.3333361937217414,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.586854950972423,"y":2.799459123965884,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8883138200135698,"y":1.754281035173901,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.5723931887112936,"y":2.762387415280557,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.551683318623435,"y":2.109865725331881,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.688586384744068,"y":2.7032878299383976,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.335249325098969,"y":2.3485135730474918,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8366863409566716,"y":1.8165841369226898,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.595748978291324,"y":1.9236316640142477,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.215602394192905,"y":2.700611262945084,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5841498246352896,"y":1.9156963072441944,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1674357594187272,"y":1.4068543868019807,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0439999098209407,"y":2.0678558546699133,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4560099055644913,"y":2.921655468408661,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.7678911214118287,"y":1.611739618375668,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.080076141453948,"y":0.9917102997106022,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4843018842639286,"y":2.192463072716355,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.465222799152521,"y":2.5962657219950787,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5310468651343898,"y":2.175064878871786,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.943089297749337,"y":2.1812480513055883,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.0596742226397073,"y":1.8257918057687221,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.114250625686339,"y":1.5869882320185276,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.11126258528492,"y":1.6232254475196248,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8348905632217076,"y":1.8746052337496495,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.3643889838239016,"y":1.6746700318901517,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.466418754928247,"y":1.1932299240480968,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.9246665171247088,"y":1.1374941464786734,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1676429529213523,"y":2.3874562395479533,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.0395313745462589,"y":2.2416977843735584,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.906230284264933,"y":1.4553576284841574,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1794096481709486,"y":2.008017581610824,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.1835238895549542,"y":2.4735388349263276,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.4575438269548857,"y":1.6821474370792102,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8009176804984142,"y":1.4291425974218304,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.8240446284788785,"y":1.4933509738999016,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.7431824283168278,"y":1.3794634083872546,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.408714442691814,"y":1.7246580742003341,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.5443566317769706,"y":1.662175799816247,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.22343174819289,"y":1.0920344171276626,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.390458652737501,"y":1.5706107670736045,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":1.3309546421179639,"y":2.1294315792816447,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.6626031689429936,"y":3.1350169295241352,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.23554954935192,"y":2.4069056133265705,"marker":{"color":"blue","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 1","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.382758202303417,"y":2.8357669954638136,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.428274306474105,"y":4.471558988362641,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.62965793140442,"y":4.458578954658716,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9102558172377573,"y":3.811591731725235,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.936495930390198,"y":4.402746044884202,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.468845452303013,"y":4.406780827194744,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.633960710634268,"y":4.415460252711927,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.767322590132426,"y":4.174651666497631,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4475993087600525,"y":3.6471919721288493,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.470885402673881,"y":4.096965508518036,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7540586570592165,"y":3.8913496649698387,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7139556519680474,"y":3.775787375751351,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.763591507467401,"y":2.994756447516303,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.066671098074033,"y":4.431265525779744,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.660029968927538,"y":4.509520314123512,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.159549112221466,"y":4.290622958059059,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9872040749763826,"y":2.9261918541399576,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.2024204607156226,"y":4.078751680132195,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.538091411657851,"y":3.643539331848956,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.965035287321225,"y":4.432598707757688,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.6621080146827634,"y":3.652287053701343,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.901121357510579,"y":4.1436864483174025,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.2714020384639815,"y":4.543184058881175,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7446734211539194,"y":4.005848014244756,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.437678788457105,"y":4.3059969536388065,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.7082499123918495,"y":3.6739416163489365,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1636530136413596,"y":5.126730408763378,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.5976473073605817,"y":4.867620531273806,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.20833087151454,"y":4.664878193848876,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.1878901734227094,"y":4.4567407611391054,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8086379891204536,"y":4.072943814123825,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.7910685636061574,"y":4.400951559504923,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.27678923562839,"y":4.823339286279603,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.351544270970793,"y":4.093170666710282,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.59161407824672,"y":3.8055275539374853,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.35229933525572,"y":3.9396088933717732,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.8722273102673106,"y":3.928011387242411,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.6384737109644765,"y":3.9224075309983593,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.4221951705447538,"y":5.3020605309178865,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.97263195622846,"y":4.7438908278074186,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.9146006678023455,"y":4.516825334093359,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.864496880138455,"y":3.331679338149047,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.2203656743825846,"y":3.753800208200412,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.313845415058228,"y":3.4559658717169635,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.478830603873197,"y":4.170300033463122,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.231046748488496,"y":3.142099137971873,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.4190749773631035,"y":3.6780223789836675,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.3297859035607997,"y":3.4816482039366017,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.041573451729374,"y":3.8045061392968185,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":4.561754660826278,"y":3.44222064030427,"marker":{"color":"red","size":50.0,"alpha":1.0,"zorder":0.0,"label":"Cluster 2","symbol":"o"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":2.030439788861027,"y":2.005618234755235,"marker":{"color":"darkblue","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 1","symbol":"*"},"product_type":"Point2D"},{"tags":["clusters","analysis"],"metadata":{},"format2d":{"title_fig":"Cluster Analysis","title_legend":null,"title_ax":"Two Clusters with Centroids","label_x":"X Position","label_y":"Y Position","lim_x_min":0.0,"lim_x_max":6.0,"lim_y_min":0.0,"lim_y_max":6.0},"x":3.964445487707155,"y":4.0589114035878415,"marker":{"color":"darkred","size":200.0,"alpha":1.0,"zorder":0.0,"label":"Centroid 2","symbol":"*"},"product_type":"Point2D"}]} \ No newline at end of file diff --git a/gallery/trendify/products/clusters/index_map.csv b/gallery/trendify/products/clusters/index_map.csv deleted file mode 100644 index 2931929..0000000 --- a/gallery/trendify/products/clusters/index_map.csv +++ /dev/null @@ -1,2 +0,0 @@ -0,/Users/talbotknighton/Documents/trendify/gallery/data -1,/Users/talbotknighton/Documents/trendify/gallery/data \ No newline at end of file diff --git a/gallery/trendify/products/comparison/0.json b/gallery/trendify/products/comparison/0.json deleted file mode 100644 index 6a22c85..0000000 --- a/gallery/trendify/products/comparison/0.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7309801928349964,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18848125261086024,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7246231557881823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5304539431467898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4066087230466762,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9878770341444497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5072737582840816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31286514070669297,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12444933060943845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.26348508534088305,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10985233885684048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":3.2455084757151944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2955462419939754,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8752504719431866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6989403068334759,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5120625578591507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.044496939928704404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.7372994652391873,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5190062273136034,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1558192637505167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23729409998389142,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0184219932328646,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3838698167221135,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7785334757376555,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8720337339919302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.45155601565196407,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34367413402851815,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6032137335702642,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34732459204349314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38849522610217857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.415653588694212,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17886138330257972,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3672770935768785,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6219325385715837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21718672006568687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3510078924613053,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4152575360741808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13431595850153769,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0577755835384655,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0920782410014052,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5644573186863049,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.406459919589411,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7786987678221694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2313478488009304,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.213961812622584,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7423492582520004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9810355762965898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1578684905402382,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.01954998185550374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5112574139777609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5693201667032912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8822731447278516,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4002339204017085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3110399662610328,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0493832237741527,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7744638212745657,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38692854321686976,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9583352698520895,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.925446214200698,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3689061791396167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7545551117851377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.616967040225424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4506609618837373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31493508941198706,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.007847844856405195,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5429913374006476,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1198702991378422,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6166256615456376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.035703132127812,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.19331949632376097,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.176085763447161,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9895385400258288,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3346475195191783,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28418891225507265,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.08368527190901,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6002409133174642,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8284710832379654,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2148297581352805,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5790190787254397,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.01845103103925585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07164860277330827,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.017162620641992785,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9314266862169266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46717080332155486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9221542999573039,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.459210415451341,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4279041540464623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3686223115439542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8192578797199994,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1733937701501839,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1549032429551183,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5102206810172243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.636669975717785,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2778972421139958,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5829141913029696,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1715416892597972,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.36148288612723556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02952425416288739,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40476014226223483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19915666993348372,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4713332782408315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7166201012473676,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8931950492733222,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06037981119103105,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8496674510235231,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.04965765244559741,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5151701880662116,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7963948794816555,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18224426783097317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7737885015006432,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.60674989743467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0552452418567748,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0614201946411022,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5289566711259939,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4626334589242633,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9638031023739186,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3647075666418844,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5363429579095627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9553996151134062,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4019013939556462,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2440668231210928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7136126218853436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2712031201824477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7132837416253541,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16987809345673083,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7643827941919343,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3555798342030958,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28397001814626127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1928215823589163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5398436690338545,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2606657959891485,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3511870739125687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8824127261982462,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0329282681674465,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5796609163691866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0335996430159473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29056676765222983,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38114815831894844,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4416216777761541,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.008279459402272852,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02433484069550242,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04251716164042623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.44016480357637494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2142775968119095,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6362796247858432,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8258237810624424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2830798945280615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6489904524996931,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.024065310108939544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.61493827595603,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.686985257314477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.743066403991005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46565912534949816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.048622645180796974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.0452805817032732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.505815922910975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.01405994560025427,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.92943875474875,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1923563928643115,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.49577591210123617,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23022405785942038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47968960988318143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.001366793861277486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5508125315303738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7392085460427247,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8713438947004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4370799297620199,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-3.282669215746678,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.39467260785894387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9320802742140113,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7549062343472688,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8218550323615289,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.069936776328539,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46381653481548574,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9791565584064523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.142418180732056,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35688545536958577,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0354949759074596,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.43400840963337933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9339576549496607,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.217005639908198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3366100553052054,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7412292218817832,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04315343234213939,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11805744616009216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1092341806550126,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7155122998498797,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2489820803127305,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34118083766186974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.789177644062664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0007614445638784004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23184237654907672,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1973024752619243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.994380674815863,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.44673733492694967,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4130214077499609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8959690570161999,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8030952092529496,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5938051841240674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.17909774535416986,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0813323923268487,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1177599318489078,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6937677576811647,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6410081193170063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19646046827789604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02120450069391198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9302134474028569,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06385050500863287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1564573852345847,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03548091695007729,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8867868420431456,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7614364125363349,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6355269817207613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26280971927498126,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10444040231895983,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0795180305185438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4167813466174348,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.108426790586318,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5149416010627037,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20659292830374287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3142311299784281,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5741916445286293,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1765148254944644,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.263958813381921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9440027567112836,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35168188131686606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.33197167638793346,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.802285031614543,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3227405688600946,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2708757894152662,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5488412052896671,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6206718816172426,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2751899319911133,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11314965557384701,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3581444066046564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5184376605091929,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.22130840032242927,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0619660885699467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6730173126977904,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8963907061822043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35602136872418777,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.958258855690323,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.479826150036333,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.588255924442683,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.014738238240465435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1290985145017658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08344761411096394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7578261273068916,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8064497002690244,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28545556070967354,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7091436729304419,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.878136279775681,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0228300396344614,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5536734548838693,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5854624539134307,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.061682481469822,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6425545284617327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09332212268051943,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4080433117892223,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7442403700945324,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0596788728018842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16821986274248177,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.015415876475567504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.47386498345711564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0046300699224906,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9208533182639727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6440307406935436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08209449133843987,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.41785958038345267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9487718128294921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7192090758690576,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6838127490828121,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9914324212094544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6884963208593136,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.20091286486852877,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11338602648763808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8601410449000504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8879444269024486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7872574147625905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.32119002795399004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6966010685042789,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1805277704868602,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7517656669304573,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9855346034589216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2930411672114568,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.62580081698769,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.41627350592096685,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5822648204709291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5668562986503929,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1429033377695986,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1089906465479435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7326381150335067,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05097310177669755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16527635937733712,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7766527480648125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4975928679843742,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.78311969218459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4963819040508175,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.017607906595660968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7295915210184667,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13867650708687493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4375606912458967,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.262770036400204,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5052772176046467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9164300008875854,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1420859926248614,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3904203873260359,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20945168740142941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38446008401764514,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06457781014901974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.732927188387577,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8170418750911732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9790348704504314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6668409875049264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28868645377162416,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6581260438139093,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10777211495064135,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8848027855832021,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8293603217683724,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6490628759796649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10968166567183162,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3024655413144991,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7187890918099842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3686526938357627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4527520708639663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8049465510394975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5712317221320243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8090719745238616,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47782635360074194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.14470504621052377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5096548831338229,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3509468449852437,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8444028597564818,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.22561859954329477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0322784444679642,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6455508245955166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7309282985521526,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9079742015217925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13799747335349566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9249133845600985,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2185495806678341,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9293337016697427,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4222864249040766,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.0437243343362679,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8834255869492955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2379580129042957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03342332570921925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.188398981182839,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16005319966805526,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1375387423150343,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2190488599437668,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5126291142165255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.039574598181976534,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9440520182625478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.529904516431809,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.250086551640674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.744652497511601,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.627559450594921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5520472614997276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.910036935814357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20686019882637124,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48379923236542005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9884755823450337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5647960225023534,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.578698295489697,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1961843003788915,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.037152155452718084,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.238826814419786,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9459594562051602,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8545959773501657,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0184340017839948,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0476817464913493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2332105372883273,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10151452784085258,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8266068111028803,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35737352517122123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1110709178185764,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05714157504599216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08300085367893371,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29406797155196457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13491093673416665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.00926292913125609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.329445881063439,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.061665538212884376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3959003719915783,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.30375418421535955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6292656448220509,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0661958226367192,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17390806421243604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43708371696537485,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8494000910295763,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1042314266945463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15420314524415119,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28127382640821397,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3426235422016708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2954918744793398,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.449852880413219,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7719656836152695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.108857758875585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5023247881268815,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6900097460429823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7258169463037165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.17890818335415143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.433956819078586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21215846672943278,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.050479112713234,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6155297026889556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0785781993323276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.190968318110893,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.696804495622394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7393801614029967,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5623179777126404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.007630116301313,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1460775952858171,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.538462866398987,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20742812218639892,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5146555514851483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.24161402132447474,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3273861906429916,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8319107330525473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38668885801649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11036976109803144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8764575111789672,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3946744534849646,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1940580166729668,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.9561787380191924,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05534192584534813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8538728453097552,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4321607941945467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.280873756769097,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.008063388232302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15483611271547246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7480191168160703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.435882606554925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9327286457086498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38498458663929774,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2615337185048937,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.79410876010314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8042381336100282,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.22351425355385357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7832053524316885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7779292765920235,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7601466788594222,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2658509248760212,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.635317114057187,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4872337279076904,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6390837456598568,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05487948228397149,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4799301042999138,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9894013380899808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9586210378434705,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6488249417357245,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8490258843506248,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5673676206458855,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06136015758550709,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.013093248709002355,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.84041393938061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6593331298741039,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31067005052913604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4875319015831936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9842422028971778,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9526517585330946,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2851496782204543,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3360080834571213,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.23469248779905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7128044708417187,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9053199834463957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3062460834424906,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5663169042317127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.819272548926073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4046329111922078,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1219506223004094,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7911618654187641,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42465626465752887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7149708920566575,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7265330711273885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0521744441989194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5399711541837777,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46986450189817647,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7952911389049244,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2569546397387246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8323024126079913,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2563728228987123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1453082466110325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8830023179444564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.319127565226602,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5766750093055533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1548269548405767,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5328237690563585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9791447105512388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.015790107831896577,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.879243122124369,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.402394567395877,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.43793995837100447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08958409919041085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7487524465186192,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18953194243975358,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7094562973676336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4905353463280983,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08942602359493915,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8500632836284665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7895024196252131,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0928022527432044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0540872206754002,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.002616795265620103,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3418544731245941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.021418690067531287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6913841121901529,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5775487489255232,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08731492538724364,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.819973811541035,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6546092702802202,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8179798430322309,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.466612593658798,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2568464242585575,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2733440075785267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.34060932568068714,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.449042451333659,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6768659227296885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34713593218873673,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11964389824563287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48318439086195447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3204265279165062,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8658022195689113,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0525898011077212,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8959006442459494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2804733391569623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03525676711516613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0162985668285973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1087463651840574,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.329733571624109,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.180901349879515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5675016937873116,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6939617603707537,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3579615192194026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6633888218030912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6413640019642088,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3908970449680888,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9677707273784443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9707989256621227,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12173013497152209,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6928692572051941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7456014784207423,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6359012600353386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2611144929413406,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6104166386258351,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.560348666684837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.017975129857324086,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5952366863554606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6516665051909736,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5872989510126168,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0632689979594039,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7113360103808694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23102741642964286,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5937913646545062,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3190040400701403,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9766307884573238,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8670327678232271,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5285542084665831,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4443079928634828,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8220781529565708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5921111990713613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.012888698370586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5504606221864505,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3310577376737929,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38616108013194206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48741626882166256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4133806207953201,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3488067699666037,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13918809537412655,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5559986929211127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.365554726704611,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.103483584399629,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6348766338771326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2821303228216045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5674136504759725,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36659902785411064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3020190034800738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9185468605096656,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06135201874188814,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2664154304336291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4719999341870207,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5193561505922957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5691177218179203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38282084381515785,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1707214897508821,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2967136639260637,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0989698622271724,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5110011335711191,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4683265941423208,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.615516460796289,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20552968337518068,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9986271814795876,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5229624198315179,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4848148715040857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5708565673834262,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3752158612689982,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1432519850225336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1301351743293515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8525078058659894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2186149635102663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7646037696452365,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5105177892013233,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9927826491172498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9658204088560731,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.27029205542706,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6191923372567782,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0077116050516863,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7405096790738427,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0170884722035267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5137659646841337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.43888919724410164,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5299343779952571,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27905808902287554,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8600901700031821,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7720547269531289,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8190501095982536,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5452201892748668,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8398750582433898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38347236022561665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1643536920602048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8307033842804492,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04373043145294712,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7637496414531886,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15982878471548478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6045850321526887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5437969216075385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7442150942292346,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6693576134311523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38880421917604535,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23055987636743058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7004836437250826,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.133724422644048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06317747026828074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7588179660434811,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4174926393359648,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46482256925987875,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5163666697147951,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3495175308641203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0616950473524345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21272073870447594,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.611638264178754,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3045578618594043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9477366907614467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28763788698083725,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0112069353305335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5329402872892784,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0979095933349459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.077122603182911,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6381331010136572,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14321329746771297,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.789058698143484,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.635280136703765,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1597526604257933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5523695198253232,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4366239047059185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5705534553796298,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5915685272808787,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08035200293792855,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0566732971618666,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5637643278270867,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4389655083566306,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.714115693346691,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.27738917383733497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6532453961132418,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5580654219139756,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6253048257125947,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29722663942531646,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6212565806676412,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.702020307201028,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2633576595338452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7315791786925242,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6581864789518914,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0821236293549682,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1256979922825208,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2009857259304426,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5913267661128639,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.157028444918357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.117477152488747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5255908783691698,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13501664926200702,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.358430164355018,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1648384231572535,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7852738202032191,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3354924269392159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4544025021405813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11675491071821967,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5733424375339272,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3891682539071142,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.25568063779752837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15961598599978255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6054394826313705,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.846954159440083,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25254609918562215,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8723124476376513,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3423654472980608,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.518878151808137,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38171866813707167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13533331781617336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5417124724110939,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8792542529729066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.005343267282466,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9636926075114871,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.41885373941205556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.292454773876968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13154121703889338,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7419143574228424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16896358136584375,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.007413565262257,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1034025174333935,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3708077412118054,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0419537316999189,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12827003458351335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2403787066796628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5128182673028479,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8045826728909876,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5512696355414508,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2549198091018885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1915215313287815,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8201243190771067,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5496702897675345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7138205801782588,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9599801234863894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4937889866699231,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.24941911163222358,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03120094689031435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2013501352023632,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3681201998691477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9878779713143955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6547187494376493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.705079230581679,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.378120607152183,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9299506746025027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8947809675543235,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35089716898442097,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.43823317290251246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8456348564666373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.193074414119041,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0276066000336974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9783227284372806,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9912900012747727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34967233168881123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.036977329689676,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2636100568613815,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8361041445708983,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7853174739226894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7131180981173121,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5570189048745152,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.035418777274112564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5408485860110233,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6808986364236291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.453217910113022,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2476839722583715,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7151922099873436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9677474363231382,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3731859785236615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5521571468571517,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.070790298796753,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9920274079560314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.591009170717736,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03037100096124848,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05080978279959463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3024921990371799,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.086051806889846,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0751880148270394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3806889992990941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8432628434048264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9223411083038957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09283754116408595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3138157636984986,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4918417350077468,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07131113737110194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7495033672272952,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4543017420472149,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5142997866808637,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2821132181384147,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5086902580961461,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7304553719180217,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4172646877472905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5768125380977075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5986854555075901,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31348085034142026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03259180983239603,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3370374462130073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6636188235522357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13425793229212377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.752141397788532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3683919467976589,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.325729833874361,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8998396505718105,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6424014054093274,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.152131031278969,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6084696277224791,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3428863733540204,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.242249078677767,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1431233959760845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4888085985924664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.052291418341138325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24128013723308125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12025724505149889,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8861138167285396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.7081640608016944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6842505124341165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3425792446254001,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5327817591352487,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.268239740115044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4434402163337482,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11241155389017107,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9375023701709259,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1405502671091742,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09349232443423429,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9256302998115905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.37662273997001866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3749922738864998,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.8518595889554956,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4575636763031163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11225090035353619,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.662304024404504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.843474573263075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8506082701607813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07790703961248835,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.429056036751053,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7170001778077207,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7696299213771032,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08785764239793198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.107754953038343,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9159884407333254,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5268837070272121,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5623626341875516,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1301952182465649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12277382466374692,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0050344967749465,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1355798450185836,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5890896617752587,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2928506645874132,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7870250204755899,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5306915348942517,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47721121959294743,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7386732496448511,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1897442647950066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0134850888090104,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8979467673798709,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3493595478239389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1216952547947043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0242203304364879,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9245149739157751,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9800520560786932,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8582964562362174,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4910379210041544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.34132638383380404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8548471321859634,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1932148034775595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34338916588948926,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.331475712909472,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.830260798479087,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2036119840630892,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6574465282274566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.370699683581723,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8291997552290058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2815144864966646,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7409393106699158,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3636198665320532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3267679240539203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11361569865491994,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.6097291346227913,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5745133207728061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.37887107233780615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.327469812271401,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.19496429901649368,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7715913507799276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2399679260885679,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.056289372382445836,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.006137187751205,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6392300200471912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":3.175375849563677,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8813256575446166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2169234189712577,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43679529873598755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.9846322338932447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4202803091017878,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2205729918055768,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8575148038227312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4369143813693944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2090941650078006,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7661318422173583,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0609224307975065,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5952164305563903,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6270861070871119,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.670342536121975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7471693172545388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05056643653563127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.133103290135757,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.349523814847733,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3186776005524562,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6427721102683732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13162530031102593,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04135012858290058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4809929487875624,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4534210629746627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9121643516288164,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2961286495570323,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04748113208410279,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12259010253839334,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5721403049718498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.534817087554004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9701877873617524,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6568915128993111,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1833858728269333,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1208683260414076,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7228412536066507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.894168161434154,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7603185850140127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0730446076629172,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4825199890015022,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6454639638347119,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09420003471330239,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0700969508792064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.884555764955847,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0054574763173783,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.741961193931826,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6147825022363564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9803095856129033,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.971491858260082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3638124784215359,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3835409443159895,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8027509074555524,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6189589265596317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31212517330497047,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0655378413202152,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5515447408579846,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4078616842109746,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09493081091153192,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40790455836538025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13393124953891614,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.29159993160635456,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.49165390369613077,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07134438702098005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.22199317456739853,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5097598956916375,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.7360188035346953,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05324572136672035,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6019380151551549,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.432330851114295,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6117143617815283,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.656037717166812,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3973829217169658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1279513628844269,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.14662837048259328,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5665491865921088,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7802447657050952,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0889907492015696,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3408078711289728,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2816467277261976,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10910574270065564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1875893017358314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3304292533571447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.401604421935144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0739932003790993,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9862179306489437,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8354804028628092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6751649474000512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9145626443247037,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10897978332407764,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9880721143221868,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7171731742651378,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13440403776494944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23123904417033478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26037449497964066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3477565502930386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15301780987920763,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40065055076559236,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.20523900265352948,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08465549608140312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.276785933170464,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5345045664261756,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13141651177673538,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47640388445286247,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2632657521776392,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0911188281888773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.417152951728027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.0031244327390664256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6439633208722806,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9691015433723483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.49097672273169163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04490661058492266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5989844468239051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.32680641691972573,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1739448703440662,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2187169588811675,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3487888764072882,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3625260008715635,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9040913898009169,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21804889565433258,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9715841476250748,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9226932239366158,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.19502552980176027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7689313815284178,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0776469069402552,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.606002803994394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5832851542056795,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7523932263621607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.17701046931096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1526320865558377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8088255334127008,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4631309034256623,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1023457472713245,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1941734979098593,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24796303897292749,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8264036887753945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7619494108242693,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.06547905009635,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14075877025494288,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7344060631342568,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8008977548991147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8565455849549526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6278558371152445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3371519396299605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6536375006199497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7197386379865964,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6045072492745645,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8113639417516261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7495623062214349,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2372284442822807,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.327262008342693,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2837885925579906,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21203745150528563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.610457038975976,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19733064068741513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2571882343578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6834892550264979,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8955724805009702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18828238693089627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.47247497913203107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7611767089817012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.12343077373533884,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5705466140329785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7388637636675366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3266631269319413,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9088637262541583,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6625676569630392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20157170626918264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8464318792417695,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.009136721658171254,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.25847084981717,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7156751491103908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9010027026219904,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.427694673212459,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6855161253112363,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1340961514197527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7017500739427365,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44906168741045605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8356816254680597,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6866566867243264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.841763186454818,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18271461471628125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9862232743698223,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29313885922390037,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1055741759825448,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6640927742414697,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6283136373216154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6389182866668,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08703345264176665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3226369869407919,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.01376146536215428,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.23201216222895837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7303534443263451,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.69965372093555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41004556016119054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13384165587180208,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7064156026273398,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3933983504558927,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08762466461530494,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0825946699663134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2200302246148085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3853648007379493,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11745992052192156,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.31294177832894476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3826870417464998,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06220183216816588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3404183052952128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.546871328327812,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.890128556087435,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5232828417910054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1759478014904237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5842033866302274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2405869841294037,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15405166008665994,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9563344498117896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5227282688716395,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6907626413149939,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1823234757396759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.039963778760492286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6061352645576794,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8247506136897913,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1424460241710359,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7757330169231675,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7447201169649911,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8263456173608206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9047892831571009,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2548944719683814,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03776631366882155,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30416097789703134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2571915578563284,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6886601298769457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3428807594090233,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2988030661048295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.01777447882859029,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1822280614210987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4593748356350398,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.471575125209196,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.02427956531298303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9496568086485015,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2112631934941045,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8644835053836961,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40689877412830544,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6594546447614085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9926668892434956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0681097128518164,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.17194592879453108,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3378354876134506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.838248675759901,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5731765958699375,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.43326535010855993,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0443115346236151,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0798970354914985,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.674219754328691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6275782031448838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7275590048156926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9708457365430045,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2690412161564208,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9149399426011318,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21854779008271752,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.172380164030351,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6573577775495,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4776516223575067,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1188631647689395,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4910962025283636,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2986286414039245,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.099397971657174,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8225178119873222,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5381815854845593,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27575077834847317,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.559803670288375,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3225446158880465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5823354154452067,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1706575502281331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6672587613669996,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3028411418791808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4311163153358697,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04473793515995261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7852495229502301,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22446171818374694,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1087925328666937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8662818496002576,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6914461512987153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1879899389475845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9697683376608026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1546728298601625,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48376634716304734,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7654423269253758,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0362128670700872,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.40348538601928885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1757456364175614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.593653634164062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9856499853546916,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24303665931387908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1941780187116802,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.65510451696623,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0379911031220193,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7653906880990506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1229135484535924,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4314718633976868,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8111329756253838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5701738646381029,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22673904815282464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6031215124500124,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8737130985079222,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6771909036973542,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9564749420339376,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5975349356633837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.047943526521474,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7705781914990864,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.024783651542090723,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10316760747670761,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8010223519687285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7738686126783478,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2434289630281077,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5864765573336324,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7989872260498352,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3732057503499622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7721968146137455,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7628506800241222,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3325540839191259,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4319620459322424,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.955426865811496,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0131063034174614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41401691176097266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07587312899371446,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5033321868896952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35308387370359373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11602020751849507,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6833048048303185,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9001843825110543,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9698732928299227,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.276866930091296,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8527047064232298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8384622931872237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40279801343338484,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8102434387996187,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8662627828383989,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5260618849936392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8768688424855915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.650711348120307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8414779980547604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3939505253256765,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3274170054989662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0049013500850084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8771263990016815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.053748159220150526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5610731608242827,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.965927225013477,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5766203681159334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6337400406557911,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8604592035462613,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5438495076132388,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4423276141061523,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5514806907401484,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2962971302042572,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3612483126908437,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49326094469581383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3554775748956351,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9118854291742253,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5484292654187861,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21747593802914533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2492859041176696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26747193899183497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2412147541254046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.615362126533129,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.240676163148132,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3941859500792035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0572768833098096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9810648310061314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.829315464436212,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5520314476900854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6160889821688977,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1669901553682172,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6720778235158145,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5479964053015278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9783619165791229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.80152256928063,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7873693998806273,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3412418735979714,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8608941145250224,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.28647357686441266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6427892441459298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30611175516046796,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1467512659741268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.971065314863282,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.983666228962461,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1146931596526577,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7693887340449352,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.99141663404541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41200486438006223,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.441541729115337,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.318034937139835,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.043752864069025676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9451338735678103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5085576752433809,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3734472199590382,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4648321237490838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31961161275937844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.636732473020031,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7633177530751891,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2575756549013666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2667177718375675,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4739044408796533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9988542822366386,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.28196558580746256,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3632275520271313,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.806635315520925,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9610564698393018,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2430670676832962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9274355281857005,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5211253572474264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.020231155965920955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4029202271666481,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1529626038759404,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4411318201948995,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7245806900194465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2512729314500852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8450536679445206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37192524997486087,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.754529105131407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.534871836251761,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8420020630346436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.89956139928996,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.122335580070525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9090970258958224,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8272766783003718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6601883793096119,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3246357055479674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4549317347444948,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8481780570388051,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4447834928172778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4364911208418758,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7886130824095208,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5403189396555468,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8167937673199632,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6512323762703716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16501160141282023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0105017439750692,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6236494601700153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08633197725630071,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8482901400739018,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4167419961160257,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6289098697135702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.022330684820723,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.30092551694903147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8642239098164128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6147160728782732,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3626288063401653,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.599649405653817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4737317231590352,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3363001446010379,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5683348004928948,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.155186947377496,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5047302770592017,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5969161209529026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2953904596728858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9110685830288019,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4621854507423535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5251847763572739,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41411690345024166,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.15739177968188667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5298983278757463,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0823536763952952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.75671089144676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5256685273185115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3415379336024982,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6234327468377532,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3420080003733701,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3441220978264026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1359964636807418,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6541499617384963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00951103869740244,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8225145066372392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9736269791656662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9354052989027095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24303638361250846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4487759102841204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9924727861375291,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.247310253058148,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4824307583243743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0062620558558044,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.649441573592497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.038558987672559,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.011971552158589915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7336145102376199,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42446890443162966,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2407085528102333,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2721122858979022,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0087804304540215,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7420378498793951,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5614333648808181,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4045694376840747,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4946947603635854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6671510329038566,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7516194754941186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5621021564315454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2587671457688594,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26393962315528174,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.04233348024129713,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21736581970675095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7326783578094163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4700717935114205,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.569456258969586,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3070609496747019,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11848973816921937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4134899770340046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5028073803758786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1294428799070002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.025915885929309,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0868368963594817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24379087462235693,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10108956278252013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8434574671452908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4246551865934274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1226582333601511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0609434826297663,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03330102336625007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2941837111811094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7301644650045955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.973333395636196,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12249906575917135,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33180338314004976,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5065352710742208,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4269693503577501,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8792980278530877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1657745297712294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4968258436963331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9093133520215475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.635175621574549,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0011110574620563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0726889562703095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5486874362102432,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8140719428185483,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1194763860928187,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8801227177338156,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6192287726314212,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08039033753711822,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.12505501191722024,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.658747009709641,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8114328687154089,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34822803060038554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5686219850172476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5730283600654986,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8280318014091881,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5644900908670571,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08647976458535656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3004214862083807,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6500579938991602,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6375233165383358,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2333317154589838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8457683933357587,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08190933706755921,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.77093323389302,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4617250725321478,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.455130691486131,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9926291647831511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.013533851280544962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3682195792850531,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8690829573021368,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5928051952549165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6291376770500245,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.220385326099985,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5817019240983026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7209050918792035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1184919268871325,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5137204383070735,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.602210802129838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0835898734248488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0951781871097572,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5847784054201823,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9889582291090488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1758560029773628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5717302895551968,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3894243770475354,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3871666618376639,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3207547626245053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3370989586699529,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.15033931474793105,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9142608733947584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.623057741538311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7248309456451936,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7247462068522075,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3901977708595372,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7911621842786154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9739853295555436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.929387034867204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5143671112470307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44394392435096863,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8207465940034369,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5193015294394034,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.38693635283798944,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6221339238979473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0137005770604408,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5783126178394973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0332507378661666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1978538937887473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3928438341321563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29984025853732765,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0129252864145908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0992178666808048,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.404833080762347,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4714355586115526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6717485810087225,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07201193261898498,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3792743359781419,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.141128706969028,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41377835417160513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1434945236659728,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.936687010262656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19865823075122435,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6787699832486753,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5388484360383115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8831227080134747,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6066993138236678,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1244641479185438,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.779887088024859,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4254267028609804,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46421988078389953,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5133416904878603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1208158628701508,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5906703826813224,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6661565571375427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6249140222675513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7921606319528163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.317649434884788,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.164217113282061,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8953530201334923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1168778238027053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8145423416755935,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7032952334523173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12031610512299773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.244281276619624,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.611974119386875,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3440030944847536,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6137200026218186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.15845853753816153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3067931467527125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6571604146447592,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8567970706939665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.29058044144287987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7680307330100002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8718441943259418,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.013574588885961,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25245483122941836,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.785226868305016,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.415837604468027,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6800814022756736,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1206944912044197,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4623065933707973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4316066212402356,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9459343465782224,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0883317150996179,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.17059887808557805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0140003985365125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0631295678385517,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9967855028690482,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1217458461706014,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09098758194312806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5872170526366225,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9987913094111147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8030963827669142,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9824924910220725,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.20931645723158177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2290108851634258,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7432329572097776,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1580914834036733,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7364252896166561,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3876603492752704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9394859345761555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.25064713246062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8785428862857856,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.062413887413563796,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3080803765591633,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.853032689840262,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6138548450811552,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23023815270902848,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2334172060789106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.687722796307384,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7309308903277252,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20478313501744783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0815179984627403,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6689168546654614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1429121614144422,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0657813311302151,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2837948039106788,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.595842715909059,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1356859081120265,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8255703816325703,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8793988570006235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11636221508559297,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7903674336473467,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9497211967159025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6441352670057126,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1025389254553914,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8021749003598675,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6923118016088,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6762372285444425,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2734861351779303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24704212569811235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1516410807410877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.39673907292207,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7408957281839714,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6198475809418249,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4624785896290762,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7697242192361649,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.37973562695870955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3211885366428096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4401864220508962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.047905670290425,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0617581955180575,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7977964777212954,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8956635411722265,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4021480824108674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8636446167239407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.09546546319144023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8440486461916947,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15713261871269868,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1485469819570775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4910222392986188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8589743439253463,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1876128272676083,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6426646113120715,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9114640961551759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8295954936989864,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8275323483363501,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6287310789568323,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0498234538745987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3853299794528668,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6404673571255239,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.447379610523528,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4180578506742858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7671027897083778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1859574118849827,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.947634458540489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8173888867062975,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.02848423307602088,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5303604733052718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0126400043454038,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.033278032099401,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.829205737669648,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5478568718675958,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4960320880544833,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8047540200734762,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35902009931109546,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9859382056467818,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8513836031859747,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6878171258177699,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3982607305811503,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2069485609152104,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8248685823407351,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2704622445373137,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7248839307614459,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6800887933810125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12321925071505957,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9908280714342945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5188826555216974,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44027600178401416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.224319998984643,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3057957360891681,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5783984519134946,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6843735605633698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0753389576464611,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48940384574737905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.757729929917884,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9121176684347194,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7734535971535332,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9433133789215877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6885494846602453,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8057476625490603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3784655910554582,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3124882519981798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8619400060699607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33924837440375955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09923906538103733,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8001867778555583,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.415152007267956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.441333379129901,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3027033026084616,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1076879681676242,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7925750710065356,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4396534500298603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.875349692719642,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.330613417922331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6889610081516029,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.553026516481963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.782308797400527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.42409094167411965,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.984111041538946,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2807442243820484,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4072164936465503,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9360742324054727,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6723991246823173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4036828151159382,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6876689490129317,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2893967793404406,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4500638765224716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7371148601375874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9609139671880085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2447586883839996,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9438541172760866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8506481563628978,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8051591021610682,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9937901908711426,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9262061242632287,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1341160894105289,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5280665396680124,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7109070129199733,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3292900402952363,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.93143493648647,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0858018145041237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4449472120764728,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.27457363248850974,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.09463896396939475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32222362700050855,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2540123890828356,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16891649430125666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.697127481903094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4521940890255416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2615048721404656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16497866328444832,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0974512217684445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2716512463452299,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8312820998956543,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6907561171498582,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3126392588967701,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7353930080953703,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26607542101659565,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.85932288449604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.700652668526085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8204466912365902,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3071696538790922,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0700086641837037,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9062801830742506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.02714870093556998,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9858547351116016,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0736513253719644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2777968664432766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2004217554946188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5265973608157521,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6020111214182062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8715586588041258,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0802610980504732,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18030082167769512,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4660029967374935,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.480626794309698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8932366505247686,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0501467312026413,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1877539572072693,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03263218762865261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8298083977262691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.049732309640896144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7811447324585243,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03642056146536676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8672726827417852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8857163853441365,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5544210844034985,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7426476892137672,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3337800530866888,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6223951270860235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.46514714518767786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4244774749422464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.921931079231046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6470458513744295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7537728670600599,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.030518447689663,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0321754072749423,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9451524641626725,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.370554728573012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.562069845160531,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.278972578926759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0288396937945103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.356395453766328,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7427444072495581,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13357403263981205,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5659438369870808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7157272477125587,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.37046527502454474,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5068347884154805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0614973445301525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8223576088775295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4039838127569775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.660921621460632,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1875816802462289,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1493527656390294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8027064373510115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9226369637583898,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5188404939672453,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6052218617059153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.032457353485997764,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4601583872097783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5774424555490345,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3901397370120296,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2834754107635775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5688832983310173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.18482148122648,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.94211072087752,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7274783760125394,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.685735857782849,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.299081437111774,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.39525935124277334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49915377548162976,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8347058770684663,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5052233796914103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5862969034291026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9837062364305935,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4969216064441255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9043623986621823,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3666587095065519,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.730221193648402,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4641240558199504,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2512078796520245,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8136853944979432,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4635247226739905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5379509243941434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8676651728627283,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9752896492487304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08604862198316798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6663094424257396,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8708781169183513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22837659375006014,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5507143974306552,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2440617685145927,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7534088902793319,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4912301096063838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6679197898777214,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22239428711033815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3391741998506412,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6268605477565017,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1847831427488442,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.66823455607862,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2509632590520114,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7823877009579192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18569062848030793,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2632090456914744,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9084805426200289,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07530886027243744,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4329759598226466,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9010876975080033,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5992378568212318,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7889282965672648,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.859286750454908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5602940924598521,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.043673044299327834,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22972652382310654,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9717223618449724,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.863326771779278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8320649043864696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5082702574142384,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8069498721429786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.179174106870624,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.723185900491837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.23015555156618106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7133538568652695,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1994131384136582,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7796232552708791,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5569755593903278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3986763283205246,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2404625153560311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5851338996552604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3335230527781903,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2509284840906667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3062749837976457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9995381569676667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5669872092174852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6578588012569218,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.903806911387146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6527973590231264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7732587061450524,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.15614517971066366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5808905292221773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10654713833814577,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1674275871866016,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3730947192257852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5899717490125758,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7668024736727608,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8512428061075616,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9922121337898218,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8526497613534172,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.178133030300069,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3059987230808603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1212986187945706,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8214900434802876,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8760705352188527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1901474152252587,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3456420005088674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7951573657015958,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9359180588525846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.32581827299235444,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7786634475819345,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.783456207220353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4178177383309163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.684157142455469,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2786525792588064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.264313631323256,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7470643470741454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8906655430605204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4486975817435308,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03717091266964756,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10566377416012473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15282004354573075,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8055110435533206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.892014783818845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7607291906028832,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1798780279467262,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8594300810858968,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.527987123850703,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8521351738079805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9715022723960312,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1630957088185125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2707784114736937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0504197193254727,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5552058167013172,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.473800010302177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8162539116719798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4251409237929513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.09491483686114233,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9051651537706356,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.443544294024683,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2771425572992805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1308697100396028,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6010520362499134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6202192756639655,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.539010678506593,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2996863577590654,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2768627096701763,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9754265619838511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08945566211918354,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2663287985004303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4807327521063334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4803837087707228,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.059103810806257595,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6454610514362829,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.274935362893825,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7751828911900867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7243291999664385,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.04154508128311196,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5999274249330795,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5713571941637605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2737670097800917,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2335157436252326,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2763410437687743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4541090507257666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.748472710480538,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.007489637471666644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9248876004535296,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9898340326019497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5236892705841867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9307101397255444,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5633613794891152,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4647679823276394,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9450945316625066,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.378310261893231,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7614041683079407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44095999085381354,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6714180968705716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9656694795056961,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4761042579669561,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.897985347868783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9686265516975143,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9572620320273568,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7933469970417097,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.869564913523659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9509033491846832,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9138699186377011,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.275324921256484,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9666622388900694,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4435342288807007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14900137129453084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9741998377706427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5715231452822525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34502172910068296,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16469449124755497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9084753636990213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.199461521099503,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8103461321446934,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6094628767225796,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7772249363356698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.652648866460769,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3229699268232897,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8306790511347488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6875964689316785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33166675713919336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6214571822756878,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7524273389416667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3804217538651451,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7207546751515057,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5833214198425796,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8221532118402046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05434121028798522,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0311934389095927,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7473226764305054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.416813510676318,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9275627770386805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7677752374907625,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8218586990985708,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5974023103547759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3721721764177599,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36891822738240654,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6084529141501922,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2993788490993561,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4009173496389393,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0287633694426521,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6771584336380805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7115046913898846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1044813595171905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9698622481636803,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5426305085976053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4266946810815684,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.607147931729946,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8783902656549722,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5516864574523335,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6672836271855767,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1886453751686368,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8562489571628311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3729813805000659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.124940372602508,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2973774093578454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6195332978016839,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30091847467993427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4673236646301788,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0487904284806442,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0679692547109374,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9605519828084663,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5340186553403927,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8545477566777562,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4670149602733766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.870153676377949,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0758829648436976,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9485888726450695,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.861461503416065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4259216373468531,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5422059425065038,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6492081678516953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8313802872970478,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0643903026134724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.676634734325754,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5046372799126355,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0845892255695495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07188459817321474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23732813422059448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7607969503318326,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31045077365923673,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3474628009788597,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24929229488198118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.615224486167493,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3110793346126284,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4617309275786898,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47237555214172117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3187464788152798,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7391206927960623,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4250212704681561,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6463928942542914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.362976068722171,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013305493668024661,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.176649117775677,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6591957729118083,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4257196071475544,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5406226026161998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3738245560794904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.329041832902647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2606667857005987,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.152229545828932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.951686696808519,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2300190050562512,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.319844998501246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9016376052299884,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5899785672113338,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8427952878822313,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0768118333887264,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2120653746329326,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.651741236840937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3637535451799354,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.143588473218585,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.272888028547628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5788194334966937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8764974161170868,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2387384324687874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5143419351237265,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45294510816566796,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.296337962445601,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0038125214093392367,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3521549085435627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21631667565139412,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8975347529793928,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6228860409332565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4331681948589461,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9201557799436657,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.108867824270488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3045574543476737,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.173258851190253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4393963240427268,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6753144444645849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03863008666849374,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.809583368749397,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6446780264128156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0554391278044206,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7978973951450405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.041657212476876,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.325268543435858,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.360776650042508,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24184961169014216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2369817579439714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.59290073991564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5842976388355328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0278037626646703,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4366271395612134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.284077891780892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14674730273609296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20194382834410263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.833397152622245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27872878088101855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8225412855400707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2669197503376861,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03981764397360129,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16343161933229813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0671671128827847,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23697157888804843,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23518537283178667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.137556717897405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10650636175316407,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.50523260536183,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9717383005809315,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16820206792892417,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3014245923280819,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6251406477431516,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3082549401964654,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5119680548223943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.150445621215422,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.762945532279931,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0986673147514834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8327267399448562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37118698176674625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.044637570275196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2516226339564491,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1797774584387561,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7748951084971317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.95059677026043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5840596406063565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31511238744713593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2058788403517516,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8107557738270295,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.734692472057579,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2131026245003966,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2882862207842884,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3991412928740858,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.045230826044908766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2268091868237785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7239685511760492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6328334148041297,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02465016386303187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4691334423501117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7640206441641046,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2939476288966989,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06353524940708406,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10349986961715595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7527831317140046,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28954624015782343,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7797927715264515,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1868888503828274,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8446555008111104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02123636131076404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06471467552095721,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08450913990550737,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9363292415279441,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23019697008812606,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9546148159727907,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3710849381112285,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10530102308160529,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06420927037395001,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7483251009361104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31569726732201403,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.546815048972259,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2391012074679173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31440858070475053,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2268656154897581,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6959500351600552,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7527681812968283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5402184228231361,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.735535900261358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1541473383537399,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":6.818443886061818,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32424380980929723,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4835712578096363,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14700516209054668,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09831330878096517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.479981123521339,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8826786228739589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3994384787350529,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.171098066103288,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.030643371470122704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.493850915509947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.722778020872251,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6369733334639385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0729502611262627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41993566484889017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25597094980928103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03730940649930146,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.124597788671904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.375191762967554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6722051721604071,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7108106988918057,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8069129863527459,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.017241998101689335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2423785610236471,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.717920494786836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44922071680457454,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.090526919829776,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.609441508374564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5750143817993087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7381931069223076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2909041687220126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0956354495037266,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8999619967408763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4936178342301038,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6385816911437273,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4813980325053997,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6328507691128713,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3708006948229488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2375442056910227,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9430961910681828,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19197308119755557,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1098192573986814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0926997698670964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32501166213622457,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37403190609092046,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3004419562696773,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.213992206830805,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2722464389566675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6630189932359896,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7633868767590637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3417667492995315,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47397407117802715,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.059116549422333235,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.462238657729425,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9357854326323252,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09589185481611953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8439539553569071,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3432809648720414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0532461139771079,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1385706032203257,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3433713927789435,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2750525876523975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9772716592575038,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4615438887618811,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8708407911977833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43247369168957117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25967425970239405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.004839841506583772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2024481853075186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13912640791587574,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1806925820412442,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6848116311816953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.870463922048455,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45665482601913265,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0692684756840272,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.755679251129446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6836186490383199,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.161911286267561,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.758348379195696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3919941607302737,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03730196958079433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2471030508282295,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04717411770250608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09221730464676155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2726546468584517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3729536798158321,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4386327551258705,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.007691426343094783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33593749962231917,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7267477970693975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.327052850122228,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.71903905201866,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3118246802742,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5576751350714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5426671265624448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7158027911172647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5050754497930592,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16117346186228293,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00029398865182352134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06976010969120681,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5990146038522572,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6430078692158998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2794629298810842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.143311276339311,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7075257196342233,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6443792505624423,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2448441915900775,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05427815503909041,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2583652328151984,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9591407079717201,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2177362377469145,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32469215848163785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10066198357280982,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0780970861031474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.064772925714062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7458818156237801,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7675186809257675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4691647281684046,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.241115357208197,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.01694451582855106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19151804696654665,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37111100576111666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13430297445099512,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8126699881746307,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0047487285825671705,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24923466404980246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02995760487425365,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07429860135628724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.426488029438649,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6148468569019963,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0132987108981901,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5841065459434502,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0377799033747106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6091898474021961,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.005525554560558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15018571242409648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10161134692221684,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.713769231195688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48989097380137064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4160715413536873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8841644934346449,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.774160333530913,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5714133266799672,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2085725467023032,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3446986121413067,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8903638046009658,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5515887808758567,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22754806693601437,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.976016873386064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0560537908740983,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.814765867686639,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.638387138500659,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18564211124603433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2931905024855083,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.956154254880388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9662047373181328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5265402420262353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.532856733014316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06855233490352648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14275651145617121,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5691465597983449,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0594847788072013,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15462263907186044,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5605706129468832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8792567078710034,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22868550206418162,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.046540150866379006,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4989052130663497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.700320800598136,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0012910479583823,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9157376330351075,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6237466691441678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23947903185810068,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8515319521661415,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.621937517324535,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6292997568895593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04182209799001248,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5630767965254375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8622432152731898,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1070720458386747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22605608014465275,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1132323451556745,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7291706380190024,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.997543152637071,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.691755375754992,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8244293462465517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4420532388339935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26352096230990385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7643394965127631,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2609045774342057,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.788962791136519,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4168718193932888,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42913265847805043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23302326518829802,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5766404872903038,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6337384314108833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8872309363407945,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32345981072082425,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1704984678519696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5289993380727103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.021443238730124842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4905945719214299,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5377456220567018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1177421891718373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0533368287734597,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.802028261599101,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.564438212823832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21814202418918416,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8455434607892475,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4154489629057547,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.003938956337610099,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49501664996044503,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8719831248080697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26331925960397656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.503387575872178,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5472907132926813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3984362386519114,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6523710075131616,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.93857911052984,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4718954606911232,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.398380914108907,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8079698026184426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7923909365790263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0682639345401888,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.041248871916039924,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1329067426908697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46146368527294096,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7422972139807216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48611464583569153,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5843617928060317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5583970837786696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26816207860397634,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.045462763403453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1052591996162784,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.174805540937641,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1000374453465662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4235862281688283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46526544233348205,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6233311465748528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8908168162902035,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.766818251320331,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.373247301308324,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0956743729753886,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.045175831646716,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.327804898012814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44565392784208985,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6939915189680756,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18212893318410037,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.150963072758146,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21392632367034772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1844261177891189,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.335084102682842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.645782327658716,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40978125856897485,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.385604739826384,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9857215114119486,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4168351133607377,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2811884674719906,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3767602124095451,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07145851632588064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23175821884515402,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1957779689855403,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3971846263440586,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7705261011782812,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2035227936008568,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8059605625722694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.17535964210461,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7689154562936644,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4294368511526269,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6137105932437816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14315598262749027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3374381200738795,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9397885661179476,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1622658500394902,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.560378875952205,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1964498016760663,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.412077756225892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.178612223007134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4716199520031206,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.851586681421894,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07483414628412018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5216441376703546,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3378957741953112,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2399225474787571,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2305584231054816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3954408669980678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5795918329231973,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.012813258102669063,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0181563701021834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2979010734981022,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6621910058473296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7795744190679559,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6043357843135171,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22077717176909892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09215318052480018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39972597787679154,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.046180255492920604,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1969357208439951,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7672678919212859,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06742576885205809,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7211784236193511,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6895527803578293,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.440555703503105,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.915902622107633,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5005784932467193,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6216839711694585,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5479329460982639,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9475276283235015,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.9667486427293674,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18457687719433905,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.234172936873112,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1072166207726502,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8242167453435763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19034730529569446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10427496892874356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.385497916603595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12279994803077714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8439683013336763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6322932770956259,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1057516589576624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.395127051341356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7310070272548139,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7293062579332538,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16447408532748645,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.965501626574872,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14812913326358954,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.3732629812905253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8139751554125385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5963934824534626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.126691241423688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2217433345844667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.031997608433013344,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.039858344884251634,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7312773685055665,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3381034725518511,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2979545389347002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5874954983565646,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5355066807972577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14601960272601955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38924008640324975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0388948165001028,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0137093768405854,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36765968536441007,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7443742558982864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3631328807846774,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5325959242257852,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0927304346859528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6440266688884823,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45127156743220675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35947187541417747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.982089756111507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5131053389907411,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28007308028783395,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21462827723781921,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1062196650724823,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2754430033853141,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46132836158387697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.045183123885634814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013199303303961608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31447015068416806,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9148566617247682,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.655891887355987,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8810453953848885,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0063355480197279995,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3163045394146509,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47972461608125655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5980046077541266,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6568778122141707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3028958061566353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47102966996838996,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9357558283665428,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.011458112299543246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3915165172331012,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08013843176928777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6508080585307298,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.049438742302761,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.322411063074222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9672408556671303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8378610173805228,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.060811493023081975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.333329346517477,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1429454828026002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40612289807246094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.024490311804863794,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10162632526430239,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14030177745831882,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2390944365378935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8578459275559919,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07952247948839626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1889216743281723,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4123426767091625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12580416639932285,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9356736297651564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5573664024575969,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04100817079870103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6365065285316589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4462344569756404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3408803874429789,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4417020273208426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18408845521421313,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29676550315590894,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16771361831779857,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.080045619581179,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4496308403021319,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8367521488866936,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.542395033309366,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.670320829675191,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39978979810388937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45871649198862785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8699540947749838,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24452030947720016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.598947951188316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.035018108533971845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.94608988825125,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2766241540138106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.0576773150880077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5039334667083748,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9476368960312789,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4279026581671267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3715932205874584,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5846299551559055,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.32290143562286,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7998963785064155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7759817899520992,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8066634050047474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.33950466557004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.557506699542626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03136984061438464,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5069596048666393,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5604851295293958,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4647243005367994,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5456065586317922,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0572562942517107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.775166621899508,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.055194432634004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.572060778495709,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.203458704777696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18185200503624624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.023762308185573,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.554737811588449,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1554471918693733,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016103685127040315,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9896270326446813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.346242739977031,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7823213905290106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2047000697806283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.891242222263005,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4634908417430263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0879799483137922,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.412483673843029,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46800437696282365,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1908208767958444,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12059126043748376,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9812663830360068,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05571328399405627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17331206500711505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4100706004318313,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.360054591858187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12264993797680739,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20093454129569752,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2195668308064705,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.3211077112673557,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3068201909052003,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04534714632732738,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.676309524756107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3081682182356077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9122793910533864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.810509334853205,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23897404355756433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30564918603712354,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.598813305376486,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04591174113778111,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8442599365078678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8380723109338969,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30299647943941915,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9260568080014356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4329166878499233,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19441288312239002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.761884634738102,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1080159039342203,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.055115286296518906,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3973061913460071,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016290855988460116,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6707670681643491,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4530971994356294,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6503893280484079,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7441228243811959,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3158297674389892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41212674972783137,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5644673694761491,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3195677725477948,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04078706593048905,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6208940144496999,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4598270918802831,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8226005958659819,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3774063683513982,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29899672345270845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.011153418942628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9434774641884084,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5579477667161236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5336441334688184,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9024586028526245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.541674775144893,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28671189790789947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1045336198602855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.63311768557274,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10420361870102762,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.252839727341372,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7239592374244664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6207620014568072,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0244485342096603,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3493099834745381,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.269331683312394,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9887261040110521,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06551242099368845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22704420021238755,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4153645677457343,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1029380493812593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5095297938519492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5264278788860572,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1115116179848528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5543704869032866,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2763779517917186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22432102496338863,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7807590810668814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40059434161622337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5670893592862527,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4756795832051768,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6866558201082655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9985116475438242,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1026709988639845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6917461605606329,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.62425985331202,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7671390804247016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6317886844132327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5082718321607126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.109120071384006,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1310173070573587,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8534878967275007,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5277184643391533,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.949368958347335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5641432804953856,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34505191483709435,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2545190908657414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4746272046631501,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0511076710815874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.35264139724216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8331578448957755,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1627639622996506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5722747726529562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3375074414784836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3509196673155819,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4271612465497472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.152701601332832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.2968620474652313,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5910800968850816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3440292853934362,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.391829072545215,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6157745556867193,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2017099240868292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12257689222020408,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31176062865015564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19652907632485514,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5269139981620077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04501683984241903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15837308957342652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5286947014999017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2801797361596711,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3431528431636577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47665173871569344,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.694990857965893,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4690585226756138,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5215601667423859,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1223637087862128,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8780687270007665,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.878550688948586,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17258811165790908,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12682246716699316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7357032236496688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30724814517694843,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9573774608601282,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1192128544849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0996103284931356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6439620449232076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0753216070676264,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8504101410086142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33132967059024065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10648766321197682,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8843397625443292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.329819802227371,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8958670273399303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06937843418715649,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05157411453911375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46437668631739765,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7272464477097356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08779187166205288,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3125232846729247,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15882054229670076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4140033810129446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44929692186030595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6943732233059008,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7748405996622555,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09955768810295271,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.240764106330554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5830370126244222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2157506581247737,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.234863773525169,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.062322191821990294,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7954670333700574,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4795066814705744,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.857347786949188,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6739723558323218,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28619775377678763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0379735974836792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.175071937898801,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7436779080556514,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2667627211546432,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5256434713791885,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.513692526347912,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9678049234915997,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2824408342122617,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22018773312291526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9183823965184643,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.676496446248655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06549261790258856,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46978590096653855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0747509735026677,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2081134352478576,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.520005179534662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08292923634089164,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0331312512864215,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30030009017809933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29004802136095487,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07640168191689421,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7867263644045843,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.338869242501222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2849730718095729,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5107139166855011,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3929883759620516,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6441547159397476,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3371612512780213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5476312600785498,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2316381657529762,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5388166118334226,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7975635031432762,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21440728162790795,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4570213323228694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31151928716943267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8080148476491833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21901398234448502,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10039215452153011,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0143785232286482,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5709017489790216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35010349358981774,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013043948201398058,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17306037229447496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9551806231170673,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6940277835210124,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6728886158007016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5649513073576062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.234561706570474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5041234146596677,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08556633282121846,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11598151658634716,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1726184762089058,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4228992953308337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8992852201799589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25458186905238656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6859562034747153,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.0830690235374107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7242008261691134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.223236833911556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3223150906049192,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.311638247745318,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9328252271092329,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4020509786500894,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0345544584169568,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.042490120663852875,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.0944294377268506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39715381583969134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34560114251242063,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9002722792081177,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.688051770994361,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4562537992462383,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1054549065259427,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23234776581405195,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11962985594714738,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28462763816674014,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.561191631934429,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2141182835090423,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11504759495446744,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5661243146884445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1073204341984759,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3402834717069312,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.008715063702156918,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20846016820167798,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1334756850650874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5750652138993488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.964190160486327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1927959545911637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47074392404596377,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31884679599125487,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06236073966008954,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.841266183040059,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1229941698740966,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5595102167430384,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.464297068255226,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0843939139344308,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2212379056235534,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5396544544898303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.971311859331893,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06821051705208868,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.052894745897864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5278786327143732,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9251146520531117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2046459728775458,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4084562922008175,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34805124963439876,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4835937278626347,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9788725781039382,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41503441112430833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7812212161442871,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6313996712278747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32928008019646,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7005745962807322,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.985464500189792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.768108265631603,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.667236001993373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1283096181427682,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08801105098747825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3820865642111104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0181715592303515,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9283504694808533,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6232063628185553,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.364311048117249,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7837761963860281,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4595485133572173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1038845586773138,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05054311300077621,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3194395739124314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9848394784027756,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6049666792269988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6771488289062989,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5284245051446772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.695787110347452,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.171669744577247,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7396774201887542,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.303107664156575,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3336932047301766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4996917280280873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9605262440337272,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5050011019913986,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3629006949711838,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7475683303665909,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15809136114757452,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5490255574137155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45624031938999676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2142306286951379,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5901414734290766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.776858831019412,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5236073126652998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6258908417550364,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1385990098673453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.1959948457797465,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4088612181599401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.103044902053695,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24664724793053586,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4526435480655935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7579912683458472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5191503516183955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3716157772175348,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.791487817603481,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4112562518879664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4951800412813143,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21676292215331408,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4424437297064784,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.75430707372932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7736424582228206,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3143878661119086,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46204315804475443,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1719023472541763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2517909087286114,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3525221130292633,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25047919377076705,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5905989335640577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16466435211287841,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9723245712252142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26812438050671333,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7141586416618245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5146887009886296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":8.374685128550206,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8850217752470517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21222709711308868,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.52580692847704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.3508487585155207,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.149395093073084,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5742959631441373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.186490240116535,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2751413486389023,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08077275712237753,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7949805424532133,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6439963872140315,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25374988033811463,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4198170060420592,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6926226125657364,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.431434982532448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19904324474424923,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7619508169419854,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28111848062829886,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18058990009026787,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16706689381949563,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2980907416122932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.434050697228985,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.18796531166792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20767865259225862,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18845114409345903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.185715622718694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.195028091074897,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.526581677667347,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4536764220360505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.357405094965401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.283468683991995,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0887086457235926,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2982196985370495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8327359467654762,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5878896238170683,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0289889781920623,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9975986753048143,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3354375834172387,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7923367017213718,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23950970169356986,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30777348385267894,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1939224779517939,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.050347080337552655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1142057505493312,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6849390137970196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9971705514617077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9532829805547609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9842199445177492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.787058257180879,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6148104336126625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.011548796847916818,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6884442387244308,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.636663446388624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0895157157168704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.023001947983706434,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0360196060253164,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"}]} \ No newline at end of file diff --git a/gallery/trendify/products/comparison/1.json b/gallery/trendify/products/comparison/1.json deleted file mode 100644 index d0eaa95..0000000 --- a/gallery/trendify/products/comparison/1.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.120079468117885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.159985987032749,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28970162006359923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0034896864307150752,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1900485847988933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.018672755004419,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2047305536280604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5880325330713116,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.079281046802381,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6676007366804675,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9939759581300792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11294378508467533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3979186394856011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0767022830247326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7365778068193176,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.012034891073042793,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4543524095491243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6323820951100011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3706318604789957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0811133279529923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8467644862399857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9368684199573918,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4902085533512968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4805583818656307,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26037219262434985,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1200396833779322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3478681619647558,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9418670472840802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0265899795958824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2374696630649622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.33747068047000894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.045115032540837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2998143816859236,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2127428841692818,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13934858912830114,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4469256450129502,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0881641272924887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0678469920033153,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4028324326678695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7876006986853263,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.433174564058142,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7518775543041794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2151157067829501,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3648755562378347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6958318309196823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3566931878637618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2602391753832248,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0661617310083715,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.04822961666383703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.637336977706114,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.030264249892606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9789741218358532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36560697310593954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.64181870106827,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8021875645020912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7122240977976928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19358823619159055,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2948626990655026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3070914615414242,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8179811547411515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2576160235558744,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1948079879159899,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7982061054207352,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5363805717648256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31994641742955315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.282223469378326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.45672080952143845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2698878956108795,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8202162877901165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18798963994837387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06662775642133793,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3814037976273756,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5015248592785475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1043264638271406,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6572865151350569,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09126943797947167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8079507311342945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.47663899375574004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.348953265595747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14652809984470458,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1010186543581297,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.44998650233244386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.05128451469646128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2839906675475677,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5890637713021755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6903584377673045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35772465513609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2424448811717872,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0407375459419348,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8389899767701002,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9472352542504863,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2736118685289757,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.30592333305864916,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9282334326005461,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.560249162197477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.39033797479536825,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7291500043375275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3397597822101166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3330327208625012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7659259921853442,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29579883199199264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005771549198345732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.921115962229323,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18887165964072625,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6320204659342772,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9775572858850219,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.250701442800246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3109964385647264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8060337150449026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8305861381927256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6300344335811258,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1797732182968404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1604687067947421,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6713376148467942,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.127447925688627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2577191665198624,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8387441489814336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8834646789368447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7170230653460998,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21881139248285061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28402192691902567,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5809460264108127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36310956804378575,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0599996372843798,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3979339491519201,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3215901997101438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7455672135836389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38368176337163185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1410937540732708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5144659286544553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5326929816148065,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3320199814407802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1661379555263667,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4519797156361312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4419023620560685,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2490578630628841,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4588191587720996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.901247250245794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24688043714143235,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5213140340402103,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18028199120085173,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9849915417254579,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8077868514206563,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.548824922338457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.008074777938248501,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9925694455444747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20028418232181086,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04532058639791045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.023914343016710516,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3295656348262214,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7708616680391279,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8900510531406677,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.55454299142933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.022295767008040177,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08101984138462057,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4456219751636634,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6972915535171448,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1877827008895279,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9359499814039537,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.179599706115283,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-3.0148890907114687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.342476506909519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6573842031803905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0951530660700033,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4469597345214312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.304559836048395,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5805893396298237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16218576453273498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.455123300804622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9456680442002712,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.354176138617658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6727315369548842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9837034357629091,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0548704309612524,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18084100219441226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.036817724429752695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1024867899747122,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5681257896880509,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06904144797930274,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7693471776171562,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2716715306374236,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03608869423612861,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08968940148425145,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04232030654573784,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0271700354609623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48409976737215155,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2655410809282775,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.04236500834835278,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27437801892767893,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12694889851038205,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8066495297755694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02044184777771792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0141515443247557,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16268187999788028,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0945268773629824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5504968941376533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.077438723613027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5600490475270491,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3240423052931443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8652753385045975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4705760560890417,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6240255246433499,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8707625994164325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7139516527356435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8820731673761063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1197368874778697,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12646355999993317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.00791862853404046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005589806380031188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7345837323854396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.013866377553194144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40605618748538197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9165675743183146,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46085906285269973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.325307497651439,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35178447118844386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17488334979331385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6620519762539686,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7665529033357077,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.662085494664533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7444224015231452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2703875836806389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5849558289572263,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9300989989021692,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.3136383171116317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5134470213092188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9204059481276052,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36908737939600295,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7482732536155505,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2468713454136044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6286157604274308,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.078388210257864,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5164690885534667,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5343692909070064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12402150651252941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7658556107100224,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38615950449029895,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4377960865204464,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5563254488652966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4513081276332738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9463543810284283,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5408507897747048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2515998443147637,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1999152010894699,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.24541401762782708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8255050172294163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9205123877685628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5916106781398268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2611112612305004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5045672558590294,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0547694629056505,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004314816104522443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07278358308198973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6791140425942338,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7587245740778051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3094044353406133,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0842306242001005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8980952788948717,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6033214530476244,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0408416618243255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23641194909915225,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38582698674434335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10763065886107376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15498988863449503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42153100222805345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8221440223445606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7257176368113676,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4404916807669748,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6398574508230455,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.36876493055281,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11133454473273004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3090674453957074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.676515480647337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2506509898394622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5172254968272066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7861370350908782,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.249982035585684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5361821059824315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1672835719750936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5148123886586979,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6412984538977557,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13617484561137091,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39235780846412804,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9259983420688154,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4832708421912532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5439769668203354,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.352597830148396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5718671221273617,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3329132625083995,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06271689039924407,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6784422274539493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48601987064015284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.827359898800379,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8074386767592374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5541936909442975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06957090904932622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-3.2813833583438567,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4861957898964921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1630803935040512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8515998118998664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4506624452943475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.63602659454857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3811490889461273,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04710287648311384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2817128862408352,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.116224222209635,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5429962444590284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0958174670130125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5204046733745465,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42872425225921307,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0450371641799996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03921039457537817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9788053984124228,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18810824886179417,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.607412139543325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0809953885815522,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08780936327109166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0886736312131182,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5307552504342298,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.054115587940878,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5899275481441639,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4763307906966703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0556246097645254,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9840347606444012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1919670774759585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0659220713532576,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3008816136134185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.452864315792931,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7624306116140845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7901637659854209,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5434322855996321,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5823726466852489,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4651262285374434,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19294028244387665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8569601775158913,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5063840209539817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9562631777935735,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.297264342725389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5002004016511064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1009078868775015,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6252727568027817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.458308439690674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8119927680599291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9551240177719488,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2570841992020363,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.41180888294082496,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15270278091836512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6324394167843309,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1623839203779998,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1099801203384982,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4560304396532664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9561816921950694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4224432223009463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5279638514270759,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7332751280337431,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.591507311327671,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1088746195965529,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5085313886962973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.018026634665159372,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.5242371252564415,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2904865652446649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5934647705670124,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4586589426195928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5277464567170275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38907194533371586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9844877448209196,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3422647327413064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9236525286157473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5475858491423542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7159607780134586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6666478637707478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5439828605131374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11795009145546044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.51059495515519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8651688450981543,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7713611304515572,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1077215255604493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.026305800500636075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5850893902044055,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28007931900538546,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05833776904616565,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2765349236300132,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7625083372463004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42233824118060925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7256871780821674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9528491131074683,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.47759885707519373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0975107976173529,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6035877995705508,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8195622857449858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.267133121394595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8975421909178695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7237481182316082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4370898890267739,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.025583656795796134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.042316336203108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3761626060685435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0199031644966294,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2788872252045969,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02565120958509866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06725665349908073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16508182308733643,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7902363769029381,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5382800987129672,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.018724291376097768,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1550748325219284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0625930603995066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.253626724079992,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5477980609425169,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9589819848431792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1101737519839858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5667470445461694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.661234261829938,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09792380189054814,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5538877316168808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0336732711544168,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5293280785973582,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3973107163106388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.322942892199383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3465331307137776,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.974894547267515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.564293358237618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3337611121114129,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2464688117317764,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7966366486837649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5731444283439087,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11602083139703026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48850900877774134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.542925079119887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6804273299984738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.915496280934384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4501368784651871,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0595125325985788,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.025484873893315767,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8551203219409718,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1610704387805943,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5513591136676017,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1622115596002807,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2209756973722459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4211117347465985,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16334900206586403,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4513354396686838,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.382961173137108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.531823614637725,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18156161506646945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46367326247173507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6002391465664486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02778350147067911,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7594844155064984,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5112297109867523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4282359091253287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4516432254383156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0170615418834925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8112112130175816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02965726792364337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05283798235935131,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1152572601806823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5132555200566858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7493109652082396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9641765051931254,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7886401697032043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3619001697036042,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35696966051994306,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9822844810047188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06088647632836013,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.404735419009416,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6177333945742036,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0408551075472197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.030082929396038714,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1391488394389856,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5520842276261322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0216531430336264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36089150727091335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4960775410787598,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3091996194432038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19872495121595024,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6931543100570086,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9506172517795163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42854732858456485,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6943856743721964,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2587030254660136,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.033518308713741944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3230873198548139,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4458728605148163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7141706604963104,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1542617470911092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.252655779627315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5315403290198673,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.482672658443414,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.22412533296880394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9707130385184004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.291676411174275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5990034333051384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.449150058779108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.407223370467809,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04852029589321182,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1255358387998367,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4608631973516684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5903422317361727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5671885628389853,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7720680626097615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4595309871923077,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7593292093724403,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06783787565763873,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2348853577830814,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4843442926182957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6914492347434056,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11508090814284092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3689950454149413,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7655882142422425,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6494852345304842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9561656495627419,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8640274245730996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4027187504517627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7328717881635859,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06944222725243437,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0361899993139452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19339854596394832,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36967752296453965,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1855150755911082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0913658422100148,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8057449313259128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9848729406936151,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4045951401496159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.971839037913713,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40134150389519885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47198853652236206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42010950783684486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5157935768849239,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1919638784009936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7099156685420454,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3679531806669551,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9884037693524327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.018236396080742193,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.119246876916298,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.45803730294112627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2555375468188832,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.734681941601936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2420017675809067,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14690780115533478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13716478698820964,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7440709413654802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8739597047257628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20036408312066556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8474326026572228,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6428856774872632,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6579219863593521,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2852534128415536,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9482982273826306,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42003921873369326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8274947618946779,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4763960370566322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.017930281056328132,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1796104047487224,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0674291251101828,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7002444420012063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0015535834511417627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0032746516469175,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5450114099911869,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3177332621350319,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5824580523830187,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9104533650621609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.09674086415459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4881909110450731,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6415615888192874,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42282678862771805,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7640179907566302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09970169067222318,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1430427773263194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0563250369082276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5941467228928694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5122046793276166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4079175029008685,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.016418765800888507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4792313083775483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6793113524704257,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5920769658563574,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18258014302804032,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9803021910393794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8233996650564449,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40086769828553354,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7190280730382533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9163714811366012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02123595339356357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9099784660026032,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9096671915790213,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5029139726090309,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8093719219878586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5963766440861249,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0040986873712234,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7788873310054304,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1151707297889553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3352552237384376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1017815147905954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5582436255758443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.787982801534208,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3420168971407385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.491228990869596,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25563187704977686,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4074533305141317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4533936991216092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5132876381578448,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.068631653582732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.100078499433435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8628573512459288,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7473605997088321,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1496216841794817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7201173311608519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3288396973130376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1904690744203772,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08425199589152682,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48811299447029377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.613366583229375,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3951634801472388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3253845911876447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3457299685718648,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5528363746804609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1375605305217664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4992949943597624,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.365106845244512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1846705543473872,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35969075609927237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.013410590522385591,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3589999116285216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5933868818230038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15346795093659085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0858071804725156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.275771920117914,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6780204750184647,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.17892980665912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2943242385595932,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2496896574935525,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4329390743852206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.741411472329618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2552384960810787,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9845306277503063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42001801517368414,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.908690672148016,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7886228228846687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1951757291097631,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4662418954929661,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9472482064786503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3588704110404999,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10123279874365113,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13705996908047888,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3151033834684547,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6652525027816475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0727770073864908,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7770566029549542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5189626642273492,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0380340497861351,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0541220120151344,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2378414330291523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8821976020185023,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.366623617723953,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6967293074231011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5790455827335583,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16193530065912243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0899810176891056,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6000769493035252,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6980057839619073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03549355975064452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8217448856661159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9722707412020272,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.00024370623030124222,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8919612889961663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24815079436862225,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2178787341887902,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.37747525062151166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2487443625745425,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38266533954685816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3519424836818703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3018860079610746,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5201585498382082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08539052009426144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.29247103717306383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4423030176213937,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5733787028707968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6074474131308659,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14098751587653446,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1565343106865287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7643496241835432,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12219282513492112,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9103886245405898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5513624934074868,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12642158338474854,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6555208674617585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39063306703646267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3933683798799051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0767853881752503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2398086154327708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13925821991409268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12995261408639042,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39834788439711627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4066432486302387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23180732659990408,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6318558656317058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4606872554894468,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8158779726296266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8324162092809162,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9656627122542968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.019318694389191954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.858393638081219,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5182109062782936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9579761174476438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.990561620730773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26628210741492475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2531228942237007,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4773011501673387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16375635412947695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8030859960551628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2863027210376663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2544536479884214,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4040182084272506,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2880428463183139,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07580298390935572,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0880150931587325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9930743581494273,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1532288183411281,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15306464039587026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9962380880197754,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.812139539409371,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.551599915097931,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.36976074425493943,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5985679755619102,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7721556890021154,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6257970975397479,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2780327316116353,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5778689697530894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11789816226537808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9571071403710549,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6613517197930473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16448551037599626,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0756617429496291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005486256604913148,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1043673146291944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.585979523058966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1841868136486051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4728668739570045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4889331542898436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15036412412547762,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004901909632703497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3176118849905203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.06824976296593,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.00268113065134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.354441328575494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8459234641781747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5947049887537025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3672296871172831,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9081288825924052,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3145335930120641,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1401957248943833,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.091089007148666,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6186243969394665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2892037891006973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38871468166050255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9045590364470386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20007405754193092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24452635305818696,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8575259199081902,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":3.440146165727759,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5638336905369729,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.068313063619539,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5142106518423373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.528284604426438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4825750726495847,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7674016705028001,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0336967934346366,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0721764921568844,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6647167348472456,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.39630837967337607,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1818515375649512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4963333521752161,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15616856367969226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8704698691944566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8188569781156769,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20997087465331926,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3430569982858351,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6782435281618302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2432804983828974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2213758526039246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.49570059954221,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.099555519066164,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5916340086614763,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.369851614113232,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4625812717356492,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9090423115660747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0449846166859569,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07862388966934215,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6273511208234813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39939341784949356,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40429771463942027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4859420460503231,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7011817483262185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8565944266909761,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.810911740526412,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.586122161256551,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5158681913403454,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1916764114235145,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.008571804062078433,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7312338660886553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07878683455077012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15005711045372092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47271490404122773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5551217420532342,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1691149547433595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6346489272121553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.214838776787388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13542804413215837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4433240340906241,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4186167343122511,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.017060684783566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4866510291636102,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.44948532930324264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0905211717862961,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9643188508936933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.846591382754655,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.17884439730996424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09117297247621824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31946755880807165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0107226723105125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5866621240269869,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35852220535676566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.05619577804362177,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3043057305866065,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004682598487849613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1006025645585846,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2659945936430435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0249103793032923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7791332376219957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5208182681998651,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7311541846743996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20728575140449843,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.175663379861912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40079349518159463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9657259180395652,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9496582378219126,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0954871066543201,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29853168397631386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.32883776273511944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27161862047632374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43269965965584206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27976452266361673,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5691803172563004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8900559695129806,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8690531741809179,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.991188100354075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2677657543239636,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23285352167725046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6012502974163327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15736199144147645,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4458460554251733,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8006298091214348,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4509760437990202,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17645677484194838,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9863506629385365,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.112913799294046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7303868984335494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8160132950024266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5999484518480799,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7106336225664025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9560457288889112,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07038973203215682,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.023386054721209935,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1976664955145064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3180065569991337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.795753901817945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28119739709331826,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0082406013857588,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08698220206221385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7131638661904867,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1246886233913653,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7720185741926784,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07531589680754586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9067460877892843,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.014132970378786955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05557111818566905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.094328601778773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03199616768286542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.3613864354210303,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15631443779220514,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6048337046741532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7585822461626507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2920627017968735,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8580308459144302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.027508286813845807,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8733374585211251,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25318108024579267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9057309078930382,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.122493677691716,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.21687368309147026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19994191561430968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1156254625031845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6173314092991128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9714979661939074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.33742697816681966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.837270067651247,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8549060461574629,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7189841679707029,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.054133883558465025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5875355442752473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7024202087784504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35001460780416693,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1629841644122711,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6516271766434345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9700558777345409,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23719060836581335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.30437347721363384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0475639568872428,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2590873771140658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2829431606075383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6081380053310699,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4980286621656975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.20401556974571533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11753047277664061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.460067837472457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.5970068102588324,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9064460063647226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2139300136255495,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6407247444381553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5435841291688327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4319000175809085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2352235899451045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4009753503912674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1515157792303268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8073639219949376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.31941604713499,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.011763658945339634,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.3031212020285095,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8711598502355442,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4415838590357515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5923709500447328,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5405918855121625,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36915485486893845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.044015579707663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6806117204198509,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3946082701676755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.433262444452237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2809348020024917,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6167465613631599,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9174522326605945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.303659385515075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1444260437891627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31359855494172284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.827965738933697,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20886068183675074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0181395024808035,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5495564114623008,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5935901772565061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8489516282968159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5279518090396038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6774548626709525,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23221524735082727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8964618626496531,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1769654804012317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3981957372533457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0329719766569094,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10932408069482973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5182779244227104,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5394091643630073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.14560822446265928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7601992626966761,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26455350958709684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31366136498901626,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8767478300204156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2789195485080071,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1134735109843938,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09097338872593252,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6652262963210892,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23935148444342416,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0586352857790926,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.42195233545498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8155891120290197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.086909558916387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3983669373101553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5806672777640535,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3984180358930243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2911785795328379,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6837133466153538,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8013897466712078,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.072647785485368,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3194622894375136,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3915583987997542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7620711660153798,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46642466566448143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0915012498858347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5817623554143544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1716470904805458,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1143501716778823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.722773428273033,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43928617700371747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2374420498059453,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4313169302171123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08368198582838003,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.21690197185414684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.612272645712347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18470206519952198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25392855313111606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3252872767237143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9532228638552497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5005305206808699,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7802524243155107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.436890954026386,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5883020242262882,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8683687528764215,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19080315723660002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2997828382779457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9305471774862126,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6070149980387867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7725735105306315,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02223298126381268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.875167806516373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6731500016752787,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1522945467444266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.39133601599792023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9715441392358639,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7967157668428584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1674895165025427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0277223638338304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16707794040150015,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09956051828819179,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6819525300318103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5368797357403956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.161429277450119,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27652594955659904,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.787135313219541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5515293813228235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9282794105954073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2444796798543538,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16426502008085464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16205344349330453,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3885451082372104,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5758404841896594,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0271794158465704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9957732824637282,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.597917194011154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8468649591295971,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.806422636840542,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1312152163768707,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1153766162783465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0922907021256152,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8939848358643934,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2421517007907683,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6473483589277502,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.332947633650122,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07646767665779564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02008399640616121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32002146732788317,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5948027765949906,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6430401799540877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1863593952997662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8829090682228165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2601655732850525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8014714490175625,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5179641874170926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8908612651688421,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1526471497429656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6783659861273255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3354899767180082,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6882232148181013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6294933647937979,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8978456031989381,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.44252451220249,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9512607411619451,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06288379451712167,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00912137405211011,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.870028774218786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5537571073658132,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6652734957944912,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49270858947562646,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19131023297198135,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2866667270161165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3599166715575457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2805655679415087,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7577120452561261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5799523251630707,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6453045585373305,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06991787979724995,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7022918636585125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.259630667759696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.42414476384769,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9845149255503665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4001092745323915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25070248400855366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7187210211563229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013307077919324062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6452121901765198,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6335424938999981,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5873252161540332,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24583867748311716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3459529084268316,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1944213400160959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7921230574649911,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.118132675382956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1049106227722802,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3680089899634704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7761428781818203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0401685106940315,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7916261484939513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.383299648117032,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7486475516757127,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9664553826937876,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10727954924637295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9072267987890146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.80579867951151,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4674508582850554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5344348108780452,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.727291295685959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8953693264882414,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8376849886593094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5288035380058975,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.469535116585885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5424251830814164,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3028105130337604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8518909254062885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.258590151976973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.687784475322371,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.121747540439268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9198410034323339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.06168421811984,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0759743160922963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2190718006573942,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9953285524289632,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39511787454318714,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3762978681623488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.63027015856186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0015054084236720833,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23442679977503111,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16416562237197319,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1265455711107575,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0970374143702468,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07963208276146183,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0291889707987658,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.894792317974213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09775044858599058,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0123584409838973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13030230238503027,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.366671446453235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2956354192353454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4685400993170785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06834530668476768,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0088119820750467,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.05318960954914731,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1638397428947607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4783369916622715,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8245904325935465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2824722363785859,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03584930962528743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48652057849140373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2693212176359183,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5647342846982681,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3996423399676514,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.905927784165676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7419796160963759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.990147319275367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.509225141311334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0556753770028622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.100074952631001,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5718901133670231,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2673174969645955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8032328963998872,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9639529745188598,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.954435787689612,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.256494065172856,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.595736359603141,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4934609914484662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6227910763872981,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8265552976013852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14705197242084367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0495227439471866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22332839397108106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.342027296406941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9226712518051055,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0948614151987659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6539044122558781,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7735723800773346,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4288134889733959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09840856366403017,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8039291884498097,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4122063114666603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1080764488492898,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.00973818189860598,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08029114650351588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31283035422062033,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6238182091693676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3593914576503923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9267083938481848,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2183368039693567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9766517749635817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1182669607878006,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.46913195076540326,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7246986200513343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8580166702061147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9209994126164656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47101118078999127,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9157769105910618,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22361430169369045,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4265342572456001,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9059453643212159,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03852390548758278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7890787962459713,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5194193766588828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9466485355102279,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9941634414710303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0012894436976252,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0983946468033339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4081041016590117,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5240465841807187,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.718925226495541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7389520603230331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1089789058234896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9243988513403125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1950043706222377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5177399534864522,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8710221542824486,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8153572103588766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4794540691776938,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.879523816788649,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.527288623831899,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.896620654706791,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13249450034025534,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.994142865156125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2685030456105766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9033258095437184,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7614314580340884,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8130659990903073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6571503754534893,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3100063096129806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.946376078817353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8663112654816647,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4662570388895153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0189336322433862,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2051929111138584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17192959973324662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.374467539109073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.38761499712753134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.413640960355885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3620338057157189,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9970998229389938,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.731579361758965,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.43904257899249455,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9118193741135538,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.382469195731086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4807525710829013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.815425069576087,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.009070082850347383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3364062690858565,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7400394957507879,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9678178829009454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.171454189962637,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9681495946781844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9290647331774826,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21292600962848063,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6490352232802645,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6450322803367086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2141014372946155,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4809245623985947,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9635464675425496,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14559021376720915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9491038373825726,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5344615929610539,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08007933907115472,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7082515994308567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9936993305222828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9551558576819255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6218752984317173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2407310435480192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2552520304740735,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0514744126254838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.682056947827776,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3801410154943294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9753078627396583,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016381951673174466,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0949333298293173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9614076927556443,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5707095618096476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7641921230296118,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2021645763850644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.323051479642952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2465916717904975,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3773963294135476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3469589440949408,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2928973881405446,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9863859793818848,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.080405064477711,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9918305453949698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4303003734323307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0477519996555023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19971638575424455,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14439147017544052,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.561067385763828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2129575822833845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26198969166530306,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4884035419364312,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7534589457644456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5091720891743905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9951884020113035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1280315064164181,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9558998089475339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3007006648782133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.51228169206012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2500914166360277,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4095862868009217,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5049135898550285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6645579546758795,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.479331456383738,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8763702013481627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6521505692949936,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.844625206186858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5086711543954214,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9571326963725895,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5190306985919229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7469850967574492,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6590336649719069,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.986715865967787,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5274998818603098,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6868733432638692,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.885756877147815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13713671215255818,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.12321879262932267,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1524451902163264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7324860269039704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6457330677972783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8529722075552773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.567789096036138,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.780804871236748,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.028193496333486223,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9934931464387682,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6738068992219501,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3280417649292242,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7349485396966116,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8759131024565394,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3014560634695447,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.953968815432392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0312409971198555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1267058294129146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6790709061879778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8535432690445144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1641231237554761,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03683129034546173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3105037719192083,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8423988853608431,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2399625305622646,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4801347353623489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.77416491147393,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3999587197206398,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.941453346557727,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08335227764062259,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8214378319647837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9349171336138782,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.44175421919909486,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9080086207602176,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08354840561484123,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.896908204454069,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1331391905542896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6251526907735285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5703119008165154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8854421027020489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5466578504865534,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7958886371230163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.853636633215293,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06514112023375551,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9242199362385812,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.900119216904915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7518824200452743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2049195125028338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6312010095935237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9969832395169473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0894174335445617,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7496619654381274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6544770004318914,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.32940777883745564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9944180157083937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4173800972963106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1123299245738143,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9958226558028702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6228035888802133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.879560528741003,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0316934446036643,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9500315750144206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.594924408956413,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3755073215223517,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36307998153870313,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6576383323229131,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48965490625666863,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19726663428656366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40572531542228596,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0230783897528966,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6647567531077136,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.046796746895458874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5977442570187148,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7181012669726847,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1175790295298982,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6300733811568846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45423298019144953,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6092638964307708,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9906959873653469,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0502558107713922,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2248433156266385,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9849182244766834,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2031990479021877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1683113924551218,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.006887438369902,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.711647449497192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.010706769250545367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.765587291957258,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7723140594695779,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2862882840378025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3053791297732622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4510809011144614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2643260114740933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.293775533863207,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.462954899026244,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.048239183362008,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.476831128751412,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.005324109255188336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29597171232393604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9243907641022018,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.518905783215343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8238308282212579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.304300186405865,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9657100541265793,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10053319780701608,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4462375922681399,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.557087619859999,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7641210255177824,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.435335567910713,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2651976481446878,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9749414423605458,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1572628630905357,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4738899362471596,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4199655930209416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.814160286674674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0438668068537997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2056125035329082,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.416111851792511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1154410309996177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5423802327227163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4912535848489585,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4333378824181158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2804632683447328,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8648314747275321,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5250091064657529,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45299831003654933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07294643652630262,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9127580187254658,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4230358311439808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9689716136386988,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6766838143234923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25342211211997334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.34545973348938475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4170501677300753,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14767204072422624,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23653372677943896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2735134144124238,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48776343067025874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.801155011538945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8036243196980806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8524382516003972,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1593952571782449,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2482691837574107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8473626122200089,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.391647709884261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5410451759608144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3585134866838509,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.385952927420386,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.124433650152144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3718024747041473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6906760247298291,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.584963279437702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.116244424362316,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6994395230796475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7707626171030353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1910335403179837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3061193762911851,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8108788026915974,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.011653133268309634,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.604209414134929,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33906957555604533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1721332373003728,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4133519078638241,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3603022632640842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3107823824648586,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2222625515000178,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.111396109119085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2961522600075024,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4193527394346002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5809289810551554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0464020422430726,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8644285441302526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1606644453047719,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2855174814686121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3542732345562025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5750485499050333,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5749969835060336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5730943695025204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5233817540740007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.587697855845858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8061556878201843,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0327194045392627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.265160331560336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5124764725418829,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7011479576119828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6187438970890926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.018078566159532627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1432281498103158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5575314630855988,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6872205894389571,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4324149837479943,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1310330287074533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.429710370359833,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.580622612177193,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3501085644552915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.034407966817095126,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4135600368580121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5225232419909691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26381009766073404,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4934529735475373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4202692822285021,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6535487569971057,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6031371045265139,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2730217490389837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19965175227150578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4167078183741051,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0305921072838915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7054395703218383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4031145045290434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.988674154278438,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5261722001064881,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.170136228346307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3706030272071743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4024541202864698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4336996585609652,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1279118958671845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8807245654805165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1466509810180052,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0585508233777952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.857299079822874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.911953438245252,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4570568529664953,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9461524448631558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.916136620342579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.922146989474657,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.592524339811459,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.401217965787842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3047983493547286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8859100557054522,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11846841367198158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13179722513162817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4346494377881176,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.36567092853867056,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7879588577804064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5113659002646314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5409550294361112,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05679665398493805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4517184461719643,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9828061304771674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4307183930499128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2824045509122173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0748456056884659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05933552373117923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08374655605891013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8080607802633941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2711521528982095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9180539092382785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5894709663042481,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6307735387927917,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6592593658891328,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8439794384523585,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.157764621883842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2599841100973102,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.953923349331895,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3070770735174535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0051813350228556,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05179524586147588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1142962288180644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3665504127522401,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2077091933961768,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07045369916268251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9639155081756012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03562486106065288,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4216173802050305,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8987364763450669,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.910907759469541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5204779223504739,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7401587176806919,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.23495505750024,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8835213465373166,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.349793261835444,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3804223432335685,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2122465477181628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.500741087305454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26685845755831084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4832378531168744,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18138297766740008,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15966352335842338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.07453799322855,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8459146643663096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18024268759468454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9234856303313554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4870728446969794,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7650263471394134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7438543387542276,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7621209529323334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6071818101053101,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6699796629212247,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45052986275839046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2874309880752808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1528872281696314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7868228988722943,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3149802110245177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5708689599600696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.435895512593559,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6175474221106962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.222331029958867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3775471263923764,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2875023439014903,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9345900511100527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9915366947769542,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9022438774645853,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10404484742907094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8203861511835324,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6386712152931286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9500471978987948,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5211937720229267,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5094184758116298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3318778466838146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9568100028676358,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5092186575928133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1536739616214153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21184150723233053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9944849562515525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1083699965828546,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.029868106355119828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5783944953467843,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7260457900356054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8258773801504122,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8689230372197567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7679076435323786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8944769819038445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21524558553048445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3704814452092116,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4301268498931798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7252487674324475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15589304068448362,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1433052641898298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4104960664465702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.699790288721688,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8849709278871929,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6242483196947908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8120204460142313,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3483567388073139,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4216473847365148,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0049689563853144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3864990788972924,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.603594645304545,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.029529515978712784,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8547540424734188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8593873772009402,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8444210158226628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2021646677739133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9978500422232064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7904062170183526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2755509064820942,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7763573615790089,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1944408827919193,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6720043223378003,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3248529366354473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8047164195405028,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7901844004950616,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7859642957010013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3128069196054084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7064699441748745,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25576734911345866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3198376579727178,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7035346133790732,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0219454319115564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2526912851824448,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9381722398560699,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5182801460059263,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2772970045629202,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6947954973229997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9224338133622489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9568359053559203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0524785072368563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2549540482328445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9238628510799067,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.373506534802059,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4634523641212773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3028906360516128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5849563257181578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.542553335316764,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9218646573056919,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1926170575002488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.998129040486294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13731533687434672,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7806225912985494,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8722472945743323,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3652595760442483,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6309445859750036,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2718552209993086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6757151471086664,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6114671183084872,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6827433030048091,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9001874431138108,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1056795172894298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4867461263404578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.246168652315506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.245390985414021,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0268407425927997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1381704341171717,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41698857614842977,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07038621701262837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0869511129655467,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.287081756575434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7052882709429662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3410698905206035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7531266610811773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6502035049359272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.34343833277754454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3916480900959476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9478002788622759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1406575254469553,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24843017187688377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9490884985336763,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.329630296202685,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5141014355982692,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06979721272034434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0933189547969584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.330254185186445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21262423306321665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8057112974205456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1303014292246383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.781790621234197,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6592461160747987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9476533200574622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8686130021513736,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.101252510396999,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5956205436808304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9594643268926824,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6363151880545734,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9214064971735167,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8749473228231994,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8229621901821322,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1910216150149595,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5515717709235366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6950130608979888,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8199061708794355,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8683802032933419,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9789428162362146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9713573530350779,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2972036162791154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9937801991240272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1224287022054718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9387645769408568,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.744566993160185,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2788986305659416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9650732444528023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8268088347340607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6289255646449203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9422946571571242,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.724136215655311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4514793099745558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9325396465202194,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4703874367962473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.928559231308006,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9701600740294558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9461568569390235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9539807825840834,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0879572841139491,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9048522174946063,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8957336641327207,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.770905452654917,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0174838714907706,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.156233447359031,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.163799173359945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3869595174793825,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.457204589831246,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8636024425944933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8402427635227778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5916556585788149,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7668121082166626,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6067727324655712,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5649893103923862,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6704073596681535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3647042819101913,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6440325208683353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14024168678031135,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6881844150311904,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0455576582065285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.220663769399716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3070600111807571,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5566463048094903,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08506463192062297,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1409791443561188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2093427312049614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2123118009012428,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.43758692448804926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4023330272404433,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2904941822946667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4713672737440562,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18814366501713575,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8996992956916983,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.040414982135203115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3033213210649168,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8161876344129864,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.684937677032527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.913116280427007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6094736724738716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9340523588969973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5059507255124407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8044037480236343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0317485439892886,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5104179136055107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14035719786866618,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.058207302109536,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6876338633327168,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.35973414155398364,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.940783335026941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9507683711890866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3605221976202939,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9719968467975888,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.668552287518378,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9735503301785564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15653509226041828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33349675276851487,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3142033687621377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28707184967480304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.169664077918791,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5820815151685506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0660332599473041,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.38349011936752,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8900795607195229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8113014741230491,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.70440174446225,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0417622930236718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8851037912004718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0148944461386606,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3014093137719436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2780531974743239,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7281223671492452,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7152403101150213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8952240081229554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8324919886138678,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5550158022425844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0246216262240044,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6100424183093809,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1175713006745358,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9358208824714858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.413813422912567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.873864966398338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.261508252970526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.710279884663418,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5692160988189348,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5163375205276775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8014264969406266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5495106396899754,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9666068275733775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7797791465458763,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4262623216576844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4332116526105554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5774511231830011,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5938533410080806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.780231879114369,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9572802550589898,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3813039916997578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1726732146166436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.795236444792097,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8889831281581078,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9735477170939251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3309829031344815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6045080826684854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3149005603099209,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9045345584104978,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10164666832338876,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3272661028999373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.963929821511091,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.23202473394663814,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3404897929135111,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9270844500955255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7908008264824047,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8618722806367232,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4146026275310564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1904488500433774,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9390860392732274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.164509413448421,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.307320619721367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4387454873082932,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1544744026773186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7218100690641158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6107031258410691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.479243551325951,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8217513272785251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0010266121145638962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03363440298776954,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5164893061025535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.05516633865508869,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.879476565934628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14857264686905847,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.216585452925576,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40921160050759564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5726736902182816,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7244025988691192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2651312462325746,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6806209362358064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2487935786859854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3140714267878275,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8246982471335231,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3667916142988408,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.191149613019162,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0849205328436025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3656847581846092,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9382654696968653,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12505091567105397,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8892202805491447,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0311698797283109,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8922780949052767,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1183381856063206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5067235975834392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19480472998981435,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.695740847727345,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7195065189760723,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1533214450036402,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.018364534989666392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.345596283053795,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4083047817540866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.841184288578042,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2061253398576812,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6226084285828617,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06604583313802337,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.184491229072718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5633893377082781,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1830610783570079,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0948547563960882,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.615912504286117,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3957351065739751,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9703975370552134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2777854105208837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.192907111118343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7723483011649304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33246577833180346,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6041600537034495,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4567237240246125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7422722250865794,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.42339589050934645,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5760106263330784,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9280621611820816,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7717138903239809,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8489147653421778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.273795933151555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7534256267729567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9294185059043372,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.961076063977246,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4922862863577109,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6437659471913855,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5023839621805783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.822239017590706,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38328328242149867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0811307278672464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.85376444380605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7528158095830189,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7626963184450979,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8699421884448579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.335268398213438,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18765052053898268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06336939743515924,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.841889696231954,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8520354959128373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8211319583962169,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3595617187093487,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10305703998626159,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6778394427254701,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3123543076180666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8794412087259991,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5679025411297456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6531026448699588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5925368290254536,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.544050579763213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11513083904278298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.44968615721171235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3911126934238376,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5604822971780963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4320940684242314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5526083703709688,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.656281227543594,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21363557518140608,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3950710230086578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6460061083002286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45749414893457363,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8713515096858755,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1917969261109724,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02658925779930721,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.70892367837877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22910455051698264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5925586839517272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4803109259055263,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2864635447835577,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4322277203131377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22762459949779545,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4597898113187524,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11846055966560222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.553067717415143,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.325057369945132,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3271845875254943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5517395059244675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.135737531667159,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.913055291569789,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3411139530835107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0088929873342891,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20936234413742552,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2441976904778245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7055617820550392,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30375521453962556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2238600223481004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6302995363336303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0509042711545074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2241069508988154,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9962236679923606,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29246991454862964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30230864302098204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1214678329546772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.085426235962982,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0011657177705666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8127036577108309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5798728299704768,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22246371122866027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.044945343030718,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23470266716699625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.669437029466509,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8320064512242517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8154660500883505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36172681946652835,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42650391908797397,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1192364398820662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04916983266296474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7931679657600245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.580170079737609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23748382364207965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.587069145716041,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.21170430397077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7858579594623722,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.14638291094629,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7986733368137635,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7369868559268332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.864057115314912,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4375854032903731,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.777241827874442,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7029494504449303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5159371101199254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4459088757861251,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05038671425624168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19386680910665605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2129609757360464,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.994332274820168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2024671470776779,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2034008399307845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8529350786361327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6721800684054685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8731911549078033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0244678471963766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44625752317739537,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0651975505904536,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0217864502598002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7515002932475525,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8093603874230602,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1626184757659805,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3657816550784343,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0463334539496782,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04448646557959563,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1921878808248951,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.985275484388694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.021035093128925604,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2264029274327212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.005730701667583,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.780858120180202,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4213427023868087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28836125805965407,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7919581018205194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5536009641695817,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26889144540903676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7036903131323047,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.007264135852503334,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.020851368374943956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4998792034588487,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7767433671117371,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24351308988768647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2465618881637448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.921539302168309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8269356356739825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4379216525560032,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19333305037073834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21666711995662769,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5975442621822278,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17320902202964575,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.325417899568286,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2735619223015644,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6365237215624919,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.20547207363141,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4028406843761314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4951392074504497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21487027059034072,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.409644295887401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1861284520768027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2262344860832253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.916476462052884,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.431121724762615,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5359959919987772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0726584077644048,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.7416964379764375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7167277787562317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7096069813222426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3583934825506088,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23020961805828674,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35997625752875684,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6249328308700663,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.850940276065546,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1527144956980851,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2000771466097777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2504826806834093,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17876082745648575,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4140950710802611,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.01863401257401761,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.468002693948565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2941040039826803,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.153675133162446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48232928508169376,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5376580738907947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9843718999141908,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2772919238443562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20654760706584993,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5334622741647582,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3398294485304827,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13503989923117826,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2621594395895173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5027640693248883,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8162918134659094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6718632638495792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33274703473423484,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8218886871444949,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09279492150871675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2833442849930947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3652962954271757,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.7860582979394866,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.58126838360917,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8054363453419358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1252767599697648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5601573099122321,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04321049224053563,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3984545026275404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6112287480163356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2642866835941187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.193763622803479,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7659050759568411,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.293544583452774,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7899695553043667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8307997388118914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3527016758879007,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5316250452462403,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.261362458082432,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.433877491923016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.640726884384163,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0466726592567008,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7545759739059128,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3551472963215212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6389205788284029,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.750409767093094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7142866522304083,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09828364290883669,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8498803109930242,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3133721014879489,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5596617205548751,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.205402205316074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03212751611506012,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0571282928596212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1228982978328275,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5243295848109297,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8123089391938332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2987430928626963,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6124895107959805,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1127236569839583,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28687663598234553,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6081825154263196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.685118144295189,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18183134617994118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5615807749558664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3595613430094815,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43410637044291017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07000569843264694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.034300365925151,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3819232790028391,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13264713487740118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4960526764908628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4557342027539955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18048867166545107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31519919989484724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.003573522832880523,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.011314380159558848,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7399573418293413,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8014721563874652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.858378260094558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0249151977422852,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13674380955835386,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10010874145182609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1829219834183988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5997935458416044,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7829362460448849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7977414870495718,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6912715923819808,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4246719321557224,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27715868946843275,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8576267382879335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8126048196376691,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4906334857609094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.448524476397013,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21001438864649166,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7898884196121432,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9859743490277492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4169654461811014,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03247258031231176,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05784441372486837,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8134275989777783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9736244140536878,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5038789313154258,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21417924244143816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8266166779353648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08357831806246235,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7369289396333952,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3450025775423462,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.412122059278836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11078458733543074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5604814071277824,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.586120832296678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7885463474161865,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1698667577205207,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14409382048906316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7017629004837238,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.881162181424919,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0188292420738685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10247704161674925,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.350470464365567,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4749594564965844,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.293202849679374,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6412244036537015,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3261888010456506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8807614046155497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14073206845008351,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8586192277329836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1934733476245136,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.130516594073523,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.020457549281819663,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9974900160634362,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36160396785736126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7351973894562622,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04711534143316889,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5934872058341092,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0359862441814656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0697384439193711,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4519597434963178,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4396326592285624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19117542138404156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36270509760247244,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04205709175448742,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4918375359794123,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.665050102643809,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5353610134412775,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8569106121585043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33289872925605846,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9831591029797998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04060790703769585,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32485887098961785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43071907342686366,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1302941692045065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1540472107020558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5513199110902325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.288121725528557,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30794348793610404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.343906261693231,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3464485312851056,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0933612220216148,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8839432547127788,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0732587180296793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2878030731862418,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6431070444778317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6085623042031129,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1758648216365504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9835583288720666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02194084474927314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7546164749736064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7093521875342026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.2355835637726442,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1313148608529107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1074356108579764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0957748482457381,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6358081782328283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22178886263586076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.573182982641168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3404513854892863,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9660901884464816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.575081760792263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4198146224130769,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30551573981189567,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.198422258587068,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3092081994065496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3649708774517149,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.506574481572325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3290658936065155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.417335367526793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.017420281665727903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.034207591209094265,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7704543511317645,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2507564276505359,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0822141616835022,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8751686884485073,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43698524068096545,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.259433236972221,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8150352607529985,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18656290814118653,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0709757808327787,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20209616817231912,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.667987358851078,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7678034702026385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15366008514597623,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06680377074548993,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7272173590020033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4599297744993778,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6644696910262252,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2764824381732711,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40590033511177376,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9708101955167758,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49972571607257255,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24291794894969082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.478159130837245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.196516068369026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.007834095720431,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7130240431656554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10059030796711319,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2217800031505703,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4081362711694825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2407107434463243,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6183888921291006,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.025248166643097748,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40094625353811086,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.164534973663651,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07226383558361135,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.166716896246845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0867860167298986,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.062762976575499,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8327114913981126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46966559602220675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3429613145887043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0474749988542116,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2747495725521103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18004894790363937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9083481501891443,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0810986237456548,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9862985988550579,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8593250187213236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5633725582147097,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07504037017811574,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43823047666866144,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10480863973956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3457341443441987,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1208704950474102,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.023054559473575445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4886895704455559,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.297105175184915,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.74354846394726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20229074961869217,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08554981850559461,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7848734726930674,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18686469762447225,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32236191029985445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7873487744834506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0710429470710328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7166622574337488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21389968677480897,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07983885253519495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.491813572403467,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0363553728170344,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26679521776292187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5413817531801832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43252927369590033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9162155152622314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18641174917673212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2909050036118375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35268941613363874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5542898100546922,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1074063350740204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4730844166239914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6733472880871463,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7571455523644631,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7541837983156532,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8646173456849617,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8612147790451943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24703376730821644,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8260140868805081,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1094075601557134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1067306636592874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.101834531665978,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6478108936593892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40437488019716283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.596286181432551,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6725960900068984,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18100853156790256,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8825185072493347,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0602447818668956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7036300875838217,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7488895967569342,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.358829581433742,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.142070536767825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7333879412625688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14320006471832203,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35780234766316027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08711725103688678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09098930592076658,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30263236235916485,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8853194901463874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.663879831706248,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8999596489637121,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8725728149429528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3121509313788095,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7340054556807236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.755828683191183,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1758202522166554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5453794506226337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8437082361177453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.7564511981578126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8547328340026973,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7042408831154398,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.664948120018378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5333181795804615,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11231818630886851,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5270408310011236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17198538330377305,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9039714656236453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.061786268464328595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.942797018452606,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.445866284010363,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14243030478088067,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30614957092350814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7497583223986111,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5503232328045048,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5299638170712305,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5758577475995503,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1418274332317402,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.373533875689113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.507409724854512,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3873642420979568,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06006407868129783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.123545449078399,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.94986505876807,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2538840193733813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1997186864635727,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3682974199146056,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13843330045121943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8538199647999162,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.049060690670848506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6626253112281405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.73443436983612,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9788060201863963,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10862838072374495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1920955803059115,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7377014243096662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49765877649621065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4705000365604336,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41050517396256186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4863725157955194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0173909949956437,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3486417880604636,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.204253929978614,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.024598719487491327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04614323839553581,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6993079677873528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6857809570649378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9116585037315268,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2362847083510453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23161341648790829,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.074164036257824,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.571510941750655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4276640219401849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.019503197716538,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7032549598752562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4811112861350246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4008470429204274,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38797840701754566,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8387532067238144,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1824945291906707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31228140895494416,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3383308867339825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9591889701723016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1019146695877584,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.402223039473388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26797953150963016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.001408435913018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5634242425449418,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5186698184277142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14761744570812757,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.185211778112676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6625552521129159,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.324222656375915,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27049283303654387,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.060198247304314605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.228256715676076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2209836077187934,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4148321837269533,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2468685695867219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9781418044858752,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8705306961910045,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12324771200059034,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34801038893987496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.193279055478952,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1214906867253445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0578128774071367,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.022177232529952202,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30778219706076193,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6674113650471292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3837228389911416,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3676710300030996,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3253094721837125,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.532786134120087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.822951693956755,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4326742669507164,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9111394606423153,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2717508124070245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1301866513886399,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.492720163442015,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0755919496964261,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9277230001242187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3444998643552295,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.327300918933204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4003877826649736,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8680890027531932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2247303189618752,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14884888380881908,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.399492635921614,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6434144285403647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.95920186387113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1329667799897598,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.087178622529297,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0509355143429433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":7.5227805028819414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1839063382533537,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7784146576922616,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4701032081269223,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3000958464282368,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1235465787097714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8135237066547822,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6097418263043504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9942181817152069,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5836910502188497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6591099059487726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7283062975962785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2559077865374526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47446852290961783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3380233407133404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4483602290944075,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38645026231176527,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0881799728886531,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1256717672619923,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9960790488164777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4386516277936383,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4823761111103595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2633538097221309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23685053109221219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9179713280639186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1441751345460613,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.481633885784747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.098998670816481,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3587228143375385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24049558433740165,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24313519144155132,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5945761863208415,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.345002624159807,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.1883198488810605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6057640909851199,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.693324026240088,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.625965706812524,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0597886149100135,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6635070761057933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8927318834002165,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5563000805006864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.571863845938277,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7090590147225668,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.005409013468047531,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7455600277573675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1248378709022309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24203683121315764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8430649937515565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16518670456211507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14280182582958545,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3633433960270029,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4661274349655862,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0946322931587652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.49655831546122,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.643861906312357,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04110928042383067,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2792678165320218,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11266537127638093,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7769054808339515,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0087365247517233,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7490537699454451,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4206857737608811,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6569037519451107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0188992644677766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15630119860708708,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2313930717439213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.746308375801584,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4052030714777746,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6211384052464394,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5865784312808396,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.563834682079928,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16245212657848904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6537987062422167,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6480010246714303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4317893676114828,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.157778559179781,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7400575611743965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.532877615634495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3701027649516277,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3279922423450172,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.718199430014179,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44914553100259064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6246839440453833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8357297850116692,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26104888295536594,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.103015225088236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7059667669807738,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.415331704604871,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9810257059314262,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17627961580852627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9481596098234097,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1201509477894642,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.410923301292435,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11285802660067744,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8539310259558118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3396879121556448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28244723564770713,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21104057223374137,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4205706469360577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.654185885432966,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1409663024744496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.81076332664931,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1181032393310141,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.028722514613751,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3314019587876358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6508320130597678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7007814546266062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2853784100501142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.372573611639786,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32685303034977026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08178126435215947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8555954362518425,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6090068658640213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.830823257379473,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4960787207846831,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9614154600112785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42419759502124355,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2370096335019938,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5952548678767098,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20247749222337405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3366953582443026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7065822387513243,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8400612529166293,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35073634767108874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.332316925804183,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5900576908699158,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1613818946204628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7722318133180289,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6553694535550043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47530670533130304,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8169682049899933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0016061568141640594,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3937144907325734,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1947590742137566,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2222422197737777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25158715747558597,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08469482029801113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46895427269565426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3885610847893558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1287196652879355,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8982199861967726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3871352605065996,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5785551336487667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28201367514794595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14984598037051905,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6397880261647448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7206867143267307,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2446426757656346,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08707040044024401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9678964666696855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.482625259744522,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4914129372886933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6321808189837526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7548580921894968,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3481734582826472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.049229257846370944,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11357830523862253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7694323804955128,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.018654308922523608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29628374957942366,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.939863115575371,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8805458589162773,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39241848289728104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7911914951844743,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.236510046718904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36948943024104564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2659506768683023,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28770569440889765,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2444738253401688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29134681491682396,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14243372114240593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5089153495312433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6117154234543174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7215649947141005,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46081493876949337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04643928022262657,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.08924862828504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8351206476419869,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9293887096441596,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15740346114957382,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3439592738900192,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016581896667221156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7086532958083103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21728949656303675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6227698447543975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11377276530494562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.33476353637679,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.089012315237359,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3886133846009103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05856246588659504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5127795967846356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6429333842914393,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4686677434110647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6046929141594505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7855079307144712,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36727654341094373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.628228612226497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6463350889854935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16602203873567026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.262442076772764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5486292396514806,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4810460578584361,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.306748842844712,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.311031001779749,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11205433215264152,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3626405556317014,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2073301181327781,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.046203274506617,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.335994319484451,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5381627113887901,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25005060959500697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36346586998766955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.050223015312149163,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23197989892798423,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1558103576405254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14210093349000325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4630324457855505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7455207164224174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8712017421631573,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8923712828543957,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9539170318881793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7589078618026283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0791827662580145,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8815673081971988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8410155932633946,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5468183009320873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40295573226518466,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0486849142161123,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8379455345013538,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9723866223020472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.163354348476521,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21603295955129556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2911935979108486,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24028042571743094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5285314731659955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6528273274205076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27934758428585404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0036083466554306,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5575446786189833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3338052208062932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7220225621058806,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9723433861019556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.014501992109875654,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5085904923838267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3779538748983897,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1017989750917032,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8912193561446885,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2173553111005087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6296676312381626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2508683582769185,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.385737548624332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3071580692411003,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4749903535599675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8669991243397142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18186106331857924,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6766179292953707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3476310794606421,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8433415303069117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.54471737337419,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3494071532966872,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1319534100830055,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8283708483990213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6415765637657864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2147946645628194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4090284347108004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.298349426203194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10406666319845426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47170248545775634,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2035396409532138,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9778920951925842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.87976023826328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31524428080421507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.079543370794517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.474160416177627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3100686578733645,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.791889335083955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3746536046451833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9860622585214236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7388534769841988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5039834568989034,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00621416538882835,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.718433422348181,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.030066672979688104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2397119002233639,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5082647583319008,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10131198989475106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6721249605484125,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2782868649421589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9054111762753675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.170669165525596,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9048479943331964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49078883300457327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2293422585004798,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23020128387004082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41781022563821296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7522252456554782,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17151533027997676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5029701018121235,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3122711453321913,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0784538190131896,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2102454317284157,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.150333080328699,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1036544631623828,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6089242797828653,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08183378081306664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0579271507664496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6109885924048137,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13333079502357648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4289395028087864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.642676591047974,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6522492033963525,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3273590349482267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11711191475848151,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1637093255298085,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12442404091823292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2549542565186946,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2488364975891544,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.076204044994322,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.9069707259236117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07300779494952167,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04552282438124896,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06612099243947236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1894603563404496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21644484862582036,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5757610113791378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1197476111556637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.098841074512353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1630394469830353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9673395486616667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35510872140439886,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3923478830619608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.015562131750914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.640807061543329,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5365226669197869,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8672496588051524,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.035583780026566356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3395429086350706,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7988949699959834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3190965165083965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7331514402868031,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.462004434323655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31299413726587605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5852575138570004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8595066407393578,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.007581461302178318,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7855684678552122,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17372954674204155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16413004870748898,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09310408345128098,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3997072825311303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6993557212738042,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38952050035903685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5414943816573388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.010552796993276943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.016215579538471,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9973620570953519,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04174238179708121,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8846119597624609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35347675482699253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0703623023226145,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.606635540962245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2435560580309262,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1940643419315822,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2598554520787706,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5462993193261723,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42574020611861857,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.925548872434387,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1066086920027198,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4611663370837844,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9972365001865997,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7264953160072872,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.025076879509320964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.076764378427889,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03573499311027965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9518575361198082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06571692149971642,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7880854957467726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1223604310015116,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05657245949310657,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4235612212286637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.015866688236484062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0035954287887696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21599434331138673,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.144217393006954,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.297673810705411,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6847819079701196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5823131577270174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.742093291475086,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2550193147972115,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48818879173877666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18790018423879024,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18621660298589604,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5257062824994962,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08365931504034221,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1304522992248436,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.050034641700904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7206919091736873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.387565476311656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08066895678195786,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7347145776201216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.2764864559622473,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3935670660140724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3601867013770482,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1332508610290652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17100312190535602,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9655398599726224,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6098202373289698,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5260298664881953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4860660053240859,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05340119273459527,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12025294536135231,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9259299335237096,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.037713294012339,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4477743977422203,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12240508085921381,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6683364719200464,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5587088555762902,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2814844072001326,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7495187529967078,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8567974879989069,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0528260732039636,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20154072994679456,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1647090407671388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14256651811850593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.604979535024729,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7076015111012526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20153221362633875,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8433378745295652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4387225908120926,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15491306978992037,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.32687926175414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6325227248011185,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11530833234432201,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6895184258112335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2036195496010687,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18007188785955028,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30714533886416967,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2734088794176704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4912800543028577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6691103764133173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9082893503123503,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7425064061580254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.560185542731286,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6289469730967534,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6431822339765507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1778646891235156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5313472613429219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6873754602919802,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2770287622143895,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9205067458611358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37465867250603085,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.039847409109662044,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.464129257681991,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5471565279327573,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8795859212219777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0566866632443508,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19657937666905903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7107879490730017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.3275280702291345,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5654607412333341,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"}]} \ No newline at end of file diff --git a/gallery/trendify/products/comparison/index_map.csv b/gallery/trendify/products/comparison/index_map.csv deleted file mode 100644 index 2931929..0000000 --- a/gallery/trendify/products/comparison/index_map.csv +++ /dev/null @@ -1,2 +0,0 @@ -0,/Users/talbotknighton/Documents/trendify/gallery/data -1,/Users/talbotknighton/Documents/trendify/gallery/data \ No newline at end of file diff --git a/gallery/trendify/products/distributions/0.json b/gallery/trendify/products/distributions/0.json deleted file mode 100644 index 2c63c54..0000000 --- a/gallery/trendify/products/distributions/0.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7309801928349964,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18848125261086024,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7246231557881823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5304539431467898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4066087230466762,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9878770341444497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5072737582840816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31286514070669297,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12444933060943845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.26348508534088305,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10985233885684048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":3.2455084757151944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2955462419939754,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8752504719431866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6989403068334759,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5120625578591507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.044496939928704404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.7372994652391873,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5190062273136034,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1558192637505167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23729409998389142,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0184219932328646,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3838698167221135,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7785334757376555,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8720337339919302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.45155601565196407,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34367413402851815,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6032137335702642,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34732459204349314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38849522610217857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.415653588694212,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17886138330257972,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3672770935768785,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6219325385715837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21718672006568687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3510078924613053,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4152575360741808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13431595850153769,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0577755835384655,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0920782410014052,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5644573186863049,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.406459919589411,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7786987678221694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2313478488009304,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.213961812622584,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7423492582520004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9810355762965898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1578684905402382,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.01954998185550374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5112574139777609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5693201667032912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8822731447278516,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4002339204017085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3110399662610328,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0493832237741527,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7744638212745657,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38692854321686976,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9583352698520895,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.925446214200698,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3689061791396167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7545551117851377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.616967040225424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4506609618837373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31493508941198706,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.007847844856405195,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5429913374006476,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1198702991378422,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6166256615456376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.035703132127812,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.19331949632376097,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.176085763447161,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9895385400258288,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3346475195191783,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28418891225507265,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.08368527190901,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6002409133174642,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8284710832379654,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2148297581352805,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5790190787254397,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.01845103103925585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07164860277330827,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.017162620641992785,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9314266862169266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46717080332155486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9221542999573039,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.459210415451341,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4279041540464623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3686223115439542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8192578797199994,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1733937701501839,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1549032429551183,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5102206810172243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.636669975717785,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2778972421139958,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5829141913029696,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1715416892597972,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.36148288612723556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02952425416288739,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40476014226223483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19915666993348372,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4713332782408315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7166201012473676,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8931950492733222,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06037981119103105,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8496674510235231,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.04965765244559741,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5151701880662116,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7963948794816555,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18224426783097317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7737885015006432,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.60674989743467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0552452418567748,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0614201946411022,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5289566711259939,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4626334589242633,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9638031023739186,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3647075666418844,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5363429579095627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9553996151134062,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4019013939556462,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2440668231210928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7136126218853436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2712031201824477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7132837416253541,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16987809345673083,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7643827941919343,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3555798342030958,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28397001814626127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1928215823589163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5398436690338545,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2606657959891485,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3511870739125687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8824127261982462,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0329282681674465,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5796609163691866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0335996430159473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29056676765222983,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38114815831894844,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4416216777761541,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.008279459402272852,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02433484069550242,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04251716164042623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.44016480357637494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2142775968119095,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6362796247858432,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8258237810624424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2830798945280615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6489904524996931,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.024065310108939544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.61493827595603,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.686985257314477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.743066403991005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46565912534949816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.048622645180796974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.0452805817032732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.505815922910975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.01405994560025427,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.92943875474875,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1923563928643115,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.49577591210123617,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23022405785942038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47968960988318143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.001366793861277486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5508125315303738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7392085460427247,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8713438947004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4370799297620199,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-3.282669215746678,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.39467260785894387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9320802742140113,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7549062343472688,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8218550323615289,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.069936776328539,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46381653481548574,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9791565584064523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.142418180732056,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35688545536958577,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0354949759074596,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.43400840963337933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9339576549496607,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.217005639908198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3366100553052054,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7412292218817832,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04315343234213939,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11805744616009216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1092341806550126,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7155122998498797,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2489820803127305,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34118083766186974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.789177644062664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0007614445638784004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23184237654907672,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1973024752619243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.994380674815863,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.44673733492694967,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4130214077499609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8959690570161999,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8030952092529496,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5938051841240674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.17909774535416986,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0813323923268487,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1177599318489078,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6937677576811647,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6410081193170063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19646046827789604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02120450069391198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9302134474028569,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06385050500863287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1564573852345847,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03548091695007729,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8867868420431456,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7614364125363349,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6355269817207613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26280971927498126,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10444040231895983,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0795180305185438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4167813466174348,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.108426790586318,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5149416010627037,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20659292830374287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3142311299784281,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5741916445286293,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1765148254944644,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.263958813381921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9440027567112836,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35168188131686606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.33197167638793346,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.802285031614543,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3227405688600946,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2708757894152662,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5488412052896671,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6206718816172426,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2751899319911133,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11314965557384701,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3581444066046564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5184376605091929,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.22130840032242927,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0619660885699467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6730173126977904,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8963907061822043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35602136872418777,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.958258855690323,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.479826150036333,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.588255924442683,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.014738238240465435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1290985145017658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08344761411096394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7578261273068916,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8064497002690244,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28545556070967354,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7091436729304419,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.878136279775681,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0228300396344614,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5536734548838693,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5854624539134307,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.061682481469822,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6425545284617327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09332212268051943,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4080433117892223,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7442403700945324,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0596788728018842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16821986274248177,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.015415876475567504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.47386498345711564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0046300699224906,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9208533182639727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6440307406935436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08209449133843987,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.41785958038345267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9487718128294921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7192090758690576,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6838127490828121,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9914324212094544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6884963208593136,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.20091286486852877,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11338602648763808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8601410449000504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8879444269024486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7872574147625905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.32119002795399004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6966010685042789,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1805277704868602,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7517656669304573,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9855346034589216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2930411672114568,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.62580081698769,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.41627350592096685,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5822648204709291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5668562986503929,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1429033377695986,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1089906465479435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7326381150335067,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05097310177669755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16527635937733712,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7766527480648125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4975928679843742,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.78311969218459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4963819040508175,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.017607906595660968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7295915210184667,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13867650708687493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4375606912458967,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.262770036400204,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5052772176046467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9164300008875854,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1420859926248614,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3904203873260359,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20945168740142941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38446008401764514,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06457781014901974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.732927188387577,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8170418750911732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9790348704504314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6668409875049264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28868645377162416,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6581260438139093,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10777211495064135,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8848027855832021,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8293603217683724,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6490628759796649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10968166567183162,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3024655413144991,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7187890918099842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3686526938357627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4527520708639663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8049465510394975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5712317221320243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8090719745238616,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47782635360074194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.14470504621052377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5096548831338229,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3509468449852437,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8444028597564818,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.22561859954329477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0322784444679642,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6455508245955166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7309282985521526,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9079742015217925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13799747335349566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9249133845600985,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2185495806678341,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9293337016697427,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4222864249040766,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.0437243343362679,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8834255869492955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2379580129042957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03342332570921925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.188398981182839,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16005319966805526,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1375387423150343,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2190488599437668,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5126291142165255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.039574598181976534,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9440520182625478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.529904516431809,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.250086551640674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.744652497511601,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.627559450594921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5520472614997276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.910036935814357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20686019882637124,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48379923236542005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9884755823450337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5647960225023534,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.578698295489697,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1961843003788915,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.037152155452718084,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.238826814419786,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9459594562051602,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8545959773501657,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0184340017839948,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0476817464913493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2332105372883273,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10151452784085258,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8266068111028803,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35737352517122123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1110709178185764,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05714157504599216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08300085367893371,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29406797155196457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13491093673416665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.00926292913125609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.329445881063439,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.061665538212884376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3959003719915783,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.30375418421535955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6292656448220509,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0661958226367192,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17390806421243604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43708371696537485,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8494000910295763,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1042314266945463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15420314524415119,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28127382640821397,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3426235422016708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2954918744793398,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.449852880413219,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7719656836152695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.108857758875585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5023247881268815,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6900097460429823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7258169463037165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.17890818335415143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.433956819078586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21215846672943278,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.050479112713234,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6155297026889556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0785781993323276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.190968318110893,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.696804495622394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7393801614029967,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5623179777126404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.007630116301313,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1460775952858171,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.538462866398987,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20742812218639892,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5146555514851483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.24161402132447474,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3273861906429916,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8319107330525473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38668885801649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11036976109803144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8764575111789672,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3946744534849646,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1940580166729668,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.9561787380191924,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05534192584534813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8538728453097552,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4321607941945467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.280873756769097,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.008063388232302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15483611271547246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7480191168160703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.435882606554925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9327286457086498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38498458663929774,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2615337185048937,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.79410876010314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8042381336100282,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.22351425355385357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7832053524316885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7779292765920235,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7601466788594222,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2658509248760212,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.635317114057187,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4872337279076904,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6390837456598568,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05487948228397149,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4799301042999138,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9894013380899808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9586210378434705,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6488249417357245,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8490258843506248,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5673676206458855,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06136015758550709,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.013093248709002355,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.84041393938061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6593331298741039,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31067005052913604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4875319015831936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9842422028971778,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9526517585330946,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2851496782204543,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3360080834571213,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.23469248779905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7128044708417187,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9053199834463957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3062460834424906,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5663169042317127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.819272548926073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4046329111922078,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1219506223004094,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7911618654187641,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42465626465752887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7149708920566575,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7265330711273885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0521744441989194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5399711541837777,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46986450189817647,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7952911389049244,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2569546397387246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8323024126079913,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2563728228987123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1453082466110325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8830023179444564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.319127565226602,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5766750093055533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1548269548405767,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5328237690563585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9791447105512388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.015790107831896577,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.879243122124369,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.402394567395877,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.43793995837100447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08958409919041085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7487524465186192,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18953194243975358,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7094562973676336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4905353463280983,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08942602359493915,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8500632836284665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7895024196252131,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0928022527432044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0540872206754002,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.002616795265620103,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3418544731245941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.021418690067531287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6913841121901529,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5775487489255232,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08731492538724364,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.819973811541035,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6546092702802202,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8179798430322309,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.466612593658798,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2568464242585575,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2733440075785267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.34060932568068714,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.449042451333659,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6768659227296885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34713593218873673,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11964389824563287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48318439086195447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3204265279165062,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8658022195689113,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0525898011077212,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8959006442459494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2804733391569623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03525676711516613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0162985668285973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1087463651840574,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.329733571624109,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.180901349879515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5675016937873116,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6939617603707537,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3579615192194026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6633888218030912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6413640019642088,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3908970449680888,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9677707273784443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9707989256621227,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12173013497152209,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6928692572051941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7456014784207423,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6359012600353386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2611144929413406,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6104166386258351,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.560348666684837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.017975129857324086,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5952366863554606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6516665051909736,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5872989510126168,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0632689979594039,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7113360103808694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23102741642964286,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5937913646545062,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3190040400701403,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9766307884573238,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8670327678232271,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5285542084665831,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4443079928634828,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8220781529565708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5921111990713613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.012888698370586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5504606221864505,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3310577376737929,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38616108013194206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48741626882166256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4133806207953201,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3488067699666037,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13918809537412655,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5559986929211127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.365554726704611,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.103483584399629,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6348766338771326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2821303228216045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5674136504759725,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36659902785411064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3020190034800738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9185468605096656,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06135201874188814,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2664154304336291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4719999341870207,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5193561505922957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5691177218179203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38282084381515785,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1707214897508821,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2967136639260637,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0989698622271724,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5110011335711191,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4683265941423208,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.615516460796289,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20552968337518068,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9986271814795876,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5229624198315179,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4848148715040857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5708565673834262,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3752158612689982,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1432519850225336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1301351743293515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8525078058659894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2186149635102663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7646037696452365,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5105177892013233,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9927826491172498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9658204088560731,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.27029205542706,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6191923372567782,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0077116050516863,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7405096790738427,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0170884722035267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5137659646841337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.43888919724410164,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5299343779952571,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27905808902287554,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8600901700031821,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7720547269531289,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8190501095982536,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5452201892748668,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8398750582433898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38347236022561665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1643536920602048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8307033842804492,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04373043145294712,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7637496414531886,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15982878471548478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6045850321526887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5437969216075385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7442150942292346,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6693576134311523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38880421917604535,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23055987636743058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7004836437250826,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.133724422644048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06317747026828074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7588179660434811,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4174926393359648,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46482256925987875,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5163666697147951,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3495175308641203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0616950473524345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21272073870447594,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.611638264178754,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3045578618594043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9477366907614467,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28763788698083725,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0112069353305335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5329402872892784,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0979095933349459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.077122603182911,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6381331010136572,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14321329746771297,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.789058698143484,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.635280136703765,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1597526604257933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5523695198253232,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4366239047059185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5705534553796298,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5915685272808787,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08035200293792855,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0566732971618666,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5637643278270867,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4389655083566306,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.714115693346691,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.27738917383733497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6532453961132418,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5580654219139756,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6253048257125947,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29722663942531646,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6212565806676412,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.702020307201028,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2633576595338452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7315791786925242,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6581864789518914,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0821236293549682,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1256979922825208,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2009857259304426,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5913267661128639,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.157028444918357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.117477152488747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5255908783691698,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13501664926200702,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.358430164355018,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1648384231572535,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7852738202032191,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3354924269392159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4544025021405813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11675491071821967,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5733424375339272,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3891682539071142,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.25568063779752837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15961598599978255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6054394826313705,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.846954159440083,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25254609918562215,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8723124476376513,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3423654472980608,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.518878151808137,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38171866813707167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13533331781617336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5417124724110939,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8792542529729066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.005343267282466,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9636926075114871,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.41885373941205556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.292454773876968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13154121703889338,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7419143574228424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16896358136584375,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.007413565262257,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1034025174333935,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3708077412118054,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0419537316999189,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12827003458351335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2403787066796628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5128182673028479,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8045826728909876,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5512696355414508,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2549198091018885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1915215313287815,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8201243190771067,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5496702897675345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7138205801782588,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9599801234863894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4937889866699231,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.24941911163222358,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03120094689031435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2013501352023632,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3681201998691477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9878779713143955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6547187494376493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.705079230581679,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.378120607152183,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9299506746025027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8947809675543235,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35089716898442097,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.43823317290251246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8456348564666373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.193074414119041,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0276066000336974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9783227284372806,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9912900012747727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34967233168881123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.036977329689676,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2636100568613815,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8361041445708983,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7853174739226894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7131180981173121,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5570189048745152,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.035418777274112564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5408485860110233,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6808986364236291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.453217910113022,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2476839722583715,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7151922099873436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9677474363231382,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3731859785236615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5521571468571517,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.070790298796753,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9920274079560314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.591009170717736,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03037100096124848,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05080978279959463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3024921990371799,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.086051806889846,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0751880148270394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3806889992990941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8432628434048264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9223411083038957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09283754116408595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3138157636984986,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4918417350077468,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07131113737110194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7495033672272952,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4543017420472149,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5142997866808637,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2821132181384147,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5086902580961461,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7304553719180217,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4172646877472905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5768125380977075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5986854555075901,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31348085034142026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03259180983239603,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3370374462130073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6636188235522357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13425793229212377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.752141397788532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3683919467976589,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.325729833874361,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8998396505718105,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6424014054093274,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.152131031278969,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6084696277224791,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3428863733540204,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.242249078677767,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1431233959760845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4888085985924664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.052291418341138325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24128013723308125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12025724505149889,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8861138167285396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.7081640608016944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6842505124341165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3425792446254001,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5327817591352487,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.268239740115044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4434402163337482,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11241155389017107,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9375023701709259,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1405502671091742,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09349232443423429,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9256302998115905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.37662273997001866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3749922738864998,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.8518595889554956,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4575636763031163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11225090035353619,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.662304024404504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.843474573263075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8506082701607813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07790703961248835,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.429056036751053,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7170001778077207,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7696299213771032,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08785764239793198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.107754953038343,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9159884407333254,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5268837070272121,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5623626341875516,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1301952182465649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12277382466374692,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0050344967749465,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1355798450185836,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5890896617752587,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2928506645874132,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7870250204755899,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5306915348942517,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47721121959294743,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7386732496448511,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1897442647950066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0134850888090104,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8979467673798709,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3493595478239389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1216952547947043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0242203304364879,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9245149739157751,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9800520560786932,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8582964562362174,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4910379210041544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.34132638383380404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8548471321859634,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1932148034775595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.34338916588948926,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.331475712909472,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.830260798479087,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2036119840630892,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6574465282274566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.370699683581723,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8291997552290058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2815144864966646,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7409393106699158,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3636198665320532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3267679240539203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11361569865491994,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.6097291346227913,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5745133207728061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.37887107233780615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.327469812271401,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.19496429901649368,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7715913507799276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2399679260885679,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.056289372382445836,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.006137187751205,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6392300200471912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":3.175375849563677,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8813256575446166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2169234189712577,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43679529873598755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.9846322338932447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4202803091017878,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2205729918055768,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8575148038227312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4369143813693944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2090941650078006,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7661318422173583,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0609224307975065,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5952164305563903,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6270861070871119,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.670342536121975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7471693172545388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05056643653563127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.133103290135757,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.349523814847733,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3186776005524562,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6427721102683732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13162530031102593,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04135012858290058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4809929487875624,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4534210629746627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9121643516288164,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2961286495570323,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04748113208410279,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12259010253839334,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5721403049718498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.534817087554004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9701877873617524,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6568915128993111,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1833858728269333,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1208683260414076,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7228412536066507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.894168161434154,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7603185850140127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0730446076629172,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4825199890015022,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6454639638347119,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09420003471330239,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0700969508792064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.884555764955847,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0054574763173783,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.741961193931826,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6147825022363564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9803095856129033,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.971491858260082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3638124784215359,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3835409443159895,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8027509074555524,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6189589265596317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31212517330497047,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0655378413202152,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5515447408579846,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4078616842109746,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09493081091153192,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40790455836538025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13393124953891614,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.29159993160635456,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.49165390369613077,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07134438702098005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.22199317456739853,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5097598956916375,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.7360188035346953,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05324572136672035,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6019380151551549,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.432330851114295,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6117143617815283,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.656037717166812,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3973829217169658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1279513628844269,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.14662837048259328,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5665491865921088,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7802447657050952,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0889907492015696,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3408078711289728,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2816467277261976,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10910574270065564,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1875893017358314,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3304292533571447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.401604421935144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0739932003790993,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9862179306489437,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8354804028628092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6751649474000512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9145626443247037,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10897978332407764,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9880721143221868,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7171731742651378,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13440403776494944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23123904417033478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26037449497964066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3477565502930386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15301780987920763,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40065055076559236,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.20523900265352948,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08465549608140312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.276785933170464,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5345045664261756,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13141651177673538,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47640388445286247,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2632657521776392,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0911188281888773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.417152951728027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.0031244327390664256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6439633208722806,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9691015433723483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.49097672273169163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04490661058492266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5989844468239051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.32680641691972573,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1739448703440662,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2187169588811675,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3487888764072882,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3625260008715635,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9040913898009169,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21804889565433258,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9715841476250748,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9226932239366158,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.19502552980176027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7689313815284178,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0776469069402552,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.606002803994394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5832851542056795,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7523932263621607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.17701046931096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1526320865558377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8088255334127008,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4631309034256623,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1023457472713245,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1941734979098593,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24796303897292749,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8264036887753945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7619494108242693,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.06547905009635,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14075877025494288,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7344060631342568,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8008977548991147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8565455849549526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6278558371152445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3371519396299605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6536375006199497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7197386379865964,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6045072492745645,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8113639417516261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7495623062214349,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2372284442822807,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.327262008342693,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2837885925579906,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21203745150528563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.610457038975976,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19733064068741513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2571882343578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6834892550264979,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8955724805009702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18828238693089627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.47247497913203107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7611767089817012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.12343077373533884,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5705466140329785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7388637636675366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3266631269319413,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9088637262541583,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6625676569630392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20157170626918264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8464318792417695,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.009136721658171254,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.25847084981717,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7156751491103908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9010027026219904,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.427694673212459,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6855161253112363,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1340961514197527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7017500739427365,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44906168741045605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8356816254680597,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6866566867243264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.841763186454818,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18271461471628125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9862232743698223,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29313885922390037,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1055741759825448,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6640927742414697,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6283136373216154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6389182866668,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08703345264176665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3226369869407919,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.01376146536215428,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.23201216222895837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7303534443263451,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.69965372093555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41004556016119054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13384165587180208,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7064156026273398,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3933983504558927,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08762466461530494,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0825946699663134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2200302246148085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3853648007379493,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11745992052192156,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.31294177832894476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3826870417464998,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06220183216816588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3404183052952128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.546871328327812,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.890128556087435,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5232828417910054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1759478014904237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5842033866302274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2405869841294037,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15405166008665994,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9563344498117896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5227282688716395,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6907626413149939,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1823234757396759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.039963778760492286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6061352645576794,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8247506136897913,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1424460241710359,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7757330169231675,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7447201169649911,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8263456173608206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9047892831571009,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2548944719683814,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03776631366882155,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30416097789703134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2571915578563284,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6886601298769457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3428807594090233,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2988030661048295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.01777447882859029,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1822280614210987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4593748356350398,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.471575125209196,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.02427956531298303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9496568086485015,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2112631934941045,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8644835053836961,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40689877412830544,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6594546447614085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9926668892434956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0681097128518164,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.17194592879453108,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3378354876134506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.838248675759901,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5731765958699375,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.43326535010855993,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0443115346236151,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0798970354914985,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.674219754328691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6275782031448838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7275590048156926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9708457365430045,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2690412161564208,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9149399426011318,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21854779008271752,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.172380164030351,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6573577775495,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4776516223575067,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1188631647689395,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4910962025283636,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2986286414039245,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.099397971657174,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8225178119873222,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5381815854845593,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27575077834847317,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.559803670288375,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3225446158880465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5823354154452067,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1706575502281331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6672587613669996,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3028411418791808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4311163153358697,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04473793515995261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7852495229502301,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22446171818374694,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1087925328666937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8662818496002576,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6914461512987153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1879899389475845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9697683376608026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1546728298601625,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48376634716304734,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7654423269253758,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0362128670700872,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.40348538601928885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1757456364175614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.593653634164062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9856499853546916,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24303665931387908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1941780187116802,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.65510451696623,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0379911031220193,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7653906880990506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1229135484535924,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4314718633976868,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8111329756253838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5701738646381029,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22673904815282464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6031215124500124,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8737130985079222,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6771909036973542,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9564749420339376,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5975349356633837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.047943526521474,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7705781914990864,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.024783651542090723,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10316760747670761,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8010223519687285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7738686126783478,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2434289630281077,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5864765573336324,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7989872260498352,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3732057503499622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7721968146137455,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7628506800241222,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3325540839191259,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4319620459322424,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.955426865811496,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0131063034174614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41401691176097266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07587312899371446,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5033321868896952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35308387370359373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11602020751849507,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6833048048303185,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9001843825110543,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9698732928299227,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.276866930091296,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8527047064232298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8384622931872237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40279801343338484,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8102434387996187,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8662627828383989,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5260618849936392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8768688424855915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.650711348120307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8414779980547604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3939505253256765,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3274170054989662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0049013500850084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8771263990016815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.053748159220150526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5610731608242827,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.965927225013477,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5766203681159334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6337400406557911,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8604592035462613,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5438495076132388,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4423276141061523,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5514806907401484,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2962971302042572,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3612483126908437,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49326094469581383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3554775748956351,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9118854291742253,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5484292654187861,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21747593802914533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2492859041176696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26747193899183497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2412147541254046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.615362126533129,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.240676163148132,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3941859500792035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0572768833098096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9810648310061314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.829315464436212,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5520314476900854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6160889821688977,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1669901553682172,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6720778235158145,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5479964053015278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9783619165791229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.80152256928063,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7873693998806273,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3412418735979714,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8608941145250224,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.28647357686441266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6427892441459298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30611175516046796,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1467512659741268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.971065314863282,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.983666228962461,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1146931596526577,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7693887340449352,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.99141663404541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41200486438006223,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.441541729115337,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.318034937139835,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.043752864069025676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9451338735678103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5085576752433809,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3734472199590382,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4648321237490838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31961161275937844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.636732473020031,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7633177530751891,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2575756549013666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2667177718375675,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4739044408796533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9988542822366386,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.28196558580746256,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3632275520271313,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.806635315520925,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9610564698393018,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2430670676832962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9274355281857005,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5211253572474264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.020231155965920955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4029202271666481,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1529626038759404,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4411318201948995,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7245806900194465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2512729314500852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8450536679445206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37192524997486087,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.754529105131407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.534871836251761,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8420020630346436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.89956139928996,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.122335580070525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9090970258958224,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8272766783003718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6601883793096119,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3246357055479674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4549317347444948,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8481780570388051,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4447834928172778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4364911208418758,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7886130824095208,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5403189396555468,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8167937673199632,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6512323762703716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16501160141282023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0105017439750692,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6236494601700153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08633197725630071,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8482901400739018,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4167419961160257,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6289098697135702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.022330684820723,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.30092551694903147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8642239098164128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6147160728782732,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3626288063401653,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.599649405653817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4737317231590352,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3363001446010379,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5683348004928948,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.155186947377496,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5047302770592017,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5969161209529026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2953904596728858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9110685830288019,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4621854507423535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5251847763572739,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41411690345024166,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.15739177968188667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5298983278757463,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0823536763952952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.75671089144676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5256685273185115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3415379336024982,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6234327468377532,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3420080003733701,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3441220978264026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1359964636807418,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6541499617384963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00951103869740244,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8225145066372392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9736269791656662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9354052989027095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24303638361250846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4487759102841204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9924727861375291,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.247310253058148,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4824307583243743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0062620558558044,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.649441573592497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.038558987672559,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.011971552158589915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7336145102376199,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42446890443162966,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2407085528102333,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2721122858979022,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0087804304540215,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7420378498793951,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5614333648808181,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4045694376840747,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4946947603635854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6671510329038566,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7516194754941186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5621021564315454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2587671457688594,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26393962315528174,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.04233348024129713,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21736581970675095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7326783578094163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4700717935114205,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.569456258969586,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3070609496747019,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11848973816921937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4134899770340046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5028073803758786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1294428799070002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.025915885929309,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0868368963594817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24379087462235693,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10108956278252013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8434574671452908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4246551865934274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1226582333601511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0609434826297663,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03330102336625007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2941837111811094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7301644650045955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.973333395636196,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12249906575917135,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33180338314004976,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5065352710742208,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4269693503577501,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8792980278530877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1657745297712294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4968258436963331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9093133520215475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.635175621574549,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0011110574620563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0726889562703095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5486874362102432,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8140719428185483,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1194763860928187,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8801227177338156,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6192287726314212,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08039033753711822,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.12505501191722024,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.658747009709641,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8114328687154089,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34822803060038554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5686219850172476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5730283600654986,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8280318014091881,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5644900908670571,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08647976458535656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3004214862083807,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6500579938991602,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6375233165383358,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2333317154589838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8457683933357587,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08190933706755921,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.77093323389302,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4617250725321478,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.455130691486131,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9926291647831511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.013533851280544962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3682195792850531,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8690829573021368,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5928051952549165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6291376770500245,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.220385326099985,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5817019240983026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7209050918792035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1184919268871325,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5137204383070735,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.602210802129838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0835898734248488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0951781871097572,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5847784054201823,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9889582291090488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1758560029773628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5717302895551968,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3894243770475354,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3871666618376639,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3207547626245053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3370989586699529,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.15033931474793105,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9142608733947584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.623057741538311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7248309456451936,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7247462068522075,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3901977708595372,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7911621842786154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9739853295555436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.929387034867204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5143671112470307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44394392435096863,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8207465940034369,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5193015294394034,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.38693635283798944,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6221339238979473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0137005770604408,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5783126178394973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0332507378661666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1978538937887473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3928438341321563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29984025853732765,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0129252864145908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0992178666808048,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.404833080762347,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4714355586115526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6717485810087225,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07201193261898498,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3792743359781419,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.141128706969028,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41377835417160513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1434945236659728,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.936687010262656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19865823075122435,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6787699832486753,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5388484360383115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8831227080134747,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6066993138236678,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1244641479185438,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.779887088024859,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4254267028609804,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46421988078389953,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5133416904878603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1208158628701508,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5906703826813224,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6661565571375427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6249140222675513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7921606319528163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.317649434884788,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.164217113282061,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8953530201334923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1168778238027053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8145423416755935,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7032952334523173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12031610512299773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.244281276619624,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.611974119386875,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3440030944847536,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6137200026218186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.15845853753816153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3067931467527125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6571604146447592,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8567970706939665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.29058044144287987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7680307330100002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8718441943259418,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.013574588885961,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25245483122941836,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.785226868305016,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.415837604468027,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6800814022756736,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1206944912044197,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4623065933707973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4316066212402356,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9459343465782224,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0883317150996179,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.17059887808557805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0140003985365125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0631295678385517,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9967855028690482,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1217458461706014,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09098758194312806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5872170526366225,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9987913094111147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8030963827669142,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9824924910220725,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.20931645723158177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2290108851634258,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7432329572097776,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1580914834036733,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7364252896166561,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3876603492752704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9394859345761555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.25064713246062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8785428862857856,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.062413887413563796,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3080803765591633,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.853032689840262,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6138548450811552,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23023815270902848,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2334172060789106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.687722796307384,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7309308903277252,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20478313501744783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0815179984627403,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6689168546654614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1429121614144422,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0657813311302151,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2837948039106788,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.595842715909059,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1356859081120265,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8255703816325703,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8793988570006235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11636221508559297,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7903674336473467,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9497211967159025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6441352670057126,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1025389254553914,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8021749003598675,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6923118016088,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6762372285444425,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2734861351779303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24704212569811235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1516410807410877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.39673907292207,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7408957281839714,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6198475809418249,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4624785896290762,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7697242192361649,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.37973562695870955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3211885366428096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4401864220508962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.047905670290425,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0617581955180575,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7977964777212954,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8956635411722265,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4021480824108674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8636446167239407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.09546546319144023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8440486461916947,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15713261871269868,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1485469819570775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4910222392986188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8589743439253463,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1876128272676083,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6426646113120715,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9114640961551759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8295954936989864,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8275323483363501,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6287310789568323,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0498234538745987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3853299794528668,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6404673571255239,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.447379610523528,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4180578506742858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7671027897083778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1859574118849827,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.947634458540489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8173888867062975,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.02848423307602088,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5303604733052718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0126400043454038,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.033278032099401,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.829205737669648,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5478568718675958,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4960320880544833,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8047540200734762,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35902009931109546,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9859382056467818,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8513836031859747,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6878171258177699,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3982607305811503,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2069485609152104,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8248685823407351,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2704622445373137,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7248839307614459,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6800887933810125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12321925071505957,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9908280714342945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5188826555216974,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44027600178401416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.224319998984643,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3057957360891681,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5783984519134946,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6843735605633698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0753389576464611,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48940384574737905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.757729929917884,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9121176684347194,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7734535971535332,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9433133789215877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6885494846602453,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8057476625490603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3784655910554582,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3124882519981798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8619400060699607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33924837440375955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09923906538103733,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8001867778555583,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.415152007267956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.441333379129901,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3027033026084616,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1076879681676242,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7925750710065356,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4396534500298603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.875349692719642,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.330613417922331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6889610081516029,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.553026516481963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.782308797400527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.42409094167411965,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.984111041538946,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2807442243820484,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4072164936465503,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9360742324054727,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6723991246823173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4036828151159382,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6876689490129317,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2893967793404406,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4500638765224716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7371148601375874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9609139671880085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2447586883839996,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9438541172760866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8506481563628978,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8051591021610682,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9937901908711426,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9262061242632287,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1341160894105289,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5280665396680124,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7109070129199733,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3292900402952363,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.93143493648647,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0858018145041237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4449472120764728,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.27457363248850974,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.09463896396939475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32222362700050855,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2540123890828356,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16891649430125666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.697127481903094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4521940890255416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2615048721404656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16497866328444832,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0974512217684445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2716512463452299,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8312820998956543,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6907561171498582,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3126392588967701,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7353930080953703,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26607542101659565,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.85932288449604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.700652668526085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8204466912365902,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3071696538790922,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0700086641837037,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9062801830742506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.02714870093556998,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9858547351116016,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0736513253719644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2777968664432766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2004217554946188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5265973608157521,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6020111214182062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8715586588041258,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0802610980504732,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18030082167769512,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4660029967374935,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.480626794309698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8932366505247686,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0501467312026413,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1877539572072693,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03263218762865261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8298083977262691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.049732309640896144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7811447324585243,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03642056146536676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8672726827417852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8857163853441365,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5544210844034985,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7426476892137672,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3337800530866888,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6223951270860235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.46514714518767786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4244774749422464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.921931079231046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6470458513744295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7537728670600599,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.030518447689663,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0321754072749423,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9451524641626725,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.370554728573012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.562069845160531,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.278972578926759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0288396937945103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.356395453766328,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7427444072495581,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13357403263981205,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5659438369870808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7157272477125587,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.37046527502454474,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5068347884154805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0614973445301525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8223576088775295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4039838127569775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.660921621460632,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1875816802462289,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1493527656390294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8027064373510115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9226369637583898,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5188404939672453,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6052218617059153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.032457353485997764,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4601583872097783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5774424555490345,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3901397370120296,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2834754107635775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5688832983310173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.18482148122648,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.94211072087752,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7274783760125394,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.685735857782849,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.299081437111774,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.39525935124277334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49915377548162976,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8347058770684663,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5052233796914103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5862969034291026,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9837062364305935,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4969216064441255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9043623986621823,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3666587095065519,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.730221193648402,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4641240558199504,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2512078796520245,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8136853944979432,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4635247226739905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5379509243941434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8676651728627283,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9752896492487304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08604862198316798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6663094424257396,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8708781169183513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22837659375006014,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5507143974306552,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2440617685145927,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7534088902793319,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4912301096063838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6679197898777214,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22239428711033815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3391741998506412,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6268605477565017,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1847831427488442,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.66823455607862,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2509632590520114,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7823877009579192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18569062848030793,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2632090456914744,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9084805426200289,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07530886027243744,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4329759598226466,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9010876975080033,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5992378568212318,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7889282965672648,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.859286750454908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5602940924598521,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.043673044299327834,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22972652382310654,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9717223618449724,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.863326771779278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8320649043864696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5082702574142384,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8069498721429786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.179174106870624,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.723185900491837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.23015555156618106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7133538568652695,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1994131384136582,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7796232552708791,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5569755593903278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3986763283205246,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2404625153560311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5851338996552604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3335230527781903,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2509284840906667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3062749837976457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9995381569676667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5669872092174852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6578588012569218,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.903806911387146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6527973590231264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7732587061450524,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.15614517971066366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5808905292221773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10654713833814577,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1674275871866016,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3730947192257852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5899717490125758,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7668024736727608,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8512428061075616,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9922121337898218,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8526497613534172,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.178133030300069,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3059987230808603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1212986187945706,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8214900434802876,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8760705352188527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1901474152252587,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3456420005088674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7951573657015958,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9359180588525846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.32581827299235444,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7786634475819345,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.783456207220353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4178177383309163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.684157142455469,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2786525792588064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.264313631323256,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7470643470741454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8906655430605204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4486975817435308,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03717091266964756,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10566377416012473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15282004354573075,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8055110435533206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.892014783818845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7607291906028832,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1798780279467262,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8594300810858968,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.527987123850703,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8521351738079805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9715022723960312,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1630957088185125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2707784114736937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0504197193254727,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5552058167013172,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.473800010302177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8162539116719798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4251409237929513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.09491483686114233,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9051651537706356,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.443544294024683,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2771425572992805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1308697100396028,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6010520362499134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6202192756639655,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.539010678506593,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2996863577590654,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2768627096701763,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9754265619838511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08945566211918354,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2663287985004303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4807327521063334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4803837087707228,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.059103810806257595,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6454610514362829,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.274935362893825,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7751828911900867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7243291999664385,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.04154508128311196,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5999274249330795,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5713571941637605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2737670097800917,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2335157436252326,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2763410437687743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4541090507257666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.748472710480538,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.007489637471666644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9248876004535296,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9898340326019497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5236892705841867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9307101397255444,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5633613794891152,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4647679823276394,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9450945316625066,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.378310261893231,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7614041683079407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44095999085381354,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6714180968705716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9656694795056961,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4761042579669561,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.897985347868783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9686265516975143,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9572620320273568,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7933469970417097,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.869564913523659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9509033491846832,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9138699186377011,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.275324921256484,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9666622388900694,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4435342288807007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14900137129453084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9741998377706427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5715231452822525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34502172910068296,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16469449124755497,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9084753636990213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.199461521099503,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8103461321446934,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6094628767225796,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7772249363356698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.652648866460769,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3229699268232897,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8306790511347488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6875964689316785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33166675713919336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6214571822756878,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7524273389416667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3804217538651451,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7207546751515057,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5833214198425796,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8221532118402046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05434121028798522,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0311934389095927,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7473226764305054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.416813510676318,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9275627770386805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7677752374907625,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8218586990985708,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5974023103547759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3721721764177599,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36891822738240654,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6084529141501922,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2993788490993561,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4009173496389393,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0287633694426521,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6771584336380805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7115046913898846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1044813595171905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9698622481636803,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5426305085976053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4266946810815684,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.607147931729946,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8783902656549722,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5516864574523335,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6672836271855767,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1886453751686368,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8562489571628311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3729813805000659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.124940372602508,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2973774093578454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6195332978016839,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30091847467993427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4673236646301788,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0487904284806442,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0679692547109374,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9605519828084663,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5340186553403927,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8545477566777562,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4670149602733766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.870153676377949,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0758829648436976,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9485888726450695,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.861461503416065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4259216373468531,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5422059425065038,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6492081678516953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8313802872970478,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0643903026134724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.676634734325754,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5046372799126355,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0845892255695495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07188459817321474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23732813422059448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7607969503318326,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31045077365923673,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3474628009788597,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24929229488198118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.615224486167493,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3110793346126284,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4617309275786898,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47237555214172117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3187464788152798,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7391206927960623,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4250212704681561,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6463928942542914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.362976068722171,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013305493668024661,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.176649117775677,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6591957729118083,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4257196071475544,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5406226026161998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3738245560794904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.329041832902647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2606667857005987,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.152229545828932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.951686696808519,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2300190050562512,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.319844998501246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9016376052299884,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5899785672113338,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8427952878822313,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0768118333887264,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2120653746329326,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.651741236840937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3637535451799354,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.143588473218585,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.272888028547628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5788194334966937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8764974161170868,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2387384324687874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5143419351237265,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45294510816566796,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.296337962445601,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0038125214093392367,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3521549085435627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21631667565139412,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8975347529793928,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6228860409332565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4331681948589461,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9201557799436657,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.108867824270488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3045574543476737,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.173258851190253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4393963240427268,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6753144444645849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03863008666849374,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.809583368749397,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6446780264128156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0554391278044206,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7978973951450405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.041657212476876,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.325268543435858,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.360776650042508,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24184961169014216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2369817579439714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.59290073991564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5842976388355328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0278037626646703,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4366271395612134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.284077891780892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14674730273609296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20194382834410263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.833397152622245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27872878088101855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8225412855400707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2669197503376861,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03981764397360129,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16343161933229813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0671671128827847,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23697157888804843,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23518537283178667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.137556717897405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10650636175316407,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.50523260536183,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9717383005809315,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16820206792892417,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3014245923280819,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6251406477431516,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3082549401964654,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5119680548223943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.150445621215422,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.762945532279931,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0986673147514834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8327267399448562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37118698176674625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.044637570275196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2516226339564491,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1797774584387561,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7748951084971317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.95059677026043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5840596406063565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31511238744713593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2058788403517516,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8107557738270295,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.734692472057579,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2131026245003966,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2882862207842884,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3991412928740858,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.045230826044908766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2268091868237785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7239685511760492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6328334148041297,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02465016386303187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4691334423501117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7640206441641046,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2939476288966989,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06353524940708406,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10349986961715595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7527831317140046,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28954624015782343,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7797927715264515,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1868888503828274,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8446555008111104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02123636131076404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06471467552095721,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08450913990550737,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9363292415279441,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23019697008812606,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9546148159727907,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3710849381112285,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10530102308160529,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06420927037395001,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7483251009361104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31569726732201403,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.546815048972259,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2391012074679173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31440858070475053,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2268656154897581,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6959500351600552,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7527681812968283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5402184228231361,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.735535900261358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1541473383537399,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":6.818443886061818,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32424380980929723,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4835712578096363,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14700516209054668,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09831330878096517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.479981123521339,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8826786228739589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3994384787350529,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.171098066103288,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.030643371470122704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.493850915509947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.722778020872251,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6369733334639385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0729502611262627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41993566484889017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25597094980928103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03730940649930146,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.124597788671904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.375191762967554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6722051721604071,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7108106988918057,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8069129863527459,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.017241998101689335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2423785610236471,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.717920494786836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44922071680457454,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.090526919829776,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.609441508374564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5750143817993087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7381931069223076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2909041687220126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0956354495037266,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8999619967408763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4936178342301038,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6385816911437273,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4813980325053997,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6328507691128713,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3708006948229488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2375442056910227,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9430961910681828,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19197308119755557,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1098192573986814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0926997698670964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32501166213622457,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37403190609092046,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3004419562696773,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.213992206830805,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2722464389566675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6630189932359896,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7633868767590637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3417667492995315,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47397407117802715,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.059116549422333235,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.462238657729425,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9357854326323252,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09589185481611953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8439539553569071,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3432809648720414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0532461139771079,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1385706032203257,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3433713927789435,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2750525876523975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9772716592575038,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4615438887618811,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8708407911977833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43247369168957117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25967425970239405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.004839841506583772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2024481853075186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13912640791587574,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1806925820412442,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6848116311816953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.870463922048455,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45665482601913265,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0692684756840272,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.755679251129446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6836186490383199,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.161911286267561,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.758348379195696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3919941607302737,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03730196958079433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2471030508282295,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04717411770250608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09221730464676155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2726546468584517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3729536798158321,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4386327551258705,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.007691426343094783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33593749962231917,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7267477970693975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.327052850122228,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.71903905201866,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3118246802742,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5576751350714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5426671265624448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7158027911172647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5050754497930592,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16117346186228293,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00029398865182352134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06976010969120681,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5990146038522572,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6430078692158998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2794629298810842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.143311276339311,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7075257196342233,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6443792505624423,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2448441915900775,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05427815503909041,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2583652328151984,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9591407079717201,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2177362377469145,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32469215848163785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10066198357280982,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0780970861031474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.064772925714062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7458818156237801,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7675186809257675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4691647281684046,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.241115357208197,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.01694451582855106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19151804696654665,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37111100576111666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13430297445099512,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8126699881746307,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0047487285825671705,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24923466404980246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02995760487425365,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07429860135628724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.426488029438649,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6148468569019963,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0132987108981901,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5841065459434502,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0377799033747106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6091898474021961,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.005525554560558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15018571242409648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10161134692221684,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.713769231195688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48989097380137064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4160715413536873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8841644934346449,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.774160333530913,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5714133266799672,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2085725467023032,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3446986121413067,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8903638046009658,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5515887808758567,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22754806693601437,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.976016873386064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0560537908740983,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.814765867686639,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.638387138500659,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18564211124603433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2931905024855083,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.956154254880388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9662047373181328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5265402420262353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.532856733014316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06855233490352648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14275651145617121,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5691465597983449,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0594847788072013,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15462263907186044,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5605706129468832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8792567078710034,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22868550206418162,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.046540150866379006,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4989052130663497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.700320800598136,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0012910479583823,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9157376330351075,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6237466691441678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23947903185810068,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8515319521661415,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.621937517324535,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6292997568895593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04182209799001248,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5630767965254375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8622432152731898,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1070720458386747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22605608014465275,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1132323451556745,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7291706380190024,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.997543152637071,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.691755375754992,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8244293462465517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4420532388339935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26352096230990385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7643394965127631,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2609045774342057,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.788962791136519,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4168718193932888,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42913265847805043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23302326518829802,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5766404872903038,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6337384314108833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8872309363407945,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32345981072082425,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1704984678519696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5289993380727103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.021443238730124842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4905945719214299,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5377456220567018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1177421891718373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0533368287734597,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.802028261599101,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.564438212823832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21814202418918416,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8455434607892475,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4154489629057547,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.003938956337610099,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49501664996044503,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8719831248080697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26331925960397656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.503387575872178,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5472907132926813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3984362386519114,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6523710075131616,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.93857911052984,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4718954606911232,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.398380914108907,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8079698026184426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7923909365790263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0682639345401888,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.041248871916039924,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1329067426908697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46146368527294096,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7422972139807216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48611464583569153,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5843617928060317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5583970837786696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26816207860397634,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.045462763403453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1052591996162784,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.174805540937641,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1000374453465662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4235862281688283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46526544233348205,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6233311465748528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8908168162902035,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.766818251320331,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.373247301308324,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0956743729753886,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.045175831646716,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.327804898012814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44565392784208985,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6939915189680756,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18212893318410037,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.150963072758146,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21392632367034772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1844261177891189,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.335084102682842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.645782327658716,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40978125856897485,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.385604739826384,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9857215114119486,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4168351133607377,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2811884674719906,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3767602124095451,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07145851632588064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23175821884515402,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1957779689855403,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3971846263440586,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7705261011782812,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2035227936008568,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8059605625722694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.17535964210461,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7689154562936644,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4294368511526269,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6137105932437816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14315598262749027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3374381200738795,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9397885661179476,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1622658500394902,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.560378875952205,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1964498016760663,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.412077756225892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.178612223007134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4716199520031206,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.851586681421894,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07483414628412018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5216441376703546,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3378957741953112,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2399225474787571,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2305584231054816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3954408669980678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5795918329231973,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.012813258102669063,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0181563701021834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2979010734981022,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6621910058473296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7795744190679559,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6043357843135171,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22077717176909892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09215318052480018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39972597787679154,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.046180255492920604,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1969357208439951,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7672678919212859,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06742576885205809,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7211784236193511,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6895527803578293,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.440555703503105,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.915902622107633,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5005784932467193,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6216839711694585,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5479329460982639,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9475276283235015,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.9667486427293674,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18457687719433905,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.234172936873112,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1072166207726502,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8242167453435763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19034730529569446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10427496892874356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.385497916603595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12279994803077714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8439683013336763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6322932770956259,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1057516589576624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.395127051341356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7310070272548139,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7293062579332538,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16447408532748645,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.965501626574872,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14812913326358954,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.3732629812905253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8139751554125385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5963934824534626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.126691241423688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2217433345844667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.031997608433013344,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.039858344884251634,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7312773685055665,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3381034725518511,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2979545389347002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5874954983565646,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5355066807972577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14601960272601955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38924008640324975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0388948165001028,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0137093768405854,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36765968536441007,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7443742558982864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3631328807846774,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5325959242257852,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0927304346859528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6440266688884823,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45127156743220675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35947187541417747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.982089756111507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5131053389907411,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28007308028783395,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21462827723781921,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1062196650724823,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2754430033853141,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46132836158387697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.045183123885634814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013199303303961608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31447015068416806,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9148566617247682,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.655891887355987,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8810453953848885,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0063355480197279995,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3163045394146509,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47972461608125655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5980046077541266,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6568778122141707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3028958061566353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47102966996838996,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9357558283665428,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.011458112299543246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3915165172331012,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08013843176928777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6508080585307298,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.049438742302761,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.322411063074222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9672408556671303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8378610173805228,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.060811493023081975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.333329346517477,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1429454828026002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40612289807246094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.024490311804863794,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10162632526430239,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14030177745831882,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2390944365378935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8578459275559919,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07952247948839626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1889216743281723,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4123426767091625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12580416639932285,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9356736297651564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5573664024575969,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04100817079870103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6365065285316589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4462344569756404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3408803874429789,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4417020273208426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18408845521421313,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29676550315590894,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16771361831779857,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.080045619581179,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4496308403021319,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8367521488866936,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.542395033309366,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.670320829675191,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39978979810388937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45871649198862785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8699540947749838,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24452030947720016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.598947951188316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.035018108533971845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.94608988825125,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2766241540138106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.0576773150880077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5039334667083748,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9476368960312789,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4279026581671267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3715932205874584,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5846299551559055,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.32290143562286,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7998963785064155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7759817899520992,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8066634050047474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.33950466557004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.557506699542626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03136984061438464,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5069596048666393,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5604851295293958,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4647243005367994,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5456065586317922,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0572562942517107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.775166621899508,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.055194432634004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.572060778495709,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.203458704777696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18185200503624624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.023762308185573,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.554737811588449,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1554471918693733,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016103685127040315,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9896270326446813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.346242739977031,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7823213905290106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2047000697806283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.891242222263005,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4634908417430263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0879799483137922,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.412483673843029,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46800437696282365,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1908208767958444,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12059126043748376,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9812663830360068,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05571328399405627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17331206500711505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4100706004318313,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.360054591858187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12264993797680739,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20093454129569752,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2195668308064705,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.3211077112673557,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3068201909052003,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04534714632732738,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.676309524756107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3081682182356077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9122793910533864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.810509334853205,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23897404355756433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30564918603712354,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.598813305376486,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04591174113778111,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8442599365078678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8380723109338969,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30299647943941915,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9260568080014356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4329166878499233,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19441288312239002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.761884634738102,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1080159039342203,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.055115286296518906,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3973061913460071,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016290855988460116,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6707670681643491,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4530971994356294,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6503893280484079,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7441228243811959,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3158297674389892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41212674972783137,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5644673694761491,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3195677725477948,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04078706593048905,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6208940144496999,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4598270918802831,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8226005958659819,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3774063683513982,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29899672345270845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.011153418942628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9434774641884084,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5579477667161236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5336441334688184,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9024586028526245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.541674775144893,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28671189790789947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1045336198602855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.63311768557274,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10420361870102762,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.252839727341372,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7239592374244664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6207620014568072,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0244485342096603,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3493099834745381,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.269331683312394,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9887261040110521,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06551242099368845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22704420021238755,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4153645677457343,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1029380493812593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5095297938519492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5264278788860572,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1115116179848528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5543704869032866,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2763779517917186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22432102496338863,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7807590810668814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40059434161622337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5670893592862527,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4756795832051768,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6866558201082655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9985116475438242,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1026709988639845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6917461605606329,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.62425985331202,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7671390804247016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6317886844132327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5082718321607126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.109120071384006,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1310173070573587,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8534878967275007,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5277184643391533,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.949368958347335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5641432804953856,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34505191483709435,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2545190908657414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4746272046631501,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0511076710815874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.35264139724216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8331578448957755,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1627639622996506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5722747726529562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3375074414784836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3509196673155819,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4271612465497472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.152701601332832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.2968620474652313,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5910800968850816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3440292853934362,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.391829072545215,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6157745556867193,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2017099240868292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12257689222020408,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31176062865015564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19652907632485514,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5269139981620077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04501683984241903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15837308957342652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5286947014999017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2801797361596711,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3431528431636577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47665173871569344,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.694990857965893,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4690585226756138,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5215601667423859,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1223637087862128,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8780687270007665,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.878550688948586,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17258811165790908,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12682246716699316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7357032236496688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30724814517694843,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9573774608601282,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1192128544849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0996103284931356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6439620449232076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0753216070676264,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8504101410086142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33132967059024065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10648766321197682,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8843397625443292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.329819802227371,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8958670273399303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06937843418715649,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05157411453911375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46437668631739765,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7272464477097356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08779187166205288,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3125232846729247,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15882054229670076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4140033810129446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44929692186030595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6943732233059008,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7748405996622555,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09955768810295271,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.240764106330554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5830370126244222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2157506581247737,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.234863773525169,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.062322191821990294,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7954670333700574,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4795066814705744,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.857347786949188,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6739723558323218,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28619775377678763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0379735974836792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.175071937898801,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7436779080556514,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2667627211546432,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5256434713791885,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.513692526347912,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9678049234915997,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2824408342122617,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22018773312291526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9183823965184643,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.676496446248655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06549261790258856,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46978590096653855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0747509735026677,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2081134352478576,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.520005179534662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08292923634089164,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0331312512864215,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30030009017809933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29004802136095487,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07640168191689421,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7867263644045843,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.338869242501222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2849730718095729,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5107139166855011,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3929883759620516,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6441547159397476,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3371612512780213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5476312600785498,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2316381657529762,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5388166118334226,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7975635031432762,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21440728162790795,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4570213323228694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31151928716943267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8080148476491833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21901398234448502,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10039215452153011,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0143785232286482,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5709017489790216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35010349358981774,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013043948201398058,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17306037229447496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9551806231170673,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6940277835210124,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6728886158007016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5649513073576062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.234561706570474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5041234146596677,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08556633282121846,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11598151658634716,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1726184762089058,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4228992953308337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8992852201799589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25458186905238656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6859562034747153,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.0830690235374107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7242008261691134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.223236833911556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3223150906049192,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.311638247745318,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9328252271092329,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4020509786500894,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0345544584169568,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.042490120663852875,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.0944294377268506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39715381583969134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34560114251242063,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9002722792081177,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.688051770994361,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4562537992462383,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1054549065259427,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23234776581405195,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11962985594714738,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28462763816674014,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.561191631934429,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2141182835090423,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11504759495446744,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5661243146884445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1073204341984759,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3402834717069312,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.008715063702156918,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20846016820167798,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1334756850650874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5750652138993488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.964190160486327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1927959545911637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47074392404596377,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31884679599125487,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06236073966008954,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.841266183040059,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1229941698740966,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5595102167430384,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.464297068255226,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0843939139344308,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2212379056235534,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5396544544898303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.971311859331893,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06821051705208868,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.052894745897864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5278786327143732,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9251146520531117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2046459728775458,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4084562922008175,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34805124963439876,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4835937278626347,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9788725781039382,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41503441112430833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7812212161442871,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6313996712278747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32928008019646,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7005745962807322,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.985464500189792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.768108265631603,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.667236001993373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1283096181427682,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08801105098747825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3820865642111104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0181715592303515,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9283504694808533,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6232063628185553,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.364311048117249,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7837761963860281,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4595485133572173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1038845586773138,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05054311300077621,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3194395739124314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9848394784027756,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6049666792269988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6771488289062989,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5284245051446772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.695787110347452,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.171669744577247,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7396774201887542,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.303107664156575,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3336932047301766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4996917280280873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9605262440337272,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5050011019913986,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3629006949711838,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7475683303665909,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15809136114757452,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5490255574137155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45624031938999676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2142306286951379,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5901414734290766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.776858831019412,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5236073126652998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6258908417550364,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1385990098673453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.1959948457797465,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4088612181599401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.103044902053695,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24664724793053586,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4526435480655935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7579912683458472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5191503516183955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3716157772175348,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.791487817603481,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4112562518879664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4951800412813143,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21676292215331408,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4424437297064784,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.75430707372932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7736424582228206,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3143878661119086,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46204315804475443,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1719023472541763,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2517909087286114,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3525221130292633,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25047919377076705,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5905989335640577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16466435211287841,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9723245712252142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26812438050671333,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7141586416618245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5146887009886296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":8.374685128550206,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8850217752470517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21222709711308868,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.52580692847704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.3508487585155207,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.149395093073084,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5742959631441373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.186490240116535,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2751413486389023,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08077275712237753,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7949805424532133,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6439963872140315,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25374988033811463,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4198170060420592,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6926226125657364,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.431434982532448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19904324474424923,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7619508169419854,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28111848062829886,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18058990009026787,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16706689381949563,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2980907416122932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.434050697228985,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.18796531166792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20767865259225862,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18845114409345903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.185715622718694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.195028091074897,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.526581677667347,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4536764220360505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.357405094965401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.283468683991995,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0887086457235926,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2982196985370495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8327359467654762,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5878896238170683,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0289889781920623,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9975986753048143,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3354375834172387,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7923367017213718,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23950970169356986,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30777348385267894,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1939224779517939,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.050347080337552655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1142057505493312,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6849390137970196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9971705514617077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9532829805547609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9842199445177492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.787058257180879,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6148104336126625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.011548796847916818,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6884442387244308,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.636663446388624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0895157157168704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.023001947983706434,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0360196060253164,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Mean","value":"0.01","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Std Dev","value":"1.02","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Skewness","value":"0.05","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Mean","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Std Dev","value":"1.15","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Skewness","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Mean","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Std Dev","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Skewness","value":"2.00","unit":null,"product_type":"TableEntry"}]} \ No newline at end of file diff --git a/gallery/trendify/products/distributions/1.json b/gallery/trendify/products/distributions/1.json deleted file mode 100644 index c463ed2..0000000 --- a/gallery/trendify/products/distributions/1.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.120079468117885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.159985987032749,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28970162006359923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0034896864307150752,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1900485847988933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.018672755004419,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2047305536280604,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5880325330713116,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.079281046802381,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6676007366804675,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9939759581300792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11294378508467533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3979186394856011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0767022830247326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7365778068193176,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.012034891073042793,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4543524095491243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6323820951100011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3706318604789957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0811133279529923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8467644862399857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9368684199573918,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4902085533512968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4805583818656307,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26037219262434985,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1200396833779322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3478681619647558,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9418670472840802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0265899795958824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2374696630649622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.33747068047000894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.045115032540837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2998143816859236,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2127428841692818,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13934858912830114,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4469256450129502,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0881641272924887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0678469920033153,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4028324326678695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7876006986853263,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.433174564058142,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7518775543041794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2151157067829501,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3648755562378347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6958318309196823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3566931878637618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2602391753832248,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0661617310083715,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.04822961666383703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.637336977706114,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.030264249892606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9789741218358532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36560697310593954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.64181870106827,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8021875645020912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7122240977976928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19358823619159055,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2948626990655026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3070914615414242,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8179811547411515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2576160235558744,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1948079879159899,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7982061054207352,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5363805717648256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31994641742955315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.282223469378326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.45672080952143845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2698878956108795,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8202162877901165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18798963994837387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06662775642133793,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3814037976273756,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5015248592785475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1043264638271406,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6572865151350569,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09126943797947167,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8079507311342945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.47663899375574004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.348953265595747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14652809984470458,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1010186543581297,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.44998650233244386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.05128451469646128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2839906675475677,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5890637713021755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6903584377673045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35772465513609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2424448811717872,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0407375459419348,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8389899767701002,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9472352542504863,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2736118685289757,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.30592333305864916,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9282334326005461,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.560249162197477,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.39033797479536825,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7291500043375275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3397597822101166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3330327208625012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7659259921853442,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29579883199199264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005771549198345732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.921115962229323,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18887165964072625,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6320204659342772,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9775572858850219,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.250701442800246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3109964385647264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8060337150449026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8305861381927256,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6300344335811258,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1797732182968404,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1604687067947421,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6713376148467942,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.127447925688627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2577191665198624,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8387441489814336,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8834646789368447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7170230653460998,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.21881139248285061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.28402192691902567,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5809460264108127,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36310956804378575,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0599996372843798,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3979339491519201,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3215901997101438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7455672135836389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38368176337163185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1410937540732708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5144659286544553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5326929816148065,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3320199814407802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1661379555263667,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4519797156361312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4419023620560685,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2490578630628841,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4588191587720996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.901247250245794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24688043714143235,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5213140340402103,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18028199120085173,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9849915417254579,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8077868514206563,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.548824922338457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.008074777938248501,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9925694455444747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20028418232181086,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04532058639791045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.023914343016710516,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3295656348262214,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7708616680391279,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8900510531406677,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.55454299142933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.022295767008040177,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08101984138462057,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4456219751636634,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6972915535171448,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1877827008895279,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9359499814039537,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.179599706115283,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-3.0148890907114687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.342476506909519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6573842031803905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0951530660700033,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4469597345214312,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.304559836048395,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5805893396298237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16218576453273498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.455123300804622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9456680442002712,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.354176138617658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6727315369548842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9837034357629091,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0548704309612524,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18084100219441226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.036817724429752695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1024867899747122,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5681257896880509,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06904144797930274,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7693471776171562,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2716715306374236,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.03608869423612861,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08968940148425145,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04232030654573784,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0271700354609623,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48409976737215155,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2655410809282775,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.04236500834835278,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27437801892767893,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12694889851038205,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8066495297755694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02044184777771792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0141515443247557,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16268187999788028,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0945268773629824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5504968941376533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.077438723613027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5600490475270491,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3240423052931443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8652753385045975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4705760560890417,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6240255246433499,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8707625994164325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7139516527356435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8820731673761063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1197368874778697,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12646355999993317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.00791862853404046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005589806380031188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7345837323854396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.013866377553194144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40605618748538197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9165675743183146,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46085906285269973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.325307497651439,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35178447118844386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17488334979331385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6620519762539686,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7665529033357077,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.662085494664533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7444224015231452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2703875836806389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5849558289572263,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9300989989021692,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.3136383171116317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5134470213092188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9204059481276052,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36908737939600295,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7482732536155505,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2468713454136044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6286157604274308,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.078388210257864,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5164690885534667,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5343692909070064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12402150651252941,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7658556107100224,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38615950449029895,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4377960865204464,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5563254488652966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4513081276332738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9463543810284283,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5408507897747048,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2515998443147637,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1999152010894699,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.24541401762782708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8255050172294163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9205123877685628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5916106781398268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2611112612305004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5045672558590294,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0547694629056505,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004314816104522443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07278358308198973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6791140425942338,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7587245740778051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3094044353406133,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0842306242001005,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8980952788948717,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6033214530476244,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0408416618243255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23641194909915225,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.38582698674434335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.10763065886107376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15498988863449503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42153100222805345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8221440223445606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7257176368113676,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4404916807669748,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6398574508230455,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.36876493055281,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11133454473273004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3090674453957074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.676515480647337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2506509898394622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5172254968272066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7861370350908782,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.249982035585684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5361821059824315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1672835719750936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5148123886586979,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6412984538977557,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13617484561137091,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39235780846412804,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9259983420688154,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4832708421912532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5439769668203354,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.352597830148396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5718671221273617,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3329132625083995,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06271689039924407,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6784422274539493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48601987064015284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.827359898800379,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8074386767592374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5541936909442975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06957090904932622,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-3.2813833583438567,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4861957898964921,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1630803935040512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8515998118998664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4506624452943475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.63602659454857,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3811490889461273,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04710287648311384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2817128862408352,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.116224222209635,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5429962444590284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0958174670130125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5204046733745465,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42872425225921307,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0450371641799996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03921039457537817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9788053984124228,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.18810824886179417,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.607412139543325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0809953885815522,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08780936327109166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0886736312131182,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5307552504342298,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.054115587940878,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5899275481441639,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4763307906966703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0556246097645254,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9840347606444012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1919670774759585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.0659220713532576,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3008816136134185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.452864315792931,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7624306116140845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7901637659854209,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5434322855996321,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5823726466852489,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4651262285374434,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19294028244387665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8569601775158913,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5063840209539817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9562631777935735,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.297264342725389,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5002004016511064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1009078868775015,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6252727568027817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.458308439690674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8119927680599291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9551240177719488,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2570841992020363,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.41180888294082496,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15270278091836512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6324394167843309,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1623839203779998,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1099801203384982,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4560304396532664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9561816921950694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4224432223009463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5279638514270759,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7332751280337431,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.591507311327671,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1088746195965529,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5085313886962973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.018026634665159372,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.5242371252564415,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2904865652446649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5934647705670124,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4586589426195928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5277464567170275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38907194533371586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9844877448209196,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3422647327413064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9236525286157473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5475858491423542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7159607780134586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6666478637707478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5439828605131374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11795009145546044,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.51059495515519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8651688450981543,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7713611304515572,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1077215255604493,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.026305800500636075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5850893902044055,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28007931900538546,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05833776904616565,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2765349236300132,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7625083372463004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42233824118060925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7256871780821674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9528491131074683,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.47759885707519373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0975107976173529,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6035877995705508,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8195622857449858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.267133121394595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8975421909178695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7237481182316082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4370898890267739,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.025583656795796134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.042316336203108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3761626060685435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0199031644966294,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2788872252045969,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.02565120958509866,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06725665349908073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16508182308733643,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7902363769029381,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5382800987129672,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.018724291376097768,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1550748325219284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0625930603995066,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.253626724079992,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5477980609425169,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9589819848431792,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1101737519839858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5667470445461694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.661234261829938,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09792380189054814,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5538877316168808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0336732711544168,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5293280785973582,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3973107163106388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.322942892199383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3465331307137776,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.974894547267515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.564293358237618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3337611121114129,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2464688117317764,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7966366486837649,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5731444283439087,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11602083139703026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.48850900877774134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.542925079119887,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6804273299984738,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.915496280934384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4501368784651871,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0595125325985788,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.025484873893315767,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8551203219409718,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1610704387805943,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5513591136676017,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1622115596002807,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2209756973722459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4211117347465985,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16334900206586403,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4513354396686838,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.382961173137108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.531823614637725,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18156161506646945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.46367326247173507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6002391465664486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02778350147067911,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7594844155064984,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5112297109867523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4282359091253287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4516432254383156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0170615418834925,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8112112130175816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02965726792364337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05283798235935131,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1152572601806823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5132555200566858,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7493109652082396,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9641765051931254,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7886401697032043,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3619001697036042,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35696966051994306,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9822844810047188,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06088647632836013,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.404735419009416,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6177333945742036,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0408551075472197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.030082929396038714,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1391488394389856,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5520842276261322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0216531430336264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36089150727091335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4960775410787598,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3091996194432038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19872495121595024,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6931543100570086,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9506172517795163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42854732858456485,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6943856743721964,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2587030254660136,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.033518308713741944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3230873198548139,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4458728605148163,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7141706604963104,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1542617470911092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.252655779627315,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5315403290198673,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.482672658443414,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.22412533296880394,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9707130385184004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.291676411174275,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5990034333051384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.449150058779108,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.407223370467809,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.04852029589321182,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1255358387998367,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4608631973516684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5903422317361727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5671885628389853,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7720680626097615,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4595309871923077,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7593292093724403,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.06783787565763873,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2348853577830814,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4843442926182957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6914492347434056,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11508090814284092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3689950454149413,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7655882142422425,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6494852345304842,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9561656495627419,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8640274245730996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4027187504517627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7328717881635859,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.06944222725243437,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0361899993139452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19339854596394832,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36967752296453965,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.1855150755911082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0913658422100148,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8057449313259128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9848729406936151,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4045951401496159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.971839037913713,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40134150389519885,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47198853652236206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42010950783684486,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5157935768849239,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1919638784009936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7099156685420454,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3679531806669551,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9884037693524327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.018236396080742193,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.119246876916298,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.45803730294112627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2555375468188832,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.734681941601936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2420017675809067,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14690780115533478,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13716478698820964,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.7440709413654802,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8739597047257628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20036408312066556,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8474326026572228,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6428856774872632,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6579219863593521,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2852534128415536,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9482982273826306,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.42003921873369326,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8274947618946779,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4763960370566322,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.017930281056328132,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1796104047487224,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0674291251101828,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7002444420012063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0015535834511417627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0032746516469175,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5450114099911869,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3177332621350319,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5824580523830187,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9104533650621609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.09674086415459,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4881909110450731,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6415615888192874,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42282678862771805,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7640179907566302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.09970169067222318,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1430427773263194,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0563250369082276,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5941467228928694,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5122046793276166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4079175029008685,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.016418765800888507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4792313083775483,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6793113524704257,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5920769658563574,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18258014302804032,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9803021910393794,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8233996650564449,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40086769828553354,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7190280730382533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9163714811366012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.02123595339356357,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9099784660026032,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9096671915790213,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5029139726090309,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8093719219878586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5963766440861249,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0040986873712234,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7788873310054304,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1151707297889553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3352552237384376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1017815147905954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5582436255758443,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.787982801534208,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3420168971407385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.491228990869596,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25563187704977686,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4074533305141317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4533936991216092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5132876381578448,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.068631653582732,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.100078499433435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8628573512459288,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7473605997088321,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1496216841794817,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7201173311608519,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3288396973130376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1904690744203772,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08425199589152682,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.48811299447029377,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.613366583229375,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3951634801472388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3253845911876447,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3457299685718648,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5528363746804609,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1375605305217664,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4992949943597624,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.365106845244512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1846705543473872,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.35969075609927237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.013410590522385591,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3589999116285216,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5933868818230038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15346795093659085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0858071804725156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.275771920117914,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6780204750184647,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.17892980665912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2943242385595932,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2496896574935525,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4329390743852206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.741411472329618,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2552384960810787,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9845306277503063,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.42001801517368414,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.908690672148016,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7886228228846687,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1951757291097631,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4662418954929661,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9472482064786503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3588704110404999,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10123279874365113,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13705996908047888,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3151033834684547,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6652525027816475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0727770073864908,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7770566029549542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5189626642273492,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0380340497861351,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0541220120151344,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2378414330291523,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8821976020185023,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.366623617723953,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6967293074231011,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5790455827335583,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16193530065912243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0899810176891056,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6000769493035252,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6980057839619073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03549355975064452,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8217448856661159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9722707412020272,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.00024370623030124222,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8919612889961663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24815079436862225,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2178787341887902,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.37747525062151166,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2487443625745425,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38266533954685816,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3519424836818703,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3018860079610746,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5201585498382082,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08539052009426144,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.29247103717306383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4423030176213937,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5733787028707968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6074474131308659,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.14098751587653446,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.1565343106865287,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7643496241835432,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.12219282513492112,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9103886245405898,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5513624934074868,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12642158338474854,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6555208674617585,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39063306703646267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3933683798799051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0767853881752503,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2398086154327708,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.13925821991409268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.12995261408639042,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39834788439711627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4066432486302387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.23180732659990408,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6318558656317058,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4606872554894468,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8158779726296266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8324162092809162,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9656627122542968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.019318694389191954,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.858393638081219,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5182109062782936,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.9579761174476438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.990561620730773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26628210741492475,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2531228942237007,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4773011501673387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.16375635412947695,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8030859960551628,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2863027210376663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2544536479884214,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4040182084272506,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2880428463183139,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07580298390935572,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0880150931587325,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9930743581494273,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1532288183411281,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15306464039587026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9962380880197754,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.812139539409371,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.551599915097931,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.36976074425493943,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5985679755619102,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7721556890021154,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6257970975397479,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2780327316116353,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.5778689697530894,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.11789816226537808,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9571071403710549,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6613517197930473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.16448551037599626,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0756617429496291,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.005486256604913148,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1043673146291944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.585979523058966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1841868136486051,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4728668739570045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4889331542898436,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15036412412547762,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004901909632703497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3176118849905203,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.06824976296593,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.00268113065134,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.354441328575494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8459234641781747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5947049887537025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3672296871172831,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9081288825924052,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3145335930120641,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1401957248943833,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.091089007148666,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6186243969394665,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2892037891006973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.38871468166050255,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9045590364470386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20007405754193092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.24452635305818696,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8575259199081902,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":3.440146165727759,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5638336905369729,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.068313063619539,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.5142106518423373,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.528284604426438,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4825750726495847,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7674016705028001,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0336967934346366,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0721764921568844,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6647167348472456,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.39630837967337607,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.1818515375649512,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4963333521752161,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15616856367969226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8704698691944566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8188569781156769,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20997087465331926,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3430569982858351,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6782435281618302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2432804983828974,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2213758526039246,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.49570059954221,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.099555519066164,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5916340086614763,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.369851614113232,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4625812717356492,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9090423115660747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0449846166859569,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07862388966934215,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6273511208234813,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.39939341784949356,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.40429771463942027,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4859420460503231,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7011817483262185,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8565944266909761,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.810911740526412,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.586122161256551,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5158681913403454,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1916764114235145,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.008571804062078433,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7312338660886553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.07878683455077012,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15005711045372092,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.47271490404122773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5551217420532342,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1691149547433595,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6346489272121553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.214838776787388,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.13542804413215837,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.4433240340906241,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4186167343122511,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.017060684783566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4866510291636102,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.44948532930324264,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.0905211717862961,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9643188508936933,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.846591382754655,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.17884439730996424,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09117297247621824,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.31946755880807165,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0107226723105125,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5866621240269869,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35852220535676566,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.05619577804362177,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.3043057305866065,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.004682598487849613,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1006025645585846,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2659945936430435,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0249103793032923,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7791332376219957,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5208182681998651,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7311541846743996,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20728575140449843,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.175663379861912,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.40079349518159463,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9657259180395652,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9496582378219126,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0954871066543201,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.29853168397631386,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.32883776273511944,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27161862047632374,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43269965965584206,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.27976452266361673,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5691803172563004,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8900559695129806,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8690531741809179,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.991188100354075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2677657543239636,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23285352167725046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6012502974163327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.15736199144147645,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4458460554251733,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.8006298091214348,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4509760437990202,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.17645677484194838,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9863506629385365,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.112913799294046,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7303868984335494,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8160132950024266,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5999484518480799,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7106336225664025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9560457288889112,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07038973203215682,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.023386054721209935,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1976664955145064,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3180065569991337,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.795753901817945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.28119739709331826,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0082406013857588,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.08698220206221385,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.7131638661904867,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.1246886233913653,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7720185741926784,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.07531589680754586,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9067460877892843,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.014132970378786955,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.05557111818566905,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.094328601778773,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.03199616768286542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.3613864354210303,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.15631443779220514,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6048337046741532,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7585822461626507,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.2920627017968735,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8580308459144302,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.027508286813845807,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8733374585211251,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25318108024579267,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9057309078930382,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.122493677691716,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.21687368309147026,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.19994191561430968,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1156254625031845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6173314092991128,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.9714979661939074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.33742697816681966,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.837270067651247,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8549060461574629,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7189841679707029,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.054133883558465025,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5875355442752473,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7024202087784504,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.35001460780416693,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1629841644122711,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.6516271766434345,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9700558777345409,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23719060836581335,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.30437347721363384,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0475639568872428,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.2590873771140658,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2829431606075383,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6081380053310699,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.4980286621656975,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.20401556974571533,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.11753047277664061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.460067837472457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.5970068102588324,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.9064460063647226,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.2139300136255495,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6407247444381553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5435841291688327,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.4319000175809085,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.2352235899451045,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4009753503912674,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1515157792303268,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8073639219949376,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.31941604713499,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.011763658945339634,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.3031212020285095,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.8711598502355442,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4415838590357515,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5923709500447328,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5405918855121625,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.36915485486893845,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.044015579707663,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6806117204198509,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3946082701676755,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.433262444452237,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2809348020024917,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6167465613631599,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9174522326605945,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.303659385515075,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.1444260437891627,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31359855494172284,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.827965738933697,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.20886068183675074,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0181395024808035,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5495564114623008,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5935901772565061,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8489516282968159,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5279518090396038,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.6774548626709525,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23221524735082727,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8964618626496531,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1769654804012317,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3981957372533457,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":2.0329719766569094,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.10932408069482973,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5182779244227104,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.5394091643630073,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.14560822446265928,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.7601992626966761,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.26455350958709684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.31366136498901626,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.8767478300204156,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.2789195485080071,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1134735109843938,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.09097338872593252,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.6652262963210892,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.23935148444342416,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.0586352857790926,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.42195233545498,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8155891120290197,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-2.086909558916387,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.3983669373101553,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5806672777640535,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.3984180358930243,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2911785795328379,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.6837133466153538,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.8013897466712078,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.072647785485368,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3194622894375136,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3915583987997542,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.7620711660153798,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.46642466566448143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.0915012498858347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.5817623554143544,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1716470904805458,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.1143501716778823,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.722773428273033,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.43928617700371747,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.2374420498059453,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-1.4313169302171123,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.08368198582838003,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.21690197185414684,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":1.612272645712347,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.18470206519952198,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":-0.25392855313111606,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.3252872767237143,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":{"title_fig":"Distribution Comparison","title_legend":null,"title_ax":"Multiple Distributions","label_x":"Value","label_y":"Count","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null},"value":0.9532228638552497,"style":{"color":"blue","label":"Normal","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5005305206808699,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7802524243155107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.436890954026386,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5883020242262882,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8683687528764215,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19080315723660002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2997828382779457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9305471774862126,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6070149980387867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7725735105306315,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02223298126381268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.875167806516373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6731500016752787,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1522945467444266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.39133601599792023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9715441392358639,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7967157668428584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1674895165025427,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0277223638338304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16707794040150015,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09956051828819179,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6819525300318103,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5368797357403956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.161429277450119,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27652594955659904,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.787135313219541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5515293813228235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9282794105954073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2444796798543538,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16426502008085464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16205344349330453,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3885451082372104,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5758404841896594,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0271794158465704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9957732824637282,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.597917194011154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8468649591295971,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.806422636840542,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1312152163768707,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1153766162783465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0922907021256152,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8939848358643934,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2421517007907683,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6473483589277502,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.332947633650122,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07646767665779564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02008399640616121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32002146732788317,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5948027765949906,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6430401799540877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1863593952997662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8829090682228165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2601655732850525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8014714490175625,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5179641874170926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8908612651688421,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1526471497429656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6783659861273255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3354899767180082,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6882232148181013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6294933647937979,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8978456031989381,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.44252451220249,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9512607411619451,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06288379451712167,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00912137405211011,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.870028774218786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5537571073658132,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6652734957944912,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49270858947562646,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19131023297198135,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2866667270161165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3599166715575457,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2805655679415087,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7577120452561261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5799523251630707,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6453045585373305,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06991787979724995,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7022918636585125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.259630667759696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.42414476384769,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9845149255503665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4001092745323915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25070248400855366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7187210211563229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.013307077919324062,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6452121901765198,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6335424938999981,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5873252161540332,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24583867748311716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3459529084268316,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1944213400160959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7921230574649911,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.118132675382956,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1049106227722802,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3680089899634704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7761428781818203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0401685106940315,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7916261484939513,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.383299648117032,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7486475516757127,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9664553826937876,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10727954924637295,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9072267987890146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.80579867951151,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4674508582850554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5344348108780452,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.727291295685959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8953693264882414,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8376849886593094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5288035380058975,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.469535116585885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5424251830814164,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3028105130337604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8518909254062885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.258590151976973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.687784475322371,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.121747540439268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9198410034323339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.06168421811984,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0759743160922963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2190718006573942,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9953285524289632,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39511787454318714,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3762978681623488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.63027015856186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0015054084236720833,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23442679977503111,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.16416562237197319,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1265455711107575,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0970374143702468,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07963208276146183,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0291889707987658,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.894792317974213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09775044858599058,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0123584409838973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13030230238503027,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.366671446453235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2956354192353454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4685400993170785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06834530668476768,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0088119820750467,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.05318960954914731,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1638397428947607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4783369916622715,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8245904325935465,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2824722363785859,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03584930962528743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48652057849140373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2693212176359183,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5647342846982681,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3996423399676514,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.905927784165676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7419796160963759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.990147319275367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.509225141311334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0556753770028622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.100074952631001,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5718901133670231,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2673174969645955,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8032328963998872,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9639529745188598,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.954435787689612,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.256494065172856,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.595736359603141,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4934609914484662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6227910763872981,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8265552976013852,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14705197242084367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0495227439471866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22332839397108106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.342027296406941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9226712518051055,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0948614151987659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6539044122558781,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7735723800773346,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4288134889733959,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09840856366403017,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8039291884498097,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4122063114666603,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1080764488492898,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.00973818189860598,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08029114650351588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31283035422062033,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6238182091693676,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3593914576503923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9267083938481848,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2183368039693567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9766517749635817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1182669607878006,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.46913195076540326,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7246986200513343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8580166702061147,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9209994126164656,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47101118078999127,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9157769105910618,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22361430169369045,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4265342572456001,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9059453643212159,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03852390548758278,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7890787962459713,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5194193766588828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9466485355102279,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9941634414710303,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0012894436976252,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0983946468033339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4081041016590117,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5240465841807187,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.718925226495541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7389520603230331,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1089789058234896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9243988513403125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1950043706222377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5177399534864522,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8710221542824486,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8153572103588766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4794540691776938,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.879523816788649,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.527288623831899,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.896620654706791,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13249450034025534,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.994142865156125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2685030456105766,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9033258095437184,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7614314580340884,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8130659990903073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6571503754534893,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3100063096129806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.946376078817353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8663112654816647,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4662570388895153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0189336322433862,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2051929111138584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17192959973324662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.374467539109073,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.38761499712753134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.413640960355885,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3620338057157189,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9970998229389938,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.731579361758965,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.43904257899249455,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9118193741135538,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.382469195731086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4807525710829013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.815425069576087,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.009070082850347383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3364062690858565,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7400394957507879,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9678178829009454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.171454189962637,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9681495946781844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9290647331774826,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21292600962848063,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6490352232802645,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6450322803367086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2141014372946155,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4809245623985947,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9635464675425496,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14559021376720915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9491038373825726,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5344615929610539,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08007933907115472,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7082515994308567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9936993305222828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9551558576819255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6218752984317173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2407310435480192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2552520304740735,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0514744126254838,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.682056947827776,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3801410154943294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9753078627396583,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016381951673174466,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0949333298293173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9614076927556443,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5707095618096476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7641921230296118,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2021645763850644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.323051479642952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2465916717904975,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3773963294135476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3469589440949408,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2928973881405446,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9863859793818848,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.080405064477711,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9918305453949698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4303003734323307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0477519996555023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19971638575424455,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14439147017544052,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.561067385763828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2129575822833845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26198969166530306,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4884035419364312,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7534589457644456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5091720891743905,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9951884020113035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1280315064164181,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9558998089475339,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3007006648782133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.51228169206012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2500914166360277,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4095862868009217,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5049135898550285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6645579546758795,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.479331456383738,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8763702013481627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6521505692949936,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.844625206186858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5086711543954214,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9571326963725895,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5190306985919229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7469850967574492,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6590336649719069,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.986715865967787,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5274998818603098,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6868733432638692,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.885756877147815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13713671215255818,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.12321879262932267,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1524451902163264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7324860269039704,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6457330677972783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8529722075552773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.567789096036138,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.780804871236748,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.028193496333486223,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9934931464387682,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6738068992219501,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3280417649292242,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7349485396966116,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8759131024565394,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3014560634695447,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.953968815432392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0312409971198555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1267058294129146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6790709061879778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8535432690445144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1641231237554761,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03683129034546173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3105037719192083,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8423988853608431,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2399625305622646,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4801347353623489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.77416491147393,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3999587197206398,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.941453346557727,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08335227764062259,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8214378319647837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9349171336138782,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.44175421919909486,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9080086207602176,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08354840561484123,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.896908204454069,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1331391905542896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6251526907735285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5703119008165154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8854421027020489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5466578504865534,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7958886371230163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.853636633215293,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06514112023375551,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9242199362385812,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.900119216904915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7518824200452743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2049195125028338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6312010095935237,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9969832395169473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0894174335445617,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7496619654381274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6544770004318914,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.32940777883745564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9944180157083937,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4173800972963106,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1123299245738143,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9958226558028702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6228035888802133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.879560528741003,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0316934446036643,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9500315750144206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.594924408956413,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3755073215223517,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36307998153870313,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6576383323229131,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48965490625666863,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19726663428656366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40572531542228596,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0230783897528966,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6647567531077136,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.046796746895458874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5977442570187148,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7181012669726847,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1175790295298982,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6300733811568846,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45423298019144953,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6092638964307708,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9906959873653469,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0502558107713922,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2248433156266385,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9849182244766834,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2031990479021877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1683113924551218,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.006887438369902,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.711647449497192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.010706769250545367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.765587291957258,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7723140594695779,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2862882840378025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3053791297732622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4510809011144614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2643260114740933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.293775533863207,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.462954899026244,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.048239183362008,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.476831128751412,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.005324109255188336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29597171232393604,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9243907641022018,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.518905783215343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8238308282212579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.304300186405865,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9657100541265793,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10053319780701608,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4462375922681399,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.557087619859999,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7641210255177824,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.435335567910713,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2651976481446878,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9749414423605458,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1572628630905357,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4738899362471596,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4199655930209416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.814160286674674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0438668068537997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2056125035329082,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.416111851792511,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1154410309996177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5423802327227163,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4912535848489585,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4333378824181158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2804632683447328,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8648314747275321,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5250091064657529,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45299831003654933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07294643652630262,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9127580187254658,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4230358311439808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9689716136386988,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6766838143234923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25342211211997334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.34545973348938475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4170501677300753,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14767204072422624,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23653372677943896,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2735134144124238,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.48776343067025874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.801155011538945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8036243196980806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8524382516003972,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1593952571782449,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2482691837574107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8473626122200089,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.391647709884261,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5410451759608144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3585134866838509,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.385952927420386,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.124433650152144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3718024747041473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6906760247298291,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.584963279437702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.116244424362316,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6994395230796475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7707626171030353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1910335403179837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3061193762911851,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8108788026915974,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.011653133268309634,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.604209414134929,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33906957555604533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1721332373003728,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4133519078638241,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3603022632640842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3107823824648586,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2222625515000178,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.111396109119085,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2961522600075024,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4193527394346002,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5809289810551554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0464020422430726,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8644285441302526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1606644453047719,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2855174814686121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3542732345562025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5750485499050333,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5749969835060336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5730943695025204,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5233817540740007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.587697855845858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8061556878201843,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0327194045392627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.265160331560336,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5124764725418829,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7011479576119828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6187438970890926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.018078566159532627,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1432281498103158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5575314630855988,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6872205894389571,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4324149837479943,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1310330287074533,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.429710370359833,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.580622612177193,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3501085644552915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.034407966817095126,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4135600368580121,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5225232419909691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.26381009766073404,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4934529735475373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4202692822285021,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6535487569971057,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6031371045265139,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2730217490389837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19965175227150578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4167078183741051,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0305921072838915,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7054395703218383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4031145045290434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.988674154278438,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5261722001064881,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.170136228346307,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3706030272071743,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4024541202864698,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4336996585609652,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1279118958671845,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8807245654805165,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1466509810180052,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0585508233777952,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.857299079822874,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.911953438245252,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4570568529664953,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9461524448631558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.916136620342579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.922146989474657,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.592524339811459,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.401217965787842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3047983493547286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8859100557054522,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11846841367198158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13179722513162817,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4346494377881176,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.36567092853867056,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7879588577804064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5113659002646314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5409550294361112,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05679665398493805,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4517184461719643,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9828061304771674,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4307183930499128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2824045509122173,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0748456056884659,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05933552373117923,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08374655605891013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8080607802633941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2711521528982095,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9180539092382785,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5894709663042481,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6307735387927917,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6592593658891328,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8439794384523585,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.157764621883842,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2599841100973102,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.953923349331895,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3070770735174535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0051813350228556,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05179524586147588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1142962288180644,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3665504127522401,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2077091933961768,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07045369916268251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9639155081756012,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.03562486106065288,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4216173802050305,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8987364763450669,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.910907759469541,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5204779223504739,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7401587176806919,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.23495505750024,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8835213465373166,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.349793261835444,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3804223432335685,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2122465477181628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.500741087305454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26685845755831084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.4832378531168744,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18138297766740008,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15966352335842338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.07453799322855,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8459146643663096,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18024268759468454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9234856303313554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4870728446969794,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7650263471394134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7438543387542276,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7621209529323334,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6071818101053101,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6699796629212247,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.45052986275839046,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2874309880752808,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1528872281696314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7868228988722943,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3149802110245177,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5708689599600696,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.435895512593559,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6175474221106962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.222331029958867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3775471263923764,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2875023439014903,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9345900511100527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9915366947769542,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9022438774645853,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10404484742907094,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8203861511835324,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6386712152931286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9500471978987948,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5211937720229267,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5094184758116298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3318778466838146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9568100028676358,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5092186575928133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1536739616214153,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21184150723233053,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9944849562515525,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1083699965828546,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.029868106355119828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5783944953467843,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7260457900356054,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8258773801504122,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8689230372197567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7679076435323786,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8944769819038445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21524558553048445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3704814452092116,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4301268498931798,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7252487674324475,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15589304068448362,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1433052641898298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4104960664465702,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.699790288721688,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8849709278871929,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6242483196947908,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8120204460142313,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3483567388073139,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4216473847365148,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0049689563853144,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3864990788972924,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.603594645304545,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.029529515978712784,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8547540424734188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8593873772009402,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8444210158226628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2021646677739133,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9978500422232064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7904062170183526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2755509064820942,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7763573615790089,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1944408827919193,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6720043223378003,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3248529366354473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8047164195405028,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7901844004950616,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7859642957010013,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3128069196054084,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7064699441748745,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25576734911345866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3198376579727178,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7035346133790732,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0219454319115564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2526912851824448,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9381722398560699,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5182801460059263,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2772970045629202,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6947954973229997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9224338133622489,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9568359053559203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0524785072368563,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.2549540482328445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9238628510799067,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.373506534802059,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4634523641212773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3028906360516128,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5849563257181578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.542553335316764,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9218646573056919,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1926170575002488,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.998129040486294,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.13731533687434672,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7806225912985494,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8722472945743323,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3652595760442483,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6309445859750036,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2718552209993086,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6757151471086664,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6114671183084872,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6827433030048091,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9001874431138108,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1056795172894298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4867461263404578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.246168652315506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.245390985414021,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0268407425927997,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1381704341171717,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.41698857614842977,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.07038621701262837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.0869511129655467,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.287081756575434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7052882709429662,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3410698905206035,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7531266610811773,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6502035049359272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.34343833277754454,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3916480900959476,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9478002788622759,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1406575254469553,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.24843017187688377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9490884985336763,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.329630296202685,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5141014355982692,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06979721272034434,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0933189547969584,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.330254185186445,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.21262423306321665,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8057112974205456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1303014292246383,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.781790621234197,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6592461160747987,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9476533200574622,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8686130021513736,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.101252510396999,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5956205436808304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9594643268926824,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6363151880545734,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9214064971735167,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8749473228231994,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8229621901821322,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1910216150149595,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5515717709235366,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6950130608979888,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8199061708794355,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8683802032933419,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9789428162362146,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9713573530350779,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2972036162791154,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9937801991240272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1224287022054718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9387645769408568,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.744566993160185,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2788986305659416,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9650732444528023,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8268088347340607,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6289255646449203,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9422946571571242,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.724136215655311,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4514793099745558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9325396465202194,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4703874367962473,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.928559231308006,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9701600740294558,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9461568569390235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9539807825840834,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0879572841139491,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9048522174946063,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8957336641327207,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.770905452654917,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0174838714907706,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.156233447359031,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.163799173359945,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3869595174793825,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.457204589831246,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8636024425944933,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8402427635227778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5916556585788149,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7668121082166626,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6067727324655712,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5649893103923862,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6704073596681535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3647042819101913,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6440325208683353,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14024168678031135,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6881844150311904,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0455576582065285,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.220663769399716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3070600111807571,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5566463048094903,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.08506463192062297,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1409791443561188,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2093427312049614,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2123118009012428,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.43758692448804926,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4023330272404433,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2904941822946667,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4713672737440562,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18814366501713575,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8996992956916983,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.040414982135203115,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3033213210649168,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8161876344129864,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.684937677032527,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.913116280427007,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6094736724738716,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9340523588969973,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5059507255124407,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8044037480236343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0317485439892886,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5104179136055107,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14035719786866618,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.058207302109536,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6876338633327168,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.35973414155398364,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.940783335026941,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9507683711890866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3605221976202939,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9719968467975888,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.668552287518378,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9735503301785564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15653509226041828,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33349675276851487,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3142033687621377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28707184967480304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.169664077918791,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5820815151685506,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0660332599473041,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.38349011936752,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8900795607195229,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8113014741230491,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.70440174446225,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0417622930236718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8851037912004718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0148944461386606,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3014093137719436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2780531974743239,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7281223671492452,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7152403101150213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8952240081229554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8324919886138678,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5550158022425844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0246216262240044,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6100424183093809,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1175713006745358,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9358208824714858,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.413813422912567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.873864966398338,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.261508252970526,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.710279884663418,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5692160988189348,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5163375205276775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8014264969406266,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5495106396899754,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9666068275733775,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7797791465458763,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4262623216576844,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4332116526105554,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5774511231830011,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5938533410080806,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.780231879114369,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9572802550589898,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3813039916997578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1726732146166436,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.795236444792097,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8889831281581078,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9735477170939251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3309829031344815,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.6045080826684854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3149005603099209,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9045345584104978,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10164666832338876,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3272661028999373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.963929821511091,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.23202473394663814,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3404897929135111,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9270844500955255,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7908008264824047,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8618722806367232,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4146026275310564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1904488500433774,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.9390860392732274,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.164509413448421,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.307320619721367,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4387454873082932,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1544744026773186,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7218100690641158,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6107031258410691,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.479243551325951,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8217513272785251,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0010266121145638962,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03363440298776954,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5164893061025535,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.05516633865508869,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.879476565934628,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.14857264686905847,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.216585452925576,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40921160050759564,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5726736902182816,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7244025988691192,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2651312462325746,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6806209362358064,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2487935786859854,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3140714267878275,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8246982471335231,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3667916142988408,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.191149613019162,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0849205328436025,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3656847581846092,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9382654696968653,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12505091567105397,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8892202805491447,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0311698797283109,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8922780949052767,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1183381856063206,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5067235975834392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.19480472998981435,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.695740847727345,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7195065189760723,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1533214450036402,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.018364534989666392,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.345596283053795,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4083047817540866,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.841184288578042,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2061253398576812,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6226084285828617,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06604583313802337,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.184491229072718,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5633893377082781,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.1830610783570079,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0948547563960882,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.615912504286117,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3957351065739751,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9703975370552134,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2777854105208837,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.192907111118343,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7723483011649304,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.33246577833180346,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6041600537034495,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4567237240246125,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.7422722250865794,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.42339589050934645,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5760106263330784,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9280621611820816,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7717138903239809,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8489147653421778,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.273795933151555,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.7534256267729567,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.9294185059043372,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.961076063977246,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4922862863577109,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6437659471913855,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5023839621805783,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.822239017590706,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38328328242149867,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.0811307278672464,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.85376444380605,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7528158095830189,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7626963184450979,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8699421884448579,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.335268398213438,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.18765052053898268,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.06336939743515924,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.841889696231954,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8520354959128373,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.8211319583962169,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3595617187093487,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.10305703998626159,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.6778394427254701,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3123543076180666,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8794412087259991,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5679025411297456,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6531026448699588,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5925368290254536,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.544050579763213,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.11513083904278298,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.44968615721171235,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.3911126934238376,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.5604822971780963,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4320940684242314,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.5526083703709688,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.656281227543594,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21363557518140608,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.3950710230086578,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6460061083002286,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.45749414893457363,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.8713515096858755,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.1917969261109724,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02658925779930721,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.70892367837877,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-0.22910455051698264,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5925586839517272,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.4803109259055263,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":-1.2864635447835577,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4322277203131377,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22762459949779545,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4597898113187524,"style":{"color":"red","label":"Uniform","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11846055966560222,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.553067717415143,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.325057369945132,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3271845875254943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5517395059244675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.135737531667159,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.913055291569789,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3411139530835107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0088929873342891,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20936234413742552,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2441976904778245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7055617820550392,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30375521453962556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2238600223481004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6302995363336303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0509042711545074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2241069508988154,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9962236679923606,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29246991454862964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30230864302098204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1214678329546772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.085426235962982,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0011657177705666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8127036577108309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5798728299704768,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22246371122866027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.044945343030718,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23470266716699625,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.669437029466509,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8320064512242517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8154660500883505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36172681946652835,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42650391908797397,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1192364398820662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04916983266296474,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7931679657600245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.580170079737609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23748382364207965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.587069145716041,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.21170430397077,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7858579594623722,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.14638291094629,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7986733368137635,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7369868559268332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.864057115314912,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4375854032903731,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.777241827874442,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7029494504449303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5159371101199254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4459088757861251,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05038671425624168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19386680910665605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2129609757360464,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.994332274820168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2024671470776779,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2034008399307845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8529350786361327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6721800684054685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8731911549078033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0244678471963766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44625752317739537,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0651975505904536,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0217864502598002,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7515002932475525,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8093603874230602,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1626184757659805,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3657816550784343,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0463334539496782,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04448646557959563,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1921878808248951,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.985275484388694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.021035093128925604,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2264029274327212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.005730701667583,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.780858120180202,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4213427023868087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28836125805965407,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7919581018205194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5536009641695817,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26889144540903676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7036903131323047,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.007264135852503334,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.020851368374943956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4998792034588487,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7767433671117371,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24351308988768647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2465618881637448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.921539302168309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8269356356739825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4379216525560032,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19333305037073834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21666711995662769,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5975442621822278,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17320902202964575,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.325417899568286,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2735619223015644,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6365237215624919,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.20547207363141,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4028406843761314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4951392074504497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21487027059034072,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.409644295887401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1861284520768027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2262344860832253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.916476462052884,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.431121724762615,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5359959919987772,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0726584077644048,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.7416964379764375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7167277787562317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7096069813222426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3583934825506088,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23020961805828674,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35997625752875684,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6249328308700663,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.850940276065546,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1527144956980851,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2000771466097777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2504826806834093,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17876082745648575,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4140950710802611,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.01863401257401761,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.468002693948565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2941040039826803,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.153675133162446,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48232928508169376,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5376580738907947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9843718999141908,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2772919238443562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20654760706584993,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5334622741647582,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3398294485304827,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13503989923117826,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2621594395895173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5027640693248883,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8162918134659094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6718632638495792,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33274703473423484,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8218886871444949,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09279492150871675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2833442849930947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3652962954271757,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.7860582979394866,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.58126838360917,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8054363453419358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1252767599697648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5601573099122321,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04321049224053563,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3984545026275404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6112287480163356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2642866835941187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.193763622803479,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7659050759568411,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.293544583452774,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7899695553043667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8307997388118914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3527016758879007,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5316250452462403,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.261362458082432,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.433877491923016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.640726884384163,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0466726592567008,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7545759739059128,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3551472963215212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6389205788284029,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.750409767093094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7142866522304083,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09828364290883669,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8498803109930242,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3133721014879489,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5596617205548751,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.205402205316074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03212751611506012,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0571282928596212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1228982978328275,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5243295848109297,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8123089391938332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2987430928626963,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6124895107959805,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1127236569839583,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28687663598234553,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6081825154263196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.685118144295189,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18183134617994118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5615807749558664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3595613430094815,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43410637044291017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07000569843264694,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.034300365925151,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3819232790028391,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13264713487740118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4960526764908628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4557342027539955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18048867166545107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31519919989484724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.003573522832880523,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.011314380159558848,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7399573418293413,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8014721563874652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.858378260094558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0249151977422852,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13674380955835386,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10010874145182609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1829219834183988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5997935458416044,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7829362460448849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7977414870495718,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6912715923819808,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4246719321557224,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27715868946843275,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8576267382879335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8126048196376691,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4906334857609094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":5.448524476397013,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21001438864649166,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7898884196121432,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9859743490277492,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4169654461811014,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03247258031231176,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05784441372486837,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8134275989777783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9736244140536878,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5038789313154258,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21417924244143816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8266166779353648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08357831806246235,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7369289396333952,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3450025775423462,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.412122059278836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11078458733543074,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5604814071277824,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.586120832296678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7885463474161865,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1698667577205207,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14409382048906316,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7017629004837238,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.881162181424919,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0188292420738685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10247704161674925,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.350470464365567,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4749594564965844,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.293202849679374,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6412244036537015,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3261888010456506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8807614046155497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14073206845008351,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8586192277329836,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1934733476245136,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.130516594073523,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.020457549281819663,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9974900160634362,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36160396785736126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7351973894562622,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04711534143316889,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5934872058341092,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0359862441814656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0697384439193711,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4519597434963178,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4396326592285624,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19117542138404156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36270509760247244,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04205709175448742,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4918375359794123,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.665050102643809,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5353610134412775,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8569106121585043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.33289872925605846,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9831591029797998,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04060790703769585,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32485887098961785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43071907342686366,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1302941692045065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1540472107020558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5513199110902325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.288121725528557,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30794348793610404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.343906261693231,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3464485312851056,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0933612220216148,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8839432547127788,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0732587180296793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2878030731862418,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6431070444778317,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6085623042031129,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1758648216365504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9835583288720666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.02194084474927314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7546164749736064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7093521875342026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.2355835637726442,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1313148608529107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1074356108579764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0957748482457381,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6358081782328283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.22178886263586076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.573182982641168,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3404513854892863,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9660901884464816,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.575081760792263,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4198146224130769,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30551573981189567,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.198422258587068,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3092081994065496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3649708774517149,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.506574481572325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3290658936065155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.417335367526793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.017420281665727903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.034207591209094265,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7704543511317645,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2507564276505359,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0822141616835022,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8751686884485073,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43698524068096545,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.259433236972221,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8150352607529985,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18656290814118653,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0709757808327787,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20209616817231912,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.667987358851078,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7678034702026385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15366008514597623,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06680377074548993,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7272173590020033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4599297744993778,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6644696910262252,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2764824381732711,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40590033511177376,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9708101955167758,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49972571607257255,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24291794894969082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.478159130837245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.196516068369026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.007834095720431,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7130240431656554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10059030796711319,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2217800031505703,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4081362711694825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2407107434463243,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6183888921291006,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.025248166643097748,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40094625353811086,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.164534973663651,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07226383558361135,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.166716896246845,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0867860167298986,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.062762976575499,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8327114913981126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46966559602220675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3429613145887043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0474749988542116,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2747495725521103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18004894790363937,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9083481501891443,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0810986237456548,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9862985988550579,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8593250187213236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5633725582147097,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07504037017811574,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43823047666866144,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10480863973956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3457341443441987,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1208704950474102,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.023054559473575445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4886895704455559,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.297105175184915,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.74354846394726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20229074961869217,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08554981850559461,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7848734726930674,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18686469762447225,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32236191029985445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7873487744834506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0710429470710328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7166622574337488,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21389968677480897,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07983885253519495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.491813572403467,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0363553728170344,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26679521776292187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5413817531801832,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.43252927369590033,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9162155152622314,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18641174917673212,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2909050036118375,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35268941613363874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5542898100546922,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1074063350740204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4730844166239914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6733472880871463,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7571455523644631,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7541837983156532,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8646173456849617,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8612147790451943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24703376730821644,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8260140868805081,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1094075601557134,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1067306636592874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.101834531665978,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6478108936593892,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40437488019716283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.596286181432551,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6725960900068984,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18100853156790256,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8825185072493347,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.0602447818668956,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7036300875838217,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7488895967569342,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.358829581433742,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.142070536767825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7333879412625688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14320006471832203,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35780234766316027,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08711725103688678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09098930592076658,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30263236235916485,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8853194901463874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.663879831706248,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8999596489637121,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8725728149429528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3121509313788095,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7340054556807236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.755828683191183,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1758202522166554,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5453794506226337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8437082361177453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.7564511981578126,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8547328340026973,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7042408831154398,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.664948120018378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5333181795804615,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11231818630886851,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5270408310011236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17198538330377305,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9039714656236453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.061786268464328595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.942797018452606,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.445866284010363,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14243030478088067,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30614957092350814,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7497583223986111,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5503232328045048,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5299638170712305,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5758577475995503,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1418274332317402,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.373533875689113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.507409724854512,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3873642420979568,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06006407868129783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.123545449078399,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.94986505876807,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2538840193733813,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1997186864635727,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3682974199146056,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13843330045121943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8538199647999162,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.049060690670848506,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6626253112281405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.73443436983612,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9788060201863963,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10862838072374495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1920955803059115,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7377014243096662,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49765877649621065,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4705000365604336,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41050517396256186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4863725157955194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0173909949956437,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3486417880604636,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.204253929978614,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.024598719487491327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04614323839553581,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6993079677873528,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6857809570649378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9116585037315268,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2362847083510453,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23161341648790829,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.074164036257824,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.571510941750655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4276640219401849,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.019503197716538,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7032549598752562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4811112861350246,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4008470429204274,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38797840701754566,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8387532067238144,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1824945291906707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31228140895494416,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3383308867339825,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9591889701723016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1019146695877584,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.402223039473388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26797953150963016,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.001408435913018,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5634242425449418,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5186698184277142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14761744570812757,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.185211778112676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6625552521129159,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.324222656375915,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27049283303654387,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.060198247304314605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.228256715676076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2209836077187934,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4148321837269533,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2468685695867219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9781418044858752,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8705306961910045,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12324771200059034,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.34801038893987496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.193279055478952,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1214906867253445,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0578128774071367,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.022177232529952202,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30778219706076193,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6674113650471292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3837228389911416,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3676710300030996,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3253094721837125,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.532786134120087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.822951693956755,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4326742669507164,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9111394606423153,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2717508124070245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1301866513886399,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.492720163442015,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0755919496964261,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9277230001242187,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3444998643552295,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.327300918933204,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4003877826649736,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8680890027531932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2247303189618752,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14884888380881908,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.399492635921614,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6434144285403647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.95920186387113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1329667799897598,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.087178622529297,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0509355143429433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":7.5227805028819414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1839063382533537,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7784146576922616,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4701032081269223,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3000958464282368,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1235465787097714,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8135237066547822,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6097418263043504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9942181817152069,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5836910502188497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6591099059487726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7283062975962785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2559077865374526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47446852290961783,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3380233407133404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4483602290944075,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38645026231176527,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0881799728886531,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1256717672619923,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9960790488164777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4386516277936383,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4823761111103595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2633538097221309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23685053109221219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9179713280639186,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1441751345460613,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.481633885784747,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.098998670816481,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3587228143375385,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24049558433740165,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24313519144155132,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5945761863208415,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.345002624159807,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.1883198488810605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6057640909851199,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.693324026240088,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.625965706812524,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0597886149100135,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6635070761057933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.8927318834002165,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5563000805006864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.571863845938277,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7090590147225668,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.005409013468047531,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7455600277573675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1248378709022309,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24203683121315764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8430649937515565,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16518670456211507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14280182582958545,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3633433960270029,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4661274349655862,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0946322931587652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.49655831546122,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.643861906312357,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04110928042383067,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2792678165320218,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11266537127638093,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7769054808339515,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0087365247517233,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7490537699454451,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4206857737608811,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6569037519451107,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0188992644677766,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15630119860708708,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2313930717439213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.746308375801584,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.4052030714777746,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6211384052464394,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5865784312808396,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.563834682079928,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16245212657848904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6537987062422167,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6480010246714303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4317893676114828,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.157778559179781,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7400575611743965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.532877615634495,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3701027649516277,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3279922423450172,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.718199430014179,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.44914553100259064,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6246839440453833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8357297850116692,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.26104888295536594,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.103015225088236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7059667669807738,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.415331704604871,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9810257059314262,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17627961580852627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9481596098234097,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1201509477894642,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.410923301292435,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11285802660067744,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8539310259558118,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3396879121556448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28244723564770713,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21104057223374137,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4205706469360577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.654185885432966,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1409663024744496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.81076332664931,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1181032393310141,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.028722514613751,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3314019587876358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6508320130597678,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7007814546266062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2853784100501142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.372573611639786,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.32685303034977026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08178126435215947,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8555954362518425,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6090068658640213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.830823257379473,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4960787207846831,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9614154600112785,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42419759502124355,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2370096335019938,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5952548678767098,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20247749222337405,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3366953582443026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7065822387513243,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8400612529166293,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35073634767108874,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.332316925804183,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5900576908699158,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1613818946204628,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7722318133180289,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6553694535550043,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47530670533130304,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8169682049899933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0016061568141640594,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3937144907325734,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1947590742137566,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2222422197737777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25158715747558597,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08469482029801113,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46895427269565426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3885610847893558,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1287196652879355,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8982199861967726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3871352605065996,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5785551336487667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28201367514794595,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14984598037051905,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6397880261647448,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7206867143267307,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2446426757656346,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08707040044024401,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9678964666696855,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.482625259744522,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4914129372886933,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6321808189837526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7548580921894968,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3481734582826472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.049229257846370944,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11357830523862253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7694323804955128,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.018654308922523608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29628374957942366,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.939863115575371,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8805458589162773,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.39241848289728104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7911914951844743,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.236510046718904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36948943024104564,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2659506768683023,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.28770569440889765,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2444738253401688,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.29134681491682396,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14243372114240593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5089153495312433,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6117154234543174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7215649947141005,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.46081493876949337,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04643928022262657,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.08924862828504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8351206476419869,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9293887096441596,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15740346114957382,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3439592738900192,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.016581896667221156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.7086532958083103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21728949656303675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6227698447543975,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11377276530494562,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.33476353637679,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.089012315237359,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3886133846009103,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05856246588659504,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5127795967846356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6429333842914393,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4686677434110647,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6046929141594505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7855079307144712,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36727654341094373,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.628228612226497,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6463350889854935,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16602203873567026,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.262442076772764,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5486292396514806,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4810460578584361,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.306748842844712,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.311031001779749,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11205433215264152,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3626405556317014,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2073301181327781,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.046203274506617,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.335994319484451,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5381627113887901,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.25005060959500697,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.36346586998766955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.050223015312149163,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23197989892798423,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1558103576405254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14210093349000325,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4630324457855505,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7455207164224174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8712017421631573,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.8923712828543957,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9539170318881793,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7589078618026283,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0791827662580145,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8815673081971988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8410155932633946,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5468183009320873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.40295573226518466,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0486849142161123,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8379455345013538,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9723866223020472,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.163354348476521,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21603295955129556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2911935979108486,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.24028042571743094,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5285314731659955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6528273274205076,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.27934758428585404,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0036083466554306,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5575446786189833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3338052208062932,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7220225621058806,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9723433861019556,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.014501992109875654,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5085904923838267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3779538748983897,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1017989750917032,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8912193561446885,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2173553111005087,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6296676312381626,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2508683582769185,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.385737548624332,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3071580692411003,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4749903535599675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8669991243397142,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18186106331857924,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6766179292953707,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3476310794606421,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8433415303069117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.54471737337419,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3494071532966872,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1319534100830055,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8283708483990213,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6415765637657864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2147946645628194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4090284347108004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.298349426203194,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10406666319845426,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.47170248545775634,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.2035396409532138,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9778920951925842,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.87976023826328,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31524428080421507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.079543370794517,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.474160416177627,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3100686578733645,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.791889335083955,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3746536046451833,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9860622585214236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7388534769841988,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5039834568989034,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.00621416538882835,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.718433422348181,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.030066672979688104,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2397119002233639,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5082647583319008,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.10131198989475106,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6721249605484125,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2782868649421589,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9054111762753675,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.170669165525596,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9048479943331964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.49078883300457327,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2293422585004798,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.23020128387004082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.41781022563821296,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7522252456554782,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17151533027997676,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5029701018121235,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3122711453321913,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0784538190131896,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2102454317284157,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.150333080328699,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1036544631623828,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6089242797828653,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08183378081306664,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0579271507664496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6109885924048137,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.13333079502357648,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4289395028087864,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.642676591047974,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6522492033963525,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3273590349482267,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11711191475848151,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1637093255298085,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12442404091823292,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2549542565186946,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2488364975891544,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.076204044994322,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.9069707259236117,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.07300779494952167,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04552282438124896,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06612099243947236,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1894603563404496,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21644484862582036,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5757610113791378,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1197476111556637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.098841074512353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1630394469830353,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.9673395486616667,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35510872140439886,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3923478830619608,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.015562131750914,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.640807061543329,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5365226669197869,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8672496588051524,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.035583780026566356,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3395429086350706,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7988949699959834,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.3190965165083965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7331514402868031,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.462004434323655,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.31299413726587605,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5852575138570004,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8595066407393578,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.007581461302178318,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7855684678552122,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17372954674204155,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.16413004870748898,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.09310408345128098,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.3997072825311303,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6993557212738042,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.38952050035903685,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5414943816573388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.010552796993276943,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.016215579538471,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9973620570953519,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.04174238179708121,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8846119597624609,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.35347675482699253,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.0703623023226145,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.606635540962245,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2435560580309262,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1940643419315822,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2598554520787706,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5462993193261723,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.42574020611861857,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.925548872434387,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1066086920027198,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.4611663370837844,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9972365001865997,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7264953160072872,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.025076879509320964,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.076764378427889,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.03573499311027965,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9518575361198082,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.06571692149971642,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7880854957467726,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1223604310015116,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05657245949310657,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4235612212286637,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.015866688236484062,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0035954287887696,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.21599434331138673,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.144217393006954,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.297673810705411,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6847819079701196,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5823131577270174,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.742093291475086,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2550193147972115,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.48818879173877666,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18790018423879024,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18621660298589604,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.5257062824994962,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08365931504034221,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.1304522992248436,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.050034641700904,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7206919091736873,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.387565476311656,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.08066895678195786,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7347145776201216,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.2764864559622473,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3935670660140724,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.3601867013770482,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.1332508610290652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.17100312190535602,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.9655398599726224,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6098202373289698,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5260298664881953,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4860660053240859,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.05340119273459527,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12025294536135231,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9259299335237096,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.037713294012339,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4477743977422203,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.12240508085921381,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6683364719200464,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5587088555762902,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2814844072001326,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7495187529967078,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8567974879989069,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0528260732039636,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20154072994679456,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.1647090407671388,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.14256651811850593,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.604979535024729,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.7076015111012526,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.20153221362633875,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.8433378745295652,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.4387225908120926,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.15491306978992037,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.32687926175414,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6325227248011185,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.11530833234432201,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6895184258112335,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.2036195496010687,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.18007188785955028,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.30714533886416967,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2734088794176704,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.4912800543028577,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.6691103764133173,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9082893503123503,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7425064061580254,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.560185542731286,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.6289469730967534,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6431822339765507,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":2.1778646891235156,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.5313472613429219,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.6873754602919802,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.2770287622143895,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.9205067458611358,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.37465867250603085,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.039847409109662044,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.464129257681991,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":3.5471565279327573,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.8795859212219777,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.0566866632443508,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.19657937666905903,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":0.7107879490730017,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":4.3275280702291345,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","comparison"],"metadata":{},"format2d":null,"value":1.5654607412333341,"style":{"color":"green","label":"Exponential","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.3,"linewidth":2.0,"bins":30},"product_type":"HistogramEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Mean","value":"0.01","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Std Dev","value":"1.02","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Skewness","value":"0.05","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Mean","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Std Dev","value":"1.15","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Skewness","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Mean","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Std Dev","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Skewness","value":"2.00","unit":null,"product_type":"TableEntry"}]} \ No newline at end of file diff --git a/gallery/trendify/products/distributions/index_map.csv b/gallery/trendify/products/distributions/index_map.csv deleted file mode 100644 index 2931929..0000000 --- a/gallery/trendify/products/distributions/index_map.csv +++ /dev/null @@ -1,2 +0,0 @@ -0,/Users/talbotknighton/Documents/trendify/gallery/data -1,/Users/talbotknighton/Documents/trendify/gallery/data \ No newline at end of file diff --git a/gallery/trendify/products/sine/0.json b/gallery/trendify/products/sine/0.json deleted file mode 100644 index f742259..0000000 --- a/gallery/trendify/products/sine/0.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["waves","sine"],"metadata":{},"format2d":{"title_fig":"Sine Wave with Reference Lines","title_legend":null,"title_ax":"Sine Function with Noise","label_x":"X (radians)","label_y":"Amplitude","lim_x_min":0.0,"lim_x_max":12.566370614359172,"lim_y_min":-1.5,"lim_y_max":1.5},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.31101401989878247,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.12693303650867852,"y":0.19662634670078044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25386607301735703,"y":0.16579343664936122,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3807991095260356,"y":0.4912874030054647,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5077321460347141,"y":0.5078501179389856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6346651825433925,"y":0.455605299982659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.9634452706259446,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8885312555607496,"y":0.7651320563197016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0154642920694281,"y":0.8444147845790152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1423973285781066,"y":1.0424275008359243,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.269330365086785,"y":1.1706073818262945,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3962634015954636,"y":1.043554209046191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5231964381041423,"y":0.8815684528182128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0054205585545821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7770625111214993,"y":0.8214656919502666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9039955476301778,"y":0.9127253003558163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0309285841388562,"y":0.6417960341998221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1578616206475347,"y":0.8231744368534222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.284794657156213,"y":0.9094468413502367,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4117276936648917,"y":0.5623000777816156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.53866073017357,"y":0.5477079688520998,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6655937666822487,"y":0.42406451126101324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.792526803190927,"y":0.4865546107248502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.9194598396996057,"y":-0.062474326881451187,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.0463928762082846,"y":0.21106042948072878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.173325912716963,"y":0.0659401806342442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.3002589492256416,"y":-0.21324798599834138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.42719198573432,"y":-0.01368250472906557,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.5541250222429985,"y":-0.6403808540104703,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.681058058751677,"y":-0.49060190939718756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.8079910952603555,"y":-0.650393671690363,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.934924131769034,"y":-0.6467964399349565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.0618571682777125,"y":-0.7560685458164452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.188790204786391,"y":-0.8302622855835785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.3157232412950695,"y":-0.8934146285161475,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.442656277803748,"y":-0.8021759668063204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.569589314312426,"y":-1.0018857478941992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.9276439753380689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.823455387329783,"y":-1.0105288492377318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.950388423838462,"y":-1.203249899464866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.07732146034714,"y":-0.8773579448441444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.204254496855819,"y":-1.0088910540395217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.331187533364497,"y":-0.861042613870199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.458120569873176,"y":-0.8300450127523358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.585053606381854,"y":-0.5846239933323968,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.711986642890533,"y":-0.6034140776515509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.838919679399211,"y":-0.4329473352746105,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.96585271590789,"y":-0.3464048100739737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.092785752416569,"y":-0.1784029704500264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.219718788925247,"y":0.045881122910358924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.346651825433926,"y":0.13457239621515632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.473584861942604,"y":-0.028285035562862382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.600517898451283,"y":0.5179492703141138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.727450934959961,"y":0.3749246788829893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.85438397146864,"y":0.5669470142384587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.981317007977318,"y":0.6053326011474458,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.108250044485997,"y":0.7136661368199083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.235183080994675,"y":0.8657606032130032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.362116117503354,"y":0.8757416744820442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.489049154012032,"y":0.9024443942055034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.615982190520711,"y":0.8039767594769907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.742915227029389,"y":1.0629189869374291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.869848263538068,"y":1.0537317302088676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.996781300046746,"y":1.1699072287084762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.123714336555425,"y":1.0019952623694757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.250647373064103,"y":0.8544195127112719,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.377580409572783,"y":0.8192493166922726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.50451344608146,"y":0.7024082875211547,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.631446482590139,"y":0.874595608385068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.758379519098817,"y":0.5946510268508172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.885312555607497,"y":0.538849766779713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.012245592116175,"y":0.45898522781251916,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.139178628624853,"y":0.3268354394404017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.266111665133531,"y":0.31914680684939867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.39304470164221,"y":-0.1638878190914306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.519977738150889,"y":-0.05258070498948251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.646910774659567,"y":-0.1608415180467461,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.773843811168245,"y":-0.38107720812866247,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.900776847676925,"y":-0.5705902123301341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.027709884185603,"y":-0.5377478182595387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.15464292069428,"y":-0.5893032167963366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.28157595720296,"y":-0.9356287311542602,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.408508993711639,"y":-0.8997630169459584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.535442030220317,"y":-0.7394356052134933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.662375066728995,"y":-0.8944085037600161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.8105165791758487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.916241139746353,"y":-1.0008719431729236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.04317417625503,"y":-0.8966316839919483,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.170107212763709,"y":-0.7983694250776813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.297040249272388,"y":-1.0051432707983692,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.423973285781067,"y":-1.0036765474381344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.550906322289745,"y":-0.9097492913412056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.677839358798423,"y":-0.8074403128754499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.804772395307102,"y":-0.7990752107393686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.93170543181578,"y":-0.5713810512751168,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.058638468324459,"y":-0.47264204009168626,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.185571504833138,"y":-0.5685854625898611,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.312504541341816,"y":-0.11569127795658435,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.439437577850494,"y":-0.18497121498951463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.566370614359172,"y":-0.062161640389785396,"marker":null,"product_type":"Point2D"}],"pen":{"color":"blue","size":2.0,"alpha":1.0,"zorder":0.0,"label":"Noisy Sine"},"product_type":"Trace2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Upper Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":-1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Lower Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.12693303650867852,"y":0.19662634670078044,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.5077321460347141,"y":0.5078501179389856,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.9634452706259446,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.269330365086785,"y":1.1706073818262945,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0054205585545821,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.9039955476301778,"y":0.9127253003558163,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.284794657156213,"y":0.9094468413502367,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.792526803190927,"y":0.4865546107248502,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":3.0463928762082846,"y":0.21106042948072878,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":3.42719198573432,"y":-0.01368250472906557,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":3.681058058751677,"y":-0.49060190939718756,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":3.934924131769034,"y":-0.6467964399349565,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":4.442656277803748,"y":-0.8021759668063204,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.9276439753380689,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":5.07732146034714,"y":-0.8773579448441444,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":5.585053606381854,"y":-0.5846239933323968,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":6.346651825433926,"y":0.13457239621515632,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":6.600517898451283,"y":0.5179492703141138,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.489049154012032,"y":0.9024443942055034,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.742915227029389,"y":1.0629189869374291,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.996781300046746,"y":1.1699072287084762,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":8.631446482590139,"y":0.874595608385068,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":9.519977738150889,"y":-0.05258070498948251,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.027709884185603,"y":-0.5377478182595387,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.535442030220317,"y":-0.7394356052134933,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.8105165791758487,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":11.170107212763709,"y":-0.7983694250776813,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":12.058638468324459,"y":-0.47264204009168626,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":12.312504541341816,"y":-0.11569127795658435,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"}]} \ No newline at end of file diff --git a/gallery/trendify/products/sine/1.json b/gallery/trendify/products/sine/1.json deleted file mode 100644 index fd428b4..0000000 --- a/gallery/trendify/products/sine/1.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["waves","sine"],"metadata":{},"format2d":{"title_fig":"Sine Wave with Reference Lines","title_legend":null,"title_ax":"Sine Function with Noise","label_x":"X (radians)","label_y":"Amplitude","lim_x_min":0.0,"lim_x_max":12.566370614359172,"lim_y_min":-1.5,"lim_y_max":1.5},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.10026939953215828,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.12693303650867852,"y":-0.16092098352812628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25386607301735703,"y":0.3276852605327678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3807991095260356,"y":0.30567338551023343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5077321460347141,"y":0.49900135630636205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6346651825433925,"y":0.534972699256308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.7961469718892045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8885312555607496,"y":0.740830522750966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0154642920694281,"y":0.8894979096105764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1423973285781066,"y":0.7819338702462854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.269330365086785,"y":1.0089392489477815,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3962634015954636,"y":1.035769168693198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5231964381041423,"y":0.8285870133681512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0913390506149405,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7770625111214993,"y":1.0510246915043298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9039955476301778,"y":0.9050181205954253,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0309285841388562,"y":0.8802176991903781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1578616206475347,"y":0.7803849703349443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.284794657156213,"y":0.5567452002222999,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4117276936648917,"y":0.5525082657406788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.53866073017357,"y":0.6291262651082701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6655937666822487,"y":0.43336711375698433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.792526803190927,"y":0.1890448678199384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.9194598396996057,"y":0.27028648092559937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.0463928762082846,"y":0.1654331990578402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.173325912716963,"y":-0.005783255424274457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.3002589492256416,"y":-0.1752011493351814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.42719198573432,"y":-0.2284446672575539,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.5541250222429985,"y":-0.39525691147080677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.681058058751677,"y":-0.632335190049382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.8079910952603555,"y":-0.6903269513213697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.934924131769034,"y":-0.7159200291723884,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.0618571682777125,"y":-0.7793021207475179,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.188790204786391,"y":-0.8179547856809217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.3157232412950695,"y":-0.8906627973871658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.442656277803748,"y":-0.95976139046228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.569589314312426,"y":-0.9868383705032965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.8894881061822846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.823455387329783,"y":-1.2232601985061606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.950388423838462,"y":-1.103417767805032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.07732146034714,"y":-0.7840743297451092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.204254496855819,"y":-0.6971318741701817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.331187533364497,"y":-0.7218156391663821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.458120569873176,"y":-0.7274989739447338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.585053606381854,"y":-0.795078849705095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.711986642890533,"y":-0.5552973521240004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.838919679399211,"y":-0.4611551847649299,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.96585271590789,"y":-0.22744511270300138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.092785752416569,"y":-0.15520841436870086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.219718788925247,"y":0.12876355802768394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.346651825433926,"y":0.187950045204541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.473584861942604,"y":0.19958764583500013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.600517898451283,"y":0.2187544318884767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.727450934959961,"y":0.33844637460643134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.85438397146864,"y":0.5027823572577393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.981317007977318,"y":0.633731750190512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.108250044485997,"y":0.6000860197284025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.235183080994675,"y":0.7704673884809164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.362116117503354,"y":0.932770345441603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.489049154012032,"y":0.9199678229388483,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.615982190520711,"y":0.9264318342392917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.742915227029389,"y":0.8397540263545904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.869848263538068,"y":1.0947456163774127,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.996781300046746,"y":0.9081800629591213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.123714336555425,"y":1.1123781744074777,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.250647373064103,"y":0.9991260799457424,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.377580409572783,"y":0.9722952271246664,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.50451344608146,"y":0.8218024190001034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.631446482590139,"y":0.8100795877709401,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.758379519098817,"y":0.5185353773731596,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.885312555607497,"y":0.5066771974834824,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.012245592116175,"y":0.32084744719483005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.139178628624853,"y":0.214577780345088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.266111665133531,"y":0.29500663380836734,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.39304470164221,"y":0.17410425199764418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.519977738150889,"y":-0.1373838392379228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.646910774659567,"y":-0.2566608567754442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.773843811168245,"y":-0.1794361001181416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.900776847676925,"y":-0.508419595721873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.027709884185603,"y":-0.7932685652015635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.15464292069428,"y":-0.6105879353301285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.28157595720296,"y":-0.9485940834176981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.408508993711639,"y":-0.8042173219068625,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.535442030220317,"y":-0.8470955358535776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.662375066728995,"y":-0.852710295154024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.6900281246487727,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.916241139746353,"y":-0.8879508586465501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.04317417625503,"y":-0.9249685279910077,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.170107212763709,"y":-1.1754603382709985,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.297040249272388,"y":-1.0211940292996469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.423973285781067,"y":-0.9075381572957095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.550906322289745,"y":-0.829881239884507,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.677839358798423,"y":-0.8708365116057788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.804772395307102,"y":-0.7524488728777099,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.93170543181578,"y":-0.5003062213331707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.058638468324459,"y":-0.5107912840101354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.185571504833138,"y":-0.44872936468837155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.312504541341816,"y":-0.2805021859286123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.439437577850494,"y":-0.03870652164850846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.566370614359172,"y":0.019142567500961546,"marker":null,"product_type":"Point2D"}],"pen":{"color":"blue","size":2.0,"alpha":1.0,"zorder":0.0,"label":"Noisy Sine"},"product_type":"Trace2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Upper Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":-1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Lower Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.25386607301735703,"y":0.3276852605327678,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.7961469718892045,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.0154642920694281,"y":0.8894979096105764,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.3962634015954636,"y":1.035769168693198,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0913390506149405,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.53866073017357,"y":0.6291262651082701,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.9194598396996057,"y":0.27028648092559937,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.8894881061822846,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":5.204254496855819,"y":-0.6971318741701817,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":6.981317007977318,"y":0.633731750190512,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.362116117503354,"y":0.932770345441603,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.615982190520711,"y":0.9264318342392917,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.869848263538068,"y":1.0947456163774127,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":8.123714336555425,"y":1.1123781744074777,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":9.266111665133531,"y":0.29500663380836734,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":9.773843811168245,"y":-0.1794361001181416,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.15464292069428,"y":-0.6105879353301285,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.408508993711639,"y":-0.8042173219068625,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.6900281246487727,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":11.550906322289745,"y":-0.829881239884507,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":11.93170543181578,"y":-0.5003062213331707,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"}]} \ No newline at end of file diff --git a/gallery/trendify/products/sine/index_map.csv b/gallery/trendify/products/sine/index_map.csv deleted file mode 100644 index 2931929..0000000 --- a/gallery/trendify/products/sine/index_map.csv +++ /dev/null @@ -1,2 +0,0 @@ -0,/Users/talbotknighton/Documents/trendify/gallery/data -1,/Users/talbotknighton/Documents/trendify/gallery/data \ No newline at end of file diff --git a/gallery/trendify/products/statistics/0.json b/gallery/trendify/products/statistics/0.json deleted file mode 100644 index 634b98d..0000000 --- a/gallery/trendify/products/statistics/0.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Mean","value":"0.01","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Std Dev","value":"1.02","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Skewness","value":"0.05","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Mean","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Std Dev","value":"1.15","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Skewness","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Mean","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Std Dev","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Skewness","value":"2.00","unit":null,"product_type":"TableEntry"}]} \ No newline at end of file diff --git a/gallery/trendify/products/statistics/1.json b/gallery/trendify/products/statistics/1.json deleted file mode 100644 index 634b98d..0000000 --- a/gallery/trendify/products/statistics/1.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Mean","value":"0.01","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Std Dev","value":"1.02","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Normal","col":"Skewness","value":"0.05","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Mean","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Std Dev","value":"1.15","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Uniform","col":"Skewness","value":"0.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Mean","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Std Dev","value":"1.00","unit":null,"product_type":"TableEntry"},{"tags":["distributions","statistics"],"metadata":{},"row":"Exponential","col":"Skewness","value":"2.00","unit":null,"product_type":"TableEntry"}]} \ No newline at end of file diff --git a/gallery/trendify/products/statistics/index_map.csv b/gallery/trendify/products/statistics/index_map.csv deleted file mode 100644 index 2931929..0000000 --- a/gallery/trendify/products/statistics/index_map.csv +++ /dev/null @@ -1,2 +0,0 @@ -0,/Users/talbotknighton/Documents/trendify/gallery/data -1,/Users/talbotknighton/Documents/trendify/gallery/data \ No newline at end of file diff --git a/gallery/trendify/products/statistics/reserving_index.lock b/gallery/trendify/products/statistics/reserving_index.lock deleted file mode 100644 index e69de29..0000000 diff --git a/gallery/trendify/products/waves/0.json b/gallery/trendify/products/waves/0.json deleted file mode 100644 index f742259..0000000 --- a/gallery/trendify/products/waves/0.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["waves","sine"],"metadata":{},"format2d":{"title_fig":"Sine Wave with Reference Lines","title_legend":null,"title_ax":"Sine Function with Noise","label_x":"X (radians)","label_y":"Amplitude","lim_x_min":0.0,"lim_x_max":12.566370614359172,"lim_y_min":-1.5,"lim_y_max":1.5},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.31101401989878247,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.12693303650867852,"y":0.19662634670078044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25386607301735703,"y":0.16579343664936122,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3807991095260356,"y":0.4912874030054647,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5077321460347141,"y":0.5078501179389856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6346651825433925,"y":0.455605299982659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.9634452706259446,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8885312555607496,"y":0.7651320563197016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0154642920694281,"y":0.8444147845790152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1423973285781066,"y":1.0424275008359243,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.269330365086785,"y":1.1706073818262945,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3962634015954636,"y":1.043554209046191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5231964381041423,"y":0.8815684528182128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0054205585545821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7770625111214993,"y":0.8214656919502666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9039955476301778,"y":0.9127253003558163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0309285841388562,"y":0.6417960341998221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1578616206475347,"y":0.8231744368534222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.284794657156213,"y":0.9094468413502367,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4117276936648917,"y":0.5623000777816156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.53866073017357,"y":0.5477079688520998,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6655937666822487,"y":0.42406451126101324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.792526803190927,"y":0.4865546107248502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.9194598396996057,"y":-0.062474326881451187,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.0463928762082846,"y":0.21106042948072878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.173325912716963,"y":0.0659401806342442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.3002589492256416,"y":-0.21324798599834138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.42719198573432,"y":-0.01368250472906557,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.5541250222429985,"y":-0.6403808540104703,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.681058058751677,"y":-0.49060190939718756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.8079910952603555,"y":-0.650393671690363,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.934924131769034,"y":-0.6467964399349565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.0618571682777125,"y":-0.7560685458164452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.188790204786391,"y":-0.8302622855835785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.3157232412950695,"y":-0.8934146285161475,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.442656277803748,"y":-0.8021759668063204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.569589314312426,"y":-1.0018857478941992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.9276439753380689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.823455387329783,"y":-1.0105288492377318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.950388423838462,"y":-1.203249899464866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.07732146034714,"y":-0.8773579448441444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.204254496855819,"y":-1.0088910540395217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.331187533364497,"y":-0.861042613870199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.458120569873176,"y":-0.8300450127523358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.585053606381854,"y":-0.5846239933323968,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.711986642890533,"y":-0.6034140776515509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.838919679399211,"y":-0.4329473352746105,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.96585271590789,"y":-0.3464048100739737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.092785752416569,"y":-0.1784029704500264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.219718788925247,"y":0.045881122910358924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.346651825433926,"y":0.13457239621515632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.473584861942604,"y":-0.028285035562862382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.600517898451283,"y":0.5179492703141138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.727450934959961,"y":0.3749246788829893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.85438397146864,"y":0.5669470142384587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.981317007977318,"y":0.6053326011474458,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.108250044485997,"y":0.7136661368199083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.235183080994675,"y":0.8657606032130032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.362116117503354,"y":0.8757416744820442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.489049154012032,"y":0.9024443942055034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.615982190520711,"y":0.8039767594769907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.742915227029389,"y":1.0629189869374291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.869848263538068,"y":1.0537317302088676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.996781300046746,"y":1.1699072287084762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.123714336555425,"y":1.0019952623694757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.250647373064103,"y":0.8544195127112719,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.377580409572783,"y":0.8192493166922726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.50451344608146,"y":0.7024082875211547,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.631446482590139,"y":0.874595608385068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.758379519098817,"y":0.5946510268508172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.885312555607497,"y":0.538849766779713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.012245592116175,"y":0.45898522781251916,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.139178628624853,"y":0.3268354394404017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.266111665133531,"y":0.31914680684939867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.39304470164221,"y":-0.1638878190914306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.519977738150889,"y":-0.05258070498948251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.646910774659567,"y":-0.1608415180467461,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.773843811168245,"y":-0.38107720812866247,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.900776847676925,"y":-0.5705902123301341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.027709884185603,"y":-0.5377478182595387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.15464292069428,"y":-0.5893032167963366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.28157595720296,"y":-0.9356287311542602,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.408508993711639,"y":-0.8997630169459584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.535442030220317,"y":-0.7394356052134933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.662375066728995,"y":-0.8944085037600161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.8105165791758487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.916241139746353,"y":-1.0008719431729236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.04317417625503,"y":-0.8966316839919483,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.170107212763709,"y":-0.7983694250776813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.297040249272388,"y":-1.0051432707983692,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.423973285781067,"y":-1.0036765474381344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.550906322289745,"y":-0.9097492913412056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.677839358798423,"y":-0.8074403128754499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.804772395307102,"y":-0.7990752107393686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.93170543181578,"y":-0.5713810512751168,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.058638468324459,"y":-0.47264204009168626,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.185571504833138,"y":-0.5685854625898611,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.312504541341816,"y":-0.11569127795658435,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.439437577850494,"y":-0.18497121498951463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.566370614359172,"y":-0.062161640389785396,"marker":null,"product_type":"Point2D"}],"pen":{"color":"blue","size":2.0,"alpha":1.0,"zorder":0.0,"label":"Noisy Sine"},"product_type":"Trace2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Upper Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":-1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Lower Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.12693303650867852,"y":0.19662634670078044,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.5077321460347141,"y":0.5078501179389856,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.9634452706259446,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.269330365086785,"y":1.1706073818262945,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0054205585545821,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.9039955476301778,"y":0.9127253003558163,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.284794657156213,"y":0.9094468413502367,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.792526803190927,"y":0.4865546107248502,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":3.0463928762082846,"y":0.21106042948072878,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":3.42719198573432,"y":-0.01368250472906557,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":3.681058058751677,"y":-0.49060190939718756,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":3.934924131769034,"y":-0.6467964399349565,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":4.442656277803748,"y":-0.8021759668063204,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.9276439753380689,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":5.07732146034714,"y":-0.8773579448441444,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":5.585053606381854,"y":-0.5846239933323968,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":6.346651825433926,"y":0.13457239621515632,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":6.600517898451283,"y":0.5179492703141138,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.489049154012032,"y":0.9024443942055034,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.742915227029389,"y":1.0629189869374291,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.996781300046746,"y":1.1699072287084762,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":8.631446482590139,"y":0.874595608385068,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":9.519977738150889,"y":-0.05258070498948251,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.027709884185603,"y":-0.5377478182595387,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.535442030220317,"y":-0.7394356052134933,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.8105165791758487,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":11.170107212763709,"y":-0.7983694250776813,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":12.058638468324459,"y":-0.47264204009168626,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":12.312504541341816,"y":-0.11569127795658435,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"}]} \ No newline at end of file diff --git a/gallery/trendify/products/waves/1.json b/gallery/trendify/products/waves/1.json deleted file mode 100644 index fd428b4..0000000 --- a/gallery/trendify/products/waves/1.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":["waves","sine"],"metadata":{},"format2d":{"title_fig":"Sine Wave with Reference Lines","title_legend":null,"title_ax":"Sine Function with Noise","label_x":"X (radians)","label_y":"Amplitude","lim_x_min":0.0,"lim_x_max":12.566370614359172,"lim_y_min":-1.5,"lim_y_max":1.5},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.10026939953215828,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.12693303650867852,"y":-0.16092098352812628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25386607301735703,"y":0.3276852605327678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3807991095260356,"y":0.30567338551023343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5077321460347141,"y":0.49900135630636205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6346651825433925,"y":0.534972699256308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.7961469718892045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8885312555607496,"y":0.740830522750966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0154642920694281,"y":0.8894979096105764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1423973285781066,"y":0.7819338702462854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.269330365086785,"y":1.0089392489477815,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3962634015954636,"y":1.035769168693198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5231964381041423,"y":0.8285870133681512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0913390506149405,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7770625111214993,"y":1.0510246915043298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9039955476301778,"y":0.9050181205954253,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0309285841388562,"y":0.8802176991903781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1578616206475347,"y":0.7803849703349443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.284794657156213,"y":0.5567452002222999,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4117276936648917,"y":0.5525082657406788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.53866073017357,"y":0.6291262651082701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6655937666822487,"y":0.43336711375698433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.792526803190927,"y":0.1890448678199384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.9194598396996057,"y":0.27028648092559937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.0463928762082846,"y":0.1654331990578402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.173325912716963,"y":-0.005783255424274457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.3002589492256416,"y":-0.1752011493351814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.42719198573432,"y":-0.2284446672575539,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.5541250222429985,"y":-0.39525691147080677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.681058058751677,"y":-0.632335190049382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.8079910952603555,"y":-0.6903269513213697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":3.934924131769034,"y":-0.7159200291723884,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.0618571682777125,"y":-0.7793021207475179,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.188790204786391,"y":-0.8179547856809217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.3157232412950695,"y":-0.8906627973871658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.442656277803748,"y":-0.95976139046228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.569589314312426,"y":-0.9868383705032965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.8894881061822846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.823455387329783,"y":-1.2232601985061606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":4.950388423838462,"y":-1.103417767805032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.07732146034714,"y":-0.7840743297451092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.204254496855819,"y":-0.6971318741701817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.331187533364497,"y":-0.7218156391663821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.458120569873176,"y":-0.7274989739447338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.585053606381854,"y":-0.795078849705095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.711986642890533,"y":-0.5552973521240004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.838919679399211,"y":-0.4611551847649299,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":5.96585271590789,"y":-0.22744511270300138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.092785752416569,"y":-0.15520841436870086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.219718788925247,"y":0.12876355802768394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.346651825433926,"y":0.187950045204541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.473584861942604,"y":0.19958764583500013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.600517898451283,"y":0.2187544318884767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.727450934959961,"y":0.33844637460643134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.85438397146864,"y":0.5027823572577393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":6.981317007977318,"y":0.633731750190512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.108250044485997,"y":0.6000860197284025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.235183080994675,"y":0.7704673884809164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.362116117503354,"y":0.932770345441603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.489049154012032,"y":0.9199678229388483,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.615982190520711,"y":0.9264318342392917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.742915227029389,"y":0.8397540263545904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.869848263538068,"y":1.0947456163774127,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":7.996781300046746,"y":0.9081800629591213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.123714336555425,"y":1.1123781744074777,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.250647373064103,"y":0.9991260799457424,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.377580409572783,"y":0.9722952271246664,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.50451344608146,"y":0.8218024190001034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.631446482590139,"y":0.8100795877709401,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.758379519098817,"y":0.5185353773731596,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":8.885312555607497,"y":0.5066771974834824,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.012245592116175,"y":0.32084744719483005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.139178628624853,"y":0.214577780345088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.266111665133531,"y":0.29500663380836734,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.39304470164221,"y":0.17410425199764418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.519977738150889,"y":-0.1373838392379228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.646910774659567,"y":-0.2566608567754442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.773843811168245,"y":-0.1794361001181416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":9.900776847676925,"y":-0.508419595721873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.027709884185603,"y":-0.7932685652015635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.15464292069428,"y":-0.6105879353301285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.28157595720296,"y":-0.9485940834176981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.408508993711639,"y":-0.8042173219068625,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.535442030220317,"y":-0.8470955358535776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.662375066728995,"y":-0.852710295154024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.6900281246487727,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":10.916241139746353,"y":-0.8879508586465501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.04317417625503,"y":-0.9249685279910077,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.170107212763709,"y":-1.1754603382709985,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.297040249272388,"y":-1.0211940292996469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.423973285781067,"y":-0.9075381572957095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.550906322289745,"y":-0.829881239884507,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.677839358798423,"y":-0.8708365116057788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.804772395307102,"y":-0.7524488728777099,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":11.93170543181578,"y":-0.5003062213331707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.058638468324459,"y":-0.5107912840101354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.185571504833138,"y":-0.44872936468837155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.312504541341816,"y":-0.2805021859286123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.439437577850494,"y":-0.03870652164850846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":12.566370614359172,"y":0.019142567500961546,"marker":null,"product_type":"Point2D"}],"pen":{"color":"blue","size":2.0,"alpha":1.0,"zorder":0.0,"label":"Noisy Sine"},"product_type":"Trace2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Upper Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"value":-1.0,"orientation":"horizontal","pen":{"color":"red","size":1.5,"alpha":1.0,"zorder":0.0,"label":"Lower Bound"},"product_type":"AxLine"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.25386607301735703,"y":0.3276852605327678,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":0.7615982190520711,"y":0.7961469718892045,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.0154642920694281,"y":0.8894979096105764,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.3962634015954636,"y":1.035769168693198,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":1.6501294746128208,"y":1.0913390506149405,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.53866073017357,"y":0.6291262651082701,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":2.9194598396996057,"y":0.27028648092559937,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":4.696522350821105,"y":-0.8894881061822846,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":5.204254496855819,"y":-0.6971318741701817,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":6.981317007977318,"y":0.633731750190512,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.362116117503354,"y":0.932770345441603,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.615982190520711,"y":0.9264318342392917,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":7.869848263538068,"y":1.0947456163774127,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":8.123714336555425,"y":1.1123781744074777,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":9.266111665133531,"y":0.29500663380836734,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":9.773843811168245,"y":-0.1794361001181416,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.15464292069428,"y":-0.6105879353301285,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.408508993711639,"y":-0.8042173219068625,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":10.789308103237675,"y":-0.6900281246487727,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":11.550906322289745,"y":-0.829881239884507,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"},{"tags":["waves","sine"],"metadata":{},"format2d":null,"x":11.93170543181578,"y":-0.5003062213331707,"marker":{"color":"green","size":100.0,"alpha":1.0,"zorder":0.0,"label":"Peak","symbol":"o"},"product_type":"Point2D"}]} \ No newline at end of file diff --git a/gallery/trendify/products/waves/index_map.csv b/gallery/trendify/products/waves/index_map.csv deleted file mode 100644 index 2931929..0000000 --- a/gallery/trendify/products/waves/index_map.csv +++ /dev/null @@ -1,2 +0,0 @@ -0,/Users/talbotknighton/Documents/trendify/gallery/data -1,/Users/talbotknighton/Documents/trendify/gallery/data \ No newline at end of file diff --git a/gallery/trendify/products/waves/reserving_index.lock b/gallery/trendify/products/waves/reserving_index.lock deleted file mode 100644 index e69de29..0000000 diff --git a/pyproject.toml b/pyproject.toml index c36540d..427c566 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,8 @@ description = "Tools for generating data products, storing, and interacting with readme = "README.md" requires-python = ">=3.12" dependencies = [ + "fastapi>=0.139.0", + "jinja2>=3.1.6", "matplotlib>=3.11.0", "numpy>=2.4.6", "numpydantic>=1.10.0", @@ -16,7 +18,9 @@ dependencies = [ "polars>=1.42.1", "pydantic>=2.13.4", "rich>=15.0.0", + "sse-starlette>=3.4.5", "typer>=0.26.8", + "uvicorn>=0.49.0", ] keywords = ["Data", "Products", "Process", "Post", "Database"] @@ -102,7 +106,7 @@ ignore = ["typings"] exclude_also = ["if __name__ == .__main__.:", "@(abc\\.)?abstractmethod"] [dependency-groups] -dev = ["mkinit>=1.2.0", "pytest>=9.1.1"] +dev = ["httpx>=0.28.1", "mkinit>=1.2.0", "pytest>=9.1.1"] [project.urls] "Homepage" = "https://github.com/talbotknighton/trendify" diff --git a/requirements.txt b/requirements.txt index 7dad0b6..afbdb96 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,15 +4,35 @@ annotated-doc==0.0.4 \ --hash=sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320 \ --hash=sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4 - # via typer + # via + # fastapi + # typer annotated-types==0.7.0 \ --hash=sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 \ --hash=sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89 # via pydantic +anyio==4.14.1 \ + --hash=sha256:4e5533c5b8ff0a24f5d7a176cbe6877129cd183893f66b537f8f227d10527d72 \ + --hash=sha256:8d648a3544c1a700e3ff78615cd679e4c5c3f149904287e73687b2596963629e + # via + # httpx + # sse-starlette + # starlette +certifi==2026.6.17 \ + --hash=sha256:024c88eeec92ca068db80f02b8b07c9cef7b9fe261d1d535abfd5abd6f6af432 \ + --hash=sha256:2227dcbaafe0d2f59279d1762ddddc37783ed4354594f194ffc31d20f41fc3db + # via + # httpcore + # httpx +click==8.4.2 \ + --hash=sha256:9a6cea6e60b17ebe0a44c5cc636d94f09bd66142c1cd7d8b4cd731c4917a15f6 \ + --hash=sha256:e6f9f66136c816745b9d65817da91d61d957fb16e02e4dcd0552553c5a197b76 + # via uvicorn colorama==0.4.6 ; sys_platform == 'win32' \ --hash=sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44 \ --hash=sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6 # via + # click # pytest # typer contourpy==1.3.3 \ @@ -77,6 +97,10 @@ cycler==0.12.1 \ --hash=sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30 \ --hash=sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c # via matplotlib +fastapi==0.139.0 \ + --hash=sha256:99ab7b2d92223c76d6cf10757ab3f89d45b38267fc20b2a136cf02f6beac3145 \ + --hash=sha256:cf15e1e9e667ddb0ad63811e60bd11390d1aac838ca4a7a23f421807b2308189 + # via trendify fonttools==4.63.0 \ --hash=sha256:0eac00b9118c3c2f87d272e45341871c5b3066baa3c86897fa634a7c3fb59096 \ --hash=sha256:1e874792a8212b44583ea02189d9e693906b2f78b261f372f95d6c563210ac1d \ @@ -113,10 +137,33 @@ fonttools==4.63.0 \ --hash=sha256:ef3048ef05dbb552b89817713d9cac912e00d0fde4a3105c00d29e52e10c89af \ --hash=sha256:fd1e3094f42d806d3d7c79162fc59e5910fcbe3a7360c385b8da969bc4493745 # via matplotlib +h11==0.16.0 \ + --hash=sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1 \ + --hash=sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86 + # via + # httpcore + # uvicorn +httpcore==1.0.9 \ + --hash=sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55 \ + --hash=sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8 + # via httpx +httpx==0.28.1 \ + --hash=sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc \ + --hash=sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad +idna==3.18 \ + --hash=sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2 \ + --hash=sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848 + # via + # anyio + # httpx iniconfig==2.3.0 \ --hash=sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730 \ --hash=sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12 # via pytest +jinja2==3.1.6 \ + --hash=sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d \ + --hash=sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67 + # via trendify kiwisolver==1.5.0 \ --hash=sha256:012b1eb16e28718fa782b5e61dc6f2da1f0792ca73bd05d54de6cb9561665fc9 \ --hash=sha256:0255a027391d52944eae1dbb5d4cc5903f57092f3674e8e544cdd2622826b3f0 \ @@ -202,6 +249,64 @@ markdown-it-py==4.2.0 \ --hash=sha256:04a21681d6fbb623de53f6f364d352309d4094dd4194040a10fd51833e418d49 \ --hash=sha256:9f7ebbcd14fe59494226453aed97c1070d83f8d24b6fc3a3bcf9a38092641c4a # via rich +markupsafe==3.0.3 \ + --hash=sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf \ + --hash=sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175 \ + --hash=sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219 \ + --hash=sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb \ + --hash=sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6 \ + --hash=sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab \ + --hash=sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce \ + --hash=sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218 \ + --hash=sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634 \ + --hash=sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73 \ + --hash=sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c \ + --hash=sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe \ + --hash=sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa \ + --hash=sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37 \ + --hash=sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f \ + --hash=sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d \ + --hash=sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97 \ + --hash=sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19 \ + --hash=sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9 \ + --hash=sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9 \ + --hash=sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc \ + --hash=sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4 \ + --hash=sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354 \ + --hash=sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698 \ + --hash=sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9 \ + --hash=sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b \ + --hash=sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc \ + --hash=sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485 \ + --hash=sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f \ + --hash=sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12 \ + --hash=sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025 \ + --hash=sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009 \ + --hash=sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d \ + --hash=sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a \ + --hash=sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5 \ + --hash=sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f \ + --hash=sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1 \ + --hash=sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287 \ + --hash=sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6 \ + --hash=sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581 \ + --hash=sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed \ + --hash=sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b \ + --hash=sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026 \ + --hash=sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676 \ + --hash=sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e \ + --hash=sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d \ + --hash=sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d \ + --hash=sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795 \ + --hash=sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5 \ + --hash=sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d \ + --hash=sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe \ + --hash=sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda \ + --hash=sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e \ + --hash=sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737 \ + --hash=sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523 \ + --hash=sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50 + # via jinja2 matplotlib==3.11.0 \ --hash=sha256:03acfeddf87b0dddb11b081ef7740ad445a3ca8bcb6b8e3011b08f2cf802b75c \ --hash=sha256:0515d495124be3124340e59f164d901ed4484e2246a5b74cfa483cac3b80bd97 \ @@ -405,6 +510,7 @@ pydantic==2.13.4 \ --hash=sha256:45a282cde31d808236fd7ea9d919b128653c8b38b393d1c4ab335c62924d9aba \ --hash=sha256:c40756b57adaa8b1efeeced5c196f3f3b7c435f90e84ea7f443901bec8099ef6 # via + # fastapi # numpydantic # trendify pydantic-core==2.46.4 \ @@ -505,6 +611,16 @@ six==1.17.0 \ --hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \ --hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81 # via python-dateutil +sse-starlette==3.4.5 \ + --hash=sha256:83072538bc211a2f68b7b0422226c4af3e9b62e106e07034664b832ca019842a \ + --hash=sha256:e71bad53323f65573c3864a6c3bd0c1eb6e5f092b2e48082b0c35927d19ca296 + # via trendify +starlette==1.3.1 \ + --hash=sha256:05d0213193f2fbaae60e2ecb593b4add4262ad4e46536b54abe36f11a71724e0 \ + --hash=sha256:c7372aae11c3c3f26a42df7bd626cec2f47d03483d261d369516a615a53714c6 + # via + # fastapi + # sse-starlette typer==0.26.8 \ --hash=sha256:3512ca79ac5c11113414b36e80281b872884477722440691c89d1112e321a49c \ --hash=sha256:c244a6bd558886fe3f8780efb6bdd28bb9aff005a94eedebaa5cb32926fe2f7e @@ -513,14 +629,23 @@ typing-extensions==4.16.0 \ --hash=sha256:481caa481374e813c1b176ada14e97f1f67a4539ce9cfeb3f350d78d6370c2e8 \ --hash=sha256:dc983d19a509c94dba722ee6abd33940f7c05a89e243c47e907eb4db6f1a43e5 # via + # anyio + # fastapi # pydantic # pydantic-core + # starlette # typing-inspection typing-inspection==0.4.2 \ --hash=sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7 \ --hash=sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464 - # via pydantic + # via + # fastapi + # pydantic ubelt==1.4.2 \ --hash=sha256:40322cf3bb59c05b7567222b10bd0d553c6abc463cd480c23ea3dbcf2ef332fb \ --hash=sha256:6cdbcbba75cd7c3e1ef9556a13b7c0e29a55f67cb454f022a981e42808f2b06e # via mkinit +uvicorn==0.49.0 \ + --hash=sha256:ba3d14c3ee7e41c6c654c46c9eb489d33213cdd30aa1696eab1374337c13f68f \ + --hash=sha256:ebf4271aa580d9de97f93192d4595176df6e91f9aae919ca73e4fc07df1e66a3 + # via trendify diff --git a/sample_data/.gitignore b/sample_data/.gitignore deleted file mode 100644 index 40b4ebd..0000000 --- a/sample_data/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -trendify -good_result \ No newline at end of file diff --git a/sample_data/models/0/data_product.json b/sample_data/models/0/data_product.json deleted file mode 100644 index f30a373..0000000 --- a/sample_data/models/0/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.1250347437099675,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.3881446933897267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.5644140929926295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.5765274941218577,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.7525434886762616,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.951703019496325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":1.0387580017125762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":1.1424631973957466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.167131085457816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":1.2966861516723098,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.3101561238736408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":1.2683745792474768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.2906184141756492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.2027917344162276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.058655561558896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":1.020819857485758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.8356900901863938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7916097022617109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.594690977998331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.4258206707325276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.2304258052783369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.1498601908749069,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":-0.0964595980446463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":-0.285888673606689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":-0.4526704664342024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":-0.5705718142699765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":-0.7294149839781432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":-0.8629975896480442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":-0.9808412681312392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":-0.9945378046595352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":-1.199737018122856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":-1.2598684902808244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":-1.30576168078181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":-1.2404675559734186,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":-1.196267638293124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-1.215480654719239,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":-1.1853110791190873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":-1.0957941921143173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":-0.9127813599467256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":-0.7804897554592048,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":-0.6469215401392899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":-0.5506613425375034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":-0.3390140674460676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":-0.1711996585649553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0109344298364503,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0435714388974095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0520204973589204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.1154281461118111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.1251061950773875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.1758349422970588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.2318088922825104,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.1652766276429425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2588806285125982,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.2867362166093944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.3121900864662398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.3625794097185764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.4814526575358013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.3918016771213956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5097750610723087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.4012378600841155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.4902925733474551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.5343597218403423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5721547278689149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5923818034986434,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.6077519260966374,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.5591447496580721,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.5591508078809043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.6280178327173551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.5755538224104166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.5184840813472368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.51991664257032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":0.5221119500365605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.581678511711689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.5499648981044793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":0.5607463362884805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":0.485674192529917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":0.4933083332187414,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":0.4926406630411015,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.4196259059200459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":0.4295443538519522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.3432402252265781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.3259812865501533,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.2911679546241177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.2150722070510112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.2624830426750049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.176774363980447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.1620036782989439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.1457645745482383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.1038090267597134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.0741099753688255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0049242742254711,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0211649156022076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0455153354165413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.014528561549859,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.0757195117507005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.130799309107948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.1955045868806078,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.3132568680028385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2952602787813961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.368154657413784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.497714461768849,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.4596928633548972,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.5581006835592935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.5171340072837154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5949119020332126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.5977408725166667,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6669510663649307,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.7630976909281648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.6703341231322251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.812400342692902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.8348325218604149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.8237225079616655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.8097630376766148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.912397972041864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.9070741874483652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.9679181008441672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.978041266097306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":1.0755861186809197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.9999218828302024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.974915751973679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":1.047033086943114,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":1.0587995910235684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":1.1232202862643592,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":1.1021921603321585,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":1.0811591719915423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":1.1370568797378386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":1.0027255460093911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":1.0261476755847578,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":1.0054863233148026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":1.023726501054457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.9635251789591116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":1.0510236680376877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.9928541167518116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.912949702616439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.916099311307141,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.9608481627447868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9633259706691452,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.1250347437099675,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.3881446933897267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.5644140929926295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.5765274941218577,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.7525434886762616,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.951703019496325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":1.0387580017125762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":1.1424631973957466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.167131085457816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":1.2966861516723098,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.3101561238736408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":1.2683745792474768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.2906184141756492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.2027917344162276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.058655561558896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":1.020819857485758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.8356900901863938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7916097022617109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.594690977998331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.4258206707325276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.2304258052783369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.1498601908749069,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":-0.0964595980446463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":-0.285888673606689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":-0.4526704664342024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":-0.5705718142699765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":-0.7294149839781432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":-0.8629975896480442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":-0.9808412681312392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":-0.9945378046595352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":-1.199737018122856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":-1.2598684902808244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":-1.30576168078181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":-1.2404675559734186,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":-1.196267638293124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-1.215480654719239,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":-1.1853110791190873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":-1.0957941921143173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":-0.9127813599467256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":-0.7804897554592048,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":-0.6469215401392899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":-0.5506613425375034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":-0.3390140674460676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":-0.1711996585649553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0109344298364503,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0435714388974095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0520204973589204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.1154281461118111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.1251061950773875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.1758349422970588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.2318088922825104,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.1652766276429425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2588806285125982,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.2867362166093944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.3121900864662398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.3625794097185764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.4814526575358013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.3918016771213956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5097750610723087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.4012378600841155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.4902925733474551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.5343597218403423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5721547278689149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5923818034986434,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.6077519260966374,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.5591447496580721,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.5591508078809043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.6280178327173551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.5755538224104166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.5184840813472368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.51991664257032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":0.5221119500365605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.581678511711689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.5499648981044793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":0.5607463362884805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":0.485674192529917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":0.4933083332187414,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":0.4926406630411015,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.4196259059200459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":0.4295443538519522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.3432402252265781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.3259812865501533,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.2911679546241177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.2150722070510112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.2624830426750049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.176774363980447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.1620036782989439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.1457645745482383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.1038090267597134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.0741099753688255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0049242742254711,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0211649156022076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0455153354165413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.014528561549859,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.0757195117507005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.130799309107948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.1955045868806078,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.3132568680028385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2952602787813961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.368154657413784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.497714461768849,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.4596928633548972,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.5581006835592935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.5171340072837154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5949119020332126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.5977408725166667,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6669510663649307,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.7630976909281648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.6703341231322251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.812400342692902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.8348325218604149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.8237225079616655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.8097630376766148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.912397972041864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.9070741874483652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.9679181008441672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.978041266097306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":1.0755861186809197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.9999218828302024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.974915751973679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":1.047033086943114,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":1.0587995910235684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":1.1232202862643592,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":1.1021921603321585,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":1.0811591719915423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":1.1370568797378386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":1.0027255460093911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":1.0261476755847578,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":1.0054863233148026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":1.023726501054457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.9635251789591116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":1.0510236680376877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.9928541167518116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.912949702616439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.916099311307141,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.9608481627447868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9633259706691452,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.1250347437099675,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.3881446933897267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.5644140929926295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.5765274941218577,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.7525434886762616,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.951703019496325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":1.0387580017125762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":1.1424631973957466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.167131085457816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":1.2966861516723098,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.3101561238736408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":1.2683745792474768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.2906184141756492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.2027917344162276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.058655561558896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":1.020819857485758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.8356900901863938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7916097022617109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.594690977998331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.4258206707325276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.2304258052783369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.1498601908749069,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":-0.0964595980446463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":-0.285888673606689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":-0.4526704664342024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":-0.5705718142699765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":-0.7294149839781432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":-0.8629975896480442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":-0.9808412681312392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":-0.9945378046595352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":-1.199737018122856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":-1.2598684902808244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":-1.30576168078181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":-1.2404675559734186,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":-1.196267638293124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-1.215480654719239,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":-1.1853110791190873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":-1.0957941921143173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":-0.9127813599467256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":-0.7804897554592048,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":-0.6469215401392899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":-0.5506613425375034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":-0.3390140674460676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":-0.1711996585649553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0109344298364503,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0435714388974095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0520204973589204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.1154281461118111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.1251061950773875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.1758349422970588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.2318088922825104,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.1652766276429425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2588806285125982,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.2867362166093944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.3121900864662398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.3625794097185764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.4814526575358013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.3918016771213956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5097750610723087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.4012378600841155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.4902925733474551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.5343597218403423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5721547278689149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5923818034986434,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.6077519260966374,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.5591447496580721,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.5591508078809043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.6280178327173551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.5755538224104166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.5184840813472368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.51991664257032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":0.5221119500365605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.581678511711689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.5499648981044793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":0.5607463362884805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":0.485674192529917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":0.4933083332187414,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":0.4926406630411015,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.4196259059200459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":0.4295443538519522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.3432402252265781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.3259812865501533,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.2911679546241177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.2150722070510112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.2624830426750049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.176774363980447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.1620036782989439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.1457645745482383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.1038090267597134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.0741099753688255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0049242742254711,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0211649156022076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0455153354165413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.014528561549859,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.0757195117507005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.130799309107948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.1955045868806078,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.3132568680028385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2952602787813961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.368154657413784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.497714461768849,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.4596928633548972,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.5581006835592935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.5171340072837154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5949119020332126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.5977408725166667,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6669510663649307,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.7630976909281648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.6703341231322251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.812400342692902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.8348325218604149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.8237225079616655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.8097630376766148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.912397972041864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.9070741874483652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.9679181008441672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.978041266097306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":1.0755861186809197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.9999218828302024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.974915751973679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":1.047033086943114,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":1.0587995910235684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":1.1232202862643592,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":1.1021921603321585,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":1.0811591719915423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":1.1370568797378386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":1.0027255460093911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":1.0261476755847578,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":1.0054863233148026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":1.023726501054457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.9635251789591116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":1.0510236680376877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.9928541167518116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.912949702616439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.916099311307141,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.9608481627447868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9633259706691452,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":1.133187823531964,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":1.4742430820852068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":1.7584172118756378,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":1.7798471576381925,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":2.1223914357828044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":2.590116925042035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":2.8257053128800087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":3.134479706259065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":3.2127622639020275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":3.657157300113937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":3.706752379577255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":3.5550693800295368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":3.635033817253559,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":3.3293987575961808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":2.8824930485650953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":2.775469320729788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":2.30640512677388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":2.206946094654877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":1.812470765066871,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":1.5308462249844053,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":1.259136042571686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":1.1616718190537245,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.9080465837161839,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.7513462559599329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.6359276586106919,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":0.5652021556214013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.48219099705173446,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.4218955153128189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":0.3749954943572506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":0.36989436849447177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":0.3012734309475644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":0.28369133221411663,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.27096606677853846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":0.2892489462453487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.3023204781641348,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.2965674334942416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.3056510830385574,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.3342740237068599,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.4014062147931226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.4581815594264074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.5236553499623258,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.5765683750724773,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.7124724263512624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.8426533137235561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0109944292012434,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0445346120476808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":1.0533973341553222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":1.1223538661616563,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":1.1332687942441986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":1.1922412538063334,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":1.2608787421434131,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":1.1797194165793465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":1.2954791523243714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":1.3320727884510002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.36641440523052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":1.4370313307089109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.6184237108089583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":1.4796442349977124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.664916648256846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.493672511318425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.632793862045222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":1.706355350350695,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":1.7720812935803225,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.8082902823843803,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":1.8362986201195688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":1.7491758771265837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":1.7491864740559193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":1.8738925271225808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":1.7781150142164808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":1.6794797642916732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":1.6818874460409463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":1.6855837618990224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":1.7890388345756494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":1.7331921784688467,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":1.7519795784115595,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":1.6252703847080918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":1.6377254086950839,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":1.636632313234762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":1.5213923052939862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":1.536557237632525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":1.4095073204750952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":1.3853894432143423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":1.337989286567284,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":1.2399514269696128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":1.3001544208405018,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":1.193361797341028,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":1.175864566494438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":1.1569237866818132,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":1.1093885711539921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":1.076925234233811,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9950878301363034,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.9790574893994779,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":1.0465670540325982,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":1.014634614074671,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":1.0786599802727972,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":1.139739023116659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":1.2159243712092986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":1.367872848671318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":1.3434759914772012,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":1.4450655117873714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.6449573581249335,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":1.5835875325326485,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.7473505749263576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":1.6772138721269854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.8128712276556713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.8180070479658499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.948288054805188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":2.1449102090652583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":1.954890385626606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":2.2533102171950707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":2.304428074640092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":2.2789675420251503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":2.247375380283509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":2.4902870178382117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":2.4770644943428244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":2.632458237872604,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":2.6592423890982295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":2.9317107274837215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":2.718069492269553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":2.6509438647860044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":2.8491852805609637,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":2.8829082423951564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":3.074739819900799,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":3.0107588611732763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":2.9480949202429017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":3.117579438546421,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":2.725700736343717,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":2.790295978205009,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":2.7332361861411534,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":2.783548356531707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":2.6209194175921393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":2.860577901947565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":2.698926541550007,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":2.491661364425073,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":2.4995214943818342,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":2.6139125567393697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":2.6203973607175763,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":1.133187823531964,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":1.4742430820852068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":1.7584172118756378,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":1.7798471576381925,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":2.1223914357828044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":2.590116925042035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":2.8257053128800087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":3.134479706259065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":3.2127622639020275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":3.657157300113937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":3.706752379577255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":3.5550693800295368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":3.635033817253559,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":3.3293987575961808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":2.8824930485650953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":2.775469320729788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":2.30640512677388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":2.206946094654877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":1.812470765066871,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":1.5308462249844053,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":1.259136042571686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":1.1616718190537245,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":0.9080465837161839,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":0.7513462559599329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":0.6359276586106919,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":0.5652021556214013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":0.48219099705173446,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":0.4218955153128189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":0.3749954943572506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":0.36989436849447177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":0.3012734309475644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":0.28369133221411663,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":0.27096606677853846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":0.2892489462453487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":0.3023204781641348,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.2965674334942416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":0.3056510830385574,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":0.3342740237068599,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":0.4014062147931226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":0.4581815594264074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":0.5236553499623258,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":0.5765683750724773,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":0.7124724263512624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":0.8426533137235561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0109944292012434,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0445346120476808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":1.0533973341553222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":1.1223538661616563,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":1.1332687942441986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":1.1922412538063334,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":1.2608787421434131,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":1.1797194165793465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":1.2954791523243714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":1.3320727884510002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.36641440523052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":1.4370313307089109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":1.6184237108089583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":1.4796442349977124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":1.664916648256846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":1.493672511318425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.632793862045222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":1.706355350350695,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":1.7720812935803225,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":1.8082902823843803,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":1.8362986201195688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":1.7491758771265837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":1.7491864740559193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":1.8738925271225808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":1.7781150142164808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":1.6794797642916732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":1.6818874460409463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":1.6855837618990224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":1.7890388345756494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":1.7331921784688467,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":1.7519795784115595,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":1.6252703847080918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":1.6377254086950839,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":1.636632313234762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":1.5213923052939862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":1.536557237632525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":1.4095073204750952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":1.3853894432143423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":1.337989286567284,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":1.2399514269696128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":1.3001544208405018,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":1.193361797341028,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":1.175864566494438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":1.1569237866818132,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":1.1093885711539921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":1.076925234233811,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9950878301363034,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9790574893994779,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":1.0465670540325982,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":1.014634614074671,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":1.0786599802727972,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":1.139739023116659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":1.2159243712092986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":1.367872848671318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":1.3434759914772012,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":1.4450655117873714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.6449573581249335,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":1.5835875325326485,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":1.7473505749263576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":1.6772138721269854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":1.8128712276556713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":1.8180070479658499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.948288054805188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":2.1449102090652583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":1.954890385626606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":2.2533102171950707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":2.304428074640092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":2.2789675420251503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":2.247375380283509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":2.4902870178382117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":2.4770644943428244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":2.632458237872604,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":2.6592423890982295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":2.9317107274837215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":2.718069492269553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":2.6509438647860044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":2.8491852805609637,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":2.8829082423951564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":3.074739819900799,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":3.0107588611732763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":2.9480949202429017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":3.117579438546421,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":2.725700736343717,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":2.790295978205009,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":2.7332361861411534,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":2.783548356531707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":2.6209194175921393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":2.860577901947565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":2.698926541550007,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":2.491661364425073,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":2.4995214943818342,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":2.6139125567393697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":2.6203973607175763,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":0.1250347437099675,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":0.3881446933897267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":0.5644140929926295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":0.5765274941218577,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":0.7525434886762616,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":0.951703019496325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":1.0387580017125762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":1.1424631973957466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.167131085457816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":1.2966861516723098,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":1.3101561238736408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":1.2683745792474768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":1.2906184141756492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":1.2027917344162276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.058655561558896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":1.020819857485758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":0.8356900901863938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.7916097022617109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":0.594690977998331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":0.4258206707325276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":0.2304258052783369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":0.1498601908749069,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":-0.0964595980446463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":-0.285888673606689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":-0.4526704664342024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":-0.5705718142699765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":-0.7294149839781432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":-0.8629975896480442,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":-0.9808412681312392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":-0.9945378046595352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":-1.199737018122856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":-1.2598684902808244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":-1.30576168078181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":-1.2404675559734186,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":-1.196267638293124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":-1.215480654719239,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":-1.1853110791190873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":-1.0957941921143173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":-0.9127813599467256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":-0.7804897554592048,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":-0.6469215401392899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":-0.5506613425375034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":-0.3390140674460676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":-0.1711996585649553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0109344298364503,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0435714388974095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":0.0520204973589204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":0.1154281461118111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":0.1251061950773875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":0.1758349422970588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":0.2318088922825104,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":0.1652766276429425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":0.2588806285125982,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":0.2867362166093944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.3121900864662398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":0.3625794097185764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":0.4814526575358013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":0.3918016771213956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":0.5097750610723087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":0.4012378600841155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.4902925733474551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":0.5343597218403423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":0.5721547278689149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.5923818034986434,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":0.6077519260966374,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":0.5591447496580721,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":0.5591508078809043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":0.6280178327173551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":0.5755538224104166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":0.5184840813472368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":0.51991664257032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":0.5221119500365605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":0.581678511711689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":0.5499648981044793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":0.5607463362884805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":0.485674192529917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":0.4933083332187414,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":0.4926406630411015,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":0.4196259059200459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":0.4295443538519522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":0.3432402252265781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.3259812865501533,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":0.2911679546241177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":0.2150722070510112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":0.2624830426750049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":0.176774363980447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":0.1620036782989439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":0.1457645745482383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":0.1038090267597134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":0.0741099753688255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":-0.0049242742254711,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"0"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0211649156022076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":0.0455153354165413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":0.014528561549859,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":0.0757195117507005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":0.130799309107948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":0.1955045868806078,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":0.3132568680028385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":0.2952602787813961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":0.368154657413784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.497714461768849,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":0.4596928633548972,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":0.5581006835592935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":0.5171340072837154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":0.5949119020332126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":0.5977408725166667,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.6669510663649307,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":0.7630976909281648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":0.6703341231322251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.812400342692902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":0.8348325218604149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":0.8237225079616655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":0.8097630376766148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":0.912397972041864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":0.9070741874483652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":0.9679181008441672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":0.978041266097306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":1.0755861186809197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":0.9999218828302024,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":0.974915751973679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":1.047033086943114,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":1.0587995910235684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":1.1232202862643592,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":1.1021921603321585,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":1.0811591719915423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":1.1370568797378386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":1.0027255460093911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":1.0261476755847578,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":1.0054863233148026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":1.023726501054457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":0.9635251789591116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":1.0510236680376877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":0.9928541167518116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":0.912949702616439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":0.916099311307141,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":0.9608481627447868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9633259706691452,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"0"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"0","y":46.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"0"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"0","y":46.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"0"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"0","y":46.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"0","col":"wave1","value":46.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.002955472353659675,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.002955472353659675,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"0","col":"wave2","value":46.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.36308013546924556,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.36308013546924556,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"0","col":"wave3","value":46.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.7436521497324703,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.7436521497324703,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/0/results.csv b/sample_data/models/0/results.csv deleted file mode 100644 index d2c0a07..0000000 --- a/sample_data/models/0/results.csv +++ /dev/null @@ -1,47 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.0435714388974095,-0.02116491560220769 -0.022222222222222223,0.1250347437099675,0.052020497358920455,0.04551533541654131 -0.044444444444444446,0.38814469338972674,0.1154281461118111,0.014528561549859015 -0.06666666666666667,0.5644140929926295,0.12510619507738752,0.07571951175070053 -0.08888888888888889,0.5765274941218577,0.1758349422970588,0.13079930910794801 -0.11111111111111112,0.7525434886762616,0.23180889228251042,0.19550458688060787 -0.13333333333333333,0.951703019496325,0.16527662764294254,0.3132568680028385 -0.15555555555555556,1.0387580017125762,0.2588806285125982,0.2952602787813961 -0.17777777777777778,1.1424631973957466,0.2867362166093944,0.368154657413784 -0.2,1.1671310854578159,0.3121900864662398,0.49771446176884904 -0.22222222222222224,1.2966861516723098,0.36257940971857644,0.4596928633548972 -0.24444444444444446,1.3101561238736408,0.48145265753580135,0.5581006835592935 -0.26666666666666666,1.2683745792474768,0.39180167712139563,0.5171340072837154 -0.2888888888888889,1.2906184141756492,0.5097750610723087,0.5949119020332126 -0.3111111111111111,1.2027917344162276,0.4012378600841155,0.5977408725166667 -0.33333333333333337,1.058655561558896,0.4902925733474551,0.6669510663649307 -0.35555555555555557,1.020819857485758,0.5343597218403423,0.7630976909281648 -0.37777777777777777,0.8356900901863938,0.5721547278689149,0.6703341231322251 -0.4,0.7916097022617109,0.5923818034986434,0.812400342692902 -0.4222222222222222,0.594690977998331,0.6077519260966374,0.8348325218604149 -0.4444444444444445,0.42582067073252766,0.5591447496580721,0.8237225079616655 -0.4666666666666667,0.23042580527833698,0.5591508078809043,0.8097630376766148 -0.48888888888888893,0.14986019087490696,0.6280178327173551,0.9123979720418641 -0.5111111111111112,-0.09645959804464635,0.5755538224104166,0.9070741874483652 -0.5333333333333333,-0.28588867360668907,0.5184840813472368,0.9679181008441671 -0.5555555555555556,-0.4526704664342024,0.51991664257032,0.9780412660973059 -0.5777777777777778,-0.5705718142699765,0.5221119500365605,1.0755861186809195 -0.6,-0.7294149839781432,0.581678511711689,0.9999218828302023 -0.6222222222222222,-0.8629975896480442,0.5499648981044793,0.974915751973679 -0.6444444444444445,-0.9808412681312391,0.5607463362884805,1.047033086943114 -0.6666666666666667,-0.9945378046595351,0.485674192529917,1.0587995910235684 -0.6888888888888889,-1.199737018122856,0.49330833321874146,1.1232202862643592 -0.7111111111111111,-1.2598684902808244,0.49264066304110155,1.1021921603321583 -0.7333333333333334,-1.30576168078181,0.4196259059200459,1.0811591719915423 -0.7555555555555555,-1.2404675559734186,0.4295443538519522,1.1370568797378386 -0.7777777777777778,-1.1962676382931239,0.34324022522657816,1.0027255460093911 -0.8,-1.215480654719239,0.32598128655015335,1.0261476755847578 -0.8222222222222223,-1.1853110791190873,0.2911679546241177,1.0054863233148026 -0.8444444444444444,-1.0957941921143173,0.2150722070510112,1.023726501054457 -0.8666666666666667,-0.9127813599467255,0.2624830426750049,0.9635251789591117 -0.888888888888889,-0.7804897554592048,0.17677436398044705,1.0510236680376877 -0.9111111111111111,-0.6469215401392899,0.16200367829894396,0.9928541167518115 -0.9333333333333333,-0.5506613425375034,0.14576457454823838,0.912949702616439 -0.9555555555555556,-0.3390140674460676,0.10380902675971349,0.916099311307141 -0.9777777777777779,-0.17119965856495534,0.07410997536882552,0.9608481627447867 -1.0,0.010934429836450335,-0.004924274225471109,0.9633259706691452 diff --git a/sample_data/models/0/stdin.csv b/sample_data/models/0/stdin.csv deleted file mode 100644 index 119ac82..0000000 --- a/sample_data/models/0/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,46.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,1.2720414203660715 -a1,0.5854756946286414 -a2,1.0639637570074971 diff --git a/sample_data/models/1/data_product.json b/sample_data/models/1/data_product.json deleted file mode 100644 index 9071eb7..0000000 --- a/sample_data/models/1/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":0.130262560286638,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.3987936254626789,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.5808617108400164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.5993178539273737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.7823611215970014,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.9893394767216976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":1.08507196592054,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":1.1983353738715918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":1.233415257588699,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":1.374157920984444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":1.3994609505170392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":1.3699767920878183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":1.4047528686802786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":1.3294197606479452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":1.1974267642357452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":1.171041206735384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":0.9963035778883784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":0.9611796383070652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":0.7714017679097901,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":0.6074856562228275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":0.4145074685311355,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":0.3335017282479033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":0.0836083704898036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":-0.1127512357013981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":-0.289981338838613,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":-0.4219384864736647,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":-0.5984565711818857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":-0.7532614328793026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":-0.8957160730913071,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":-0.9371653278863044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":-1.1729244183504894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":-1.2660035238334837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":-1.3467329299477369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":-1.317591837203102,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":-1.310226642573713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":-1.3662687266283358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":-1.3721958460894292,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":-1.3172915147519404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":-1.1666457923555715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":-1.063721386977548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":-0.9557897431480744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":-0.8807455823045526,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":-0.6852615472067302,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":-0.5279991845634199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":-0.3503366358359058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":-0.1386903267012537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0111797774387337,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0339456781535947,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":0.0885422305056901,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.1844021641280688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.2855345016894857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.2640019035328715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.4022612406661993,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.4742432929139357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":0.5431120317675163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":0.6360244708151211,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":0.7963522258467084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":0.7469143175907086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":0.9036912529394384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":0.8323854322627878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":0.956942814326735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":1.034634141261609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":1.1040324442534066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":1.153707530012155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":1.1962445237516908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":1.172406314979622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":1.1946762598091545,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":1.2832049614000147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":1.247713760555619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":1.2048521569758437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":1.2176635703303602,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":1.2283553167304535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":1.2934945103454278,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":1.264400263603228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":1.2748304350405453,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":1.196431217125556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":1.1977695531458796,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":1.1878566816900615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":1.1026788740365003,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":1.0975600895633135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":0.993400190953026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":0.9555343734977704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":0.8974420261436616,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":0.7954853529304122,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":0.8145544974146498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":0.6981350432748525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":0.6504062893128402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":0.5990932571249793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":0.5200884844300732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":0.4515140569327039,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":0.3319354203001839,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":0.2328051747953513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":0.1659602836482498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":0.0007965553333443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0723556236211542,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0661349806177201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":-0.0004872236992196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.1186409169721035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.1024594760003981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.1776132131509379,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.3098804928953337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.275017352447489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":0.3770364144651175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":0.340134479626377,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":0.4224302272194484,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":0.4302286538763697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":0.5048572661249355,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":0.6068674867813276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":0.520407757217871,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":0.6692119658524949,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":0.6988090360731393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":0.6952824098983544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":0.6893152663369921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":0.8003407634592516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":0.8037939394577736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":0.8737882509139321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":0.8934211852211047,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":1.000820024316065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":0.935337773849532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":0.92082436857213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":1.0037268984062273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":1.0265518142237149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":1.1022839377014848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":1.0927991444793874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":1.083519408642124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":1.1513574729788023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":1.0291299973690111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":1.0647951438156609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":1.0564909331824428,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":1.0871767034019326,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":1.039483164214081,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":1.1395248352156897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":1.093906599892844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":1.026533956468426,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":1.0421677579412196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":1.0993249006534236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":1.114106547759248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":1.158459020744757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":1.188636059320512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":1.0459132008838443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":0.9559301911508352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":0.877023008321756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9732762236525532,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":0.130262560286638,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.3987936254626789,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.5808617108400164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.5993178539273737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.7823611215970014,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.9893394767216976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":1.08507196592054,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":1.1983353738715918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":1.233415257588699,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":1.374157920984444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":1.3994609505170392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":1.3699767920878183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":1.4047528686802786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":1.3294197606479452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":1.1974267642357452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":1.171041206735384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":0.9963035778883784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":0.9611796383070652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":0.7714017679097901,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":0.6074856562228275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":0.4145074685311355,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":0.3335017282479033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":0.0836083704898036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":-0.1127512357013981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":-0.289981338838613,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":-0.4219384864736647,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":-0.5984565711818857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":-0.7532614328793026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":-0.8957160730913071,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":-0.9371653278863044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":-1.1729244183504894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":-1.2660035238334837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":-1.3467329299477369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":-1.317591837203102,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":-1.310226642573713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":-1.3662687266283358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":-1.3721958460894292,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":-1.3172915147519404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":-1.1666457923555715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":-1.063721386977548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":-0.9557897431480744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":-0.8807455823045526,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":-0.6852615472067302,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":-0.5279991845634199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":-0.3503366358359058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":-0.1386903267012537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0111797774387337,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0339456781535947,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":0.0885422305056901,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.1844021641280688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.2855345016894857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.2640019035328715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.4022612406661993,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.4742432929139357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":0.5431120317675163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":0.6360244708151211,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":0.7963522258467084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":0.7469143175907086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":0.9036912529394384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":0.8323854322627878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":0.956942814326735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":1.034634141261609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":1.1040324442534066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":1.153707530012155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":1.1962445237516908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":1.172406314979622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":1.1946762598091545,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":1.2832049614000147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":1.247713760555619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":1.2048521569758437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":1.2176635703303602,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":1.2283553167304535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":1.2934945103454278,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":1.264400263603228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":1.2748304350405453,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":1.196431217125556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":1.1977695531458796,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":1.1878566816900615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":1.1026788740365003,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":1.0975600895633135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":0.993400190953026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":0.9555343734977704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":0.8974420261436616,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":0.7954853529304122,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":0.8145544974146498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":0.6981350432748525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":0.6504062893128402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":0.5990932571249793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":0.5200884844300732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":0.4515140569327039,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":0.3319354203001839,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":0.2328051747953513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":0.1659602836482498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":0.0007965553333443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0723556236211542,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0661349806177201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":-0.0004872236992196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.1186409169721035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.1024594760003981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.1776132131509379,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.3098804928953337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.275017352447489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":0.3770364144651175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":0.340134479626377,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":0.4224302272194484,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":0.4302286538763697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":0.5048572661249355,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":0.6068674867813276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":0.520407757217871,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":0.6692119658524949,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":0.6988090360731393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":0.6952824098983544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":0.6893152663369921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":0.8003407634592516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":0.8037939394577736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":0.8737882509139321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":0.8934211852211047,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":1.000820024316065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":0.935337773849532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":0.92082436857213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":1.0037268984062273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":1.0265518142237149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":1.1022839377014848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":1.0927991444793874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":1.083519408642124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":1.1513574729788023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":1.0291299973690111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":1.0647951438156609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":1.0564909331824428,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":1.0871767034019326,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":1.039483164214081,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":1.1395248352156897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":1.093906599892844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":1.026533956468426,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":1.0421677579412196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":1.0993249006534236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":1.114106547759248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":1.158459020744757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":1.188636059320512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":1.0459132008838443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":0.9559301911508352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":0.877023008321756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9732762236525532,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":0.130262560286638,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.3987936254626789,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.5808617108400164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.5993178539273737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.7823611215970014,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.9893394767216976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":1.08507196592054,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":1.1983353738715918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":1.233415257588699,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":1.374157920984444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":1.3994609505170392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":1.3699767920878183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":1.4047528686802786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":1.3294197606479452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":1.1974267642357452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":1.171041206735384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":0.9963035778883784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":0.9611796383070652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":0.7714017679097901,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":0.6074856562228275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":0.4145074685311355,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":0.3335017282479033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":0.0836083704898036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":-0.1127512357013981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":-0.289981338838613,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":-0.4219384864736647,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":-0.5984565711818857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":-0.7532614328793026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":-0.8957160730913071,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":-0.9371653278863044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":-1.1729244183504894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":-1.2660035238334837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":-1.3467329299477369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":-1.317591837203102,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":-1.310226642573713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":-1.3662687266283358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":-1.3721958460894292,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":-1.3172915147519404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":-1.1666457923555715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":-1.063721386977548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":-0.9557897431480744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":-0.8807455823045526,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":-0.6852615472067302,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":-0.5279991845634199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":-0.3503366358359058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":-0.1386903267012537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0111797774387337,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0339456781535947,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":0.0885422305056901,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.1844021641280688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.2855345016894857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.2640019035328715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.4022612406661993,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.4742432929139357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":0.5431120317675163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":0.6360244708151211,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":0.7963522258467084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":0.7469143175907086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":0.9036912529394384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":0.8323854322627878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":0.956942814326735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":1.034634141261609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":1.1040324442534066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":1.153707530012155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":1.1962445237516908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":1.172406314979622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":1.1946762598091545,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":1.2832049614000147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":1.247713760555619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":1.2048521569758437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":1.2176635703303602,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":1.2283553167304535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":1.2934945103454278,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":1.264400263603228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":1.2748304350405453,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":1.196431217125556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":1.1977695531458796,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":1.1878566816900615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":1.1026788740365003,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":1.0975600895633135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":0.993400190953026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":0.9555343734977704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":0.8974420261436616,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":0.7954853529304122,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":0.8145544974146498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":0.6981350432748525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":0.6504062893128402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":0.5990932571249793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":0.5200884844300732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":0.4515140569327039,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":0.3319354203001839,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":0.2328051747953513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":0.1659602836482498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":0.0007965553333443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0723556236211542,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0661349806177201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":-0.0004872236992196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":0.1186409169721035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":0.1024594760003981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":0.1776132131509379,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":0.3098804928953337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":0.275017352447489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":0.3770364144651175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":0.340134479626377,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":0.4224302272194484,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":0.4302286538763697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":0.5048572661249355,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":0.6068674867813276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":0.520407757217871,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":0.6692119658524949,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":0.6988090360731393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":0.6952824098983544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":0.6893152663369921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":0.8003407634592516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":0.8037939394577736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":0.8737882509139321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":0.8934211852211047,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":1.000820024316065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":0.935337773849532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":0.92082436857213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":1.0037268984062273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":1.0265518142237149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":1.1022839377014848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":1.0927991444793874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":1.083519408642124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":1.1513574729788023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":1.0291299973690111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":1.0647951438156609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":1.0564909331824428,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":1.0871767034019326,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":1.039483164214081,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":1.1395248352156897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":1.093906599892844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":1.026533956468426,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":1.0421677579412196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":1.0993249006534236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":1.114106547759248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":1.158459020744757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":1.188636059320512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":1.0459132008838443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":0.9559301911508352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":0.877023008321756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9732762236525532,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":1.1391274336890358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":1.4900260834312147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":1.7875781427245105,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":1.820876273047719,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":2.1866290723057697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":2.6894574362843584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":2.9596528052141213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":3.3145947667952713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":3.4329338917439447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":3.9517476376804224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":4.053014602461932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":3.935259365256924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":4.074519675409279,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":3.778850113776904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":3.311584461854374,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":3.2253491460709878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":2.7082524592135506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":2.614779148492921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":2.16279586772383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":1.8358097342083954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":1.513625049100092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":1.3958474589098797,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":1.0872030296338004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":0.89337287175154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":0.7482775311760479,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":0.6557743771471889,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":0.5496593418073222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":0.4708284704742347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":0.40831511046851104,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":0.39173670809303784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":0.3094606243578795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":0.28195620434853835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":0.26008860177816084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":0.2677793824758787,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":0.26975891060204893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":0.2550568731761487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":0.25354959195006177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":0.2678598147135932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":0.31140972431021513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":0.34516891020104984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":0.3845083617694969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":0.41447377214120695,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":0.5039584034234725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":0.5897838385439707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":0.7044509063790239,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":0.8704975565731621,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0112425046914886,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.034528407708449,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":1.092580391858686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":1.202499327959361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":1.3304729781571902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":1.3021306749470778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":1.4952018891968348,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":1.6067978620109298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":1.7213554482214435,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":1.8889563311614328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":2.2174374466378324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":2.110477694982659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":2.4686989054818507,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":2.2987958267883326,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":2.6037242249129235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":2.8140764927899546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":3.0163046136106453,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":3.169923737447163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":3.3076716860139443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":3.229755103400957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":3.302488449179064,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":3.608185308750906,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":3.4823723125912323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":3.336265797979341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":3.3792830456734975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":3.415607321958317,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":3.6455035728873275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":3.540968451507068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":3.5780946391870714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":3.308289264047714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":3.312719830867707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":3.280043490772678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":3.01222459543902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":2.996845062787742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":2.700400758184522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":2.6000596147063026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":2.453319550719535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":2.215516043098429,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":2.258169427905803,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":2.0100006456198787,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":1.9163192509025726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":1.8204673559816882,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":1.6821764895417444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":1.570688497909452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":1.3936628432782285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":1.2621355595536696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":1.1805262145978002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":1.0007968726677965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.930200035878732,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.9360045132969494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0212765957446808,"y":0.9995128949749725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0425531914893617,"y":1.1259655305762897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0638297872340425,"y":1.107892404768735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0851063829787234,"y":1.1943632678774623,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1063829787234042,"y":1.363262184880154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1276595744680851,"y":1.3165535200952347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1489361702127659,"y":1.457957399143456,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1702127659574468,"y":1.4051365400952984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1914893617021276,"y":1.5256647660168088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2127659574468085,"y":1.5376090636289887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2340425531914893,"y":1.6567490293746359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2553191489361702,"y":1.8346752434201956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2765957446808511,"y":1.682713648464679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2978723404255319,"y":1.9526979215241465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3191489361702128,"y":2.0113558282199335,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3404255319148936,"y":2.004275021127861,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3617021276595744,"y":1.99235083638327,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3829787234042553,"y":2.226299440747257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4042553191489361,"y":2.2340005335033117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425531914893617,"y":2.3959702194881833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4468085106382978,"y":2.4434749481276468,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4680851063829787,"y":2.72051179984672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4893617021276595,"y":2.5480739851578558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5106382978723404,"y":2.5113598229426795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5319148936170213,"y":2.728431490304446,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5531914893617021,"y":2.7914238725214133,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5744680851063829,"y":3.011035193381558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5957446808510638,"y":2.9826111583236887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6170212765957447,"y":2.955061339888543,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6382978723404256,"y":3.1624829823966167,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6595744680851063,"y":2.7986299598157403,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6808510638297872,"y":2.900244790118207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7021276595744681,"y":2.876260270574993,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7234042553191489,"y":2.965888657519175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7446808510638298,"y":2.8277551515564556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7659574468085106,"y":3.125282987897761,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7872340425531915,"y":2.9859160968954854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8085106382978723,"y":2.7913740244020793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8297872340425532,"y":2.8353567243000555,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.851063829787234,"y":3.0021385978606743,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8723404255319148,"y":3.0468447524666833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8936170212765957,"y":3.1850214406023736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9148936170212766,"y":3.28260087975272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9361702127659576,"y":2.845996303663659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9574468085106382,"y":2.601088967905469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9787234042553192,"y":2.403733150735225,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":2.646601128234549,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0215045563793894,"y":1.1391274336890358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0434715587038532,"y":1.4900260834312147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0659109516682896,"y":1.7875781427245105,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0888328938238492,"y":1.820876273047719,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1122477621768179,"y":2.1866290723057697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.136166156886399,"y":2.6894574362843584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.160598906063517,"y":2.9596528052141213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1855570706728176,"y":3.3145947667952713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2110519495400849,"y":3.4329338917439447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2370950844673394,"y":3.9517476376804224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2636982654579327,"y":4.053014602461932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2908735360540096,"y":3.935259365256924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.318633198788745,"y":4.074519675409279,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3469898207558322,"y":3.778850113776904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3759562392987397,"y":3.311584461854374,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.405545567822312,"y":3.2253491460709878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4357712017293478,"y":2.7082524592135506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4666468244848405,"y":2.614779148492921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4981864138106273,"y":2.16279586772383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5304042480132534,"y":1.8358097342083954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5633149124479113,"y":1.513625049100092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.596933306121388,"y":1.3958474589098797,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.631274648437,"y":1.0872030296338004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6663544860845823,"y":0.89337287175154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7021887000786369,"y":0.7482775311760479,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7387935129478376,"y":0.6557743771471889,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.776185496079141,"y":0.5496593418073222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8143815772198288,"y":0.4708284704742347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8533990481408782,"y":0.40831511046851104,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8932555724651305,"y":0.39173670809303784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9339691936638002,"y":0.3094606243578795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9755583432249457,"y":0.28195620434853835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0180418489976,"y":0.26008860177816084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.061438943715336,"y":0.2677793824758787,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1057692737031317,"y":0.26975891060204893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.151052907771467,"y":0.2550568731761487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.197310346301688,"y":0.25354959195006177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2445625305267485,"y":0.2678598147135932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.292830852011526,"y":0.31140972431021513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3421371623370115,"y":0.34516891020104984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3925037829927507,"y":0.3845083617694969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.443953515482021,"y":0.41447377214120695,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4965096516443115,"y":0.5039584034234725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.550195984199787,"y":0.5897838385439707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6050368175205034,"y":0.7044509063790239,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6610569786332587,"y":0.8704975565731621,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0112425046914886,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.034528407708449,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0215045563793894,"y":1.092580391858686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0434715587038532,"y":1.202499327959361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0659109516682896,"y":1.3304729781571902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0888328938238492,"y":1.3021306749470778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1122477621768179,"y":1.4952018891968348,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.136166156886399,"y":1.6067978620109298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.160598906063517,"y":1.7213554482214435,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1855570706728176,"y":1.8889563311614328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2110519495400849,"y":2.2174374466378324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2370950844673394,"y":2.110477694982659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2636982654579327,"y":2.4686989054818507,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2908735360540096,"y":2.2987958267883326,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.318633198788745,"y":2.6037242249129235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3469898207558322,"y":2.8140764927899546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3759562392987397,"y":3.0163046136106453,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.405545567822312,"y":3.169923737447163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4357712017293478,"y":3.3076716860139443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4666468244848405,"y":3.229755103400957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4981864138106273,"y":3.302488449179064,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5304042480132534,"y":3.608185308750906,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5633149124479113,"y":3.4823723125912323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.596933306121388,"y":3.336265797979341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.631274648437,"y":3.3792830456734975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6663544860845823,"y":3.415607321958317,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7021887000786369,"y":3.6455035728873275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7387935129478376,"y":3.540968451507068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.776185496079141,"y":3.5780946391870714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8143815772198288,"y":3.308289264047714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8533990481408782,"y":3.312719830867707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8932555724651305,"y":3.280043490772678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9339691936638002,"y":3.01222459543902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9755583432249457,"y":2.996845062787742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0180418489976,"y":2.700400758184522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.061438943715336,"y":2.6000596147063026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1057692737031317,"y":2.453319550719535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.151052907771467,"y":2.215516043098429,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.197310346301688,"y":2.258169427905803,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2445625305267485,"y":2.0100006456198787,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.292830852011526,"y":1.9163192509025726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3421371623370115,"y":1.8204673559816882,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3925037829927507,"y":1.6821764895417444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.443953515482021,"y":1.570688497909452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4965096516443115,"y":1.3936628432782285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.550195984199787,"y":1.2621355595536696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6050368175205034,"y":1.1805262145978002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6610569786332587,"y":1.0007968726677965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.930200035878732,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9360045132969494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0215045563793894,"y":0.9995128949749725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0434715587038532,"y":1.1259655305762897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0659109516682896,"y":1.107892404768735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0888328938238492,"y":1.1943632678774623,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1122477621768179,"y":1.363262184880154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.136166156886399,"y":1.3165535200952347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.160598906063517,"y":1.457957399143456,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1855570706728176,"y":1.4051365400952984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2110519495400849,"y":1.5256647660168088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2370950844673394,"y":1.5376090636289887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2636982654579327,"y":1.6567490293746359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2908735360540096,"y":1.8346752434201956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.318633198788745,"y":1.682713648464679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3469898207558322,"y":1.9526979215241465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3759562392987397,"y":2.0113558282199335,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.405545567822312,"y":2.004275021127861,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4357712017293478,"y":1.99235083638327,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4666468244848405,"y":2.226299440747257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4981864138106273,"y":2.2340005335033117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5304042480132534,"y":2.3959702194881833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5633149124479113,"y":2.4434749481276468,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.596933306121388,"y":2.72051179984672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.631274648437,"y":2.5480739851578558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6663544860845823,"y":2.5113598229426795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7021887000786369,"y":2.728431490304446,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7387935129478376,"y":2.7914238725214133,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.776185496079141,"y":3.011035193381558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8143815772198288,"y":2.9826111583236887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8533990481408782,"y":2.955061339888543,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8932555724651305,"y":3.1624829823966167,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9339691936638002,"y":2.7986299598157403,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9755583432249457,"y":2.900244790118207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0180418489976,"y":2.876260270574993,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.061438943715336,"y":2.965888657519175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1057692737031317,"y":2.8277551515564556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.151052907771467,"y":3.125282987897761,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.197310346301688,"y":2.9859160968954854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2445625305267485,"y":2.7913740244020793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.292830852011526,"y":2.8353567243000555,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3421371623370115,"y":3.0021385978606743,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3925037829927507,"y":3.0468447524666833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.443953515482021,"y":3.1850214406023736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4965096516443115,"y":3.28260087975272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.550195984199787,"y":2.845996303663659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6050368175205034,"y":2.601088967905469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6610569786332587,"y":2.403733150735225,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":2.646601128234549,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0215045563793894,"y":0.130262560286638,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0434715587038532,"y":0.3987936254626789,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0659109516682896,"y":0.5808617108400164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0888328938238492,"y":0.5993178539273737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1122477621768179,"y":0.7823611215970014,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.136166156886399,"y":0.9893394767216976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.160598906063517,"y":1.08507196592054,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1855570706728176,"y":1.1983353738715918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2110519495400849,"y":1.233415257588699,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2370950844673394,"y":1.374157920984444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2636982654579327,"y":1.3994609505170392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2908735360540096,"y":1.3699767920878183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.318633198788745,"y":1.4047528686802786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3469898207558322,"y":1.3294197606479452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3759562392987397,"y":1.1974267642357452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.405545567822312,"y":1.171041206735384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4357712017293478,"y":0.9963035778883784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4666468244848405,"y":0.9611796383070652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4981864138106273,"y":0.7714017679097901,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5304042480132534,"y":0.6074856562228275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5633149124479113,"y":0.4145074685311355,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.596933306121388,"y":0.3335017282479033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.631274648437,"y":0.0836083704898036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6663544860845823,"y":-0.1127512357013981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7021887000786369,"y":-0.289981338838613,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7387935129478376,"y":-0.4219384864736647,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.776185496079141,"y":-0.5984565711818857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8143815772198288,"y":-0.7532614328793026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8533990481408782,"y":-0.8957160730913071,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8932555724651305,"y":-0.9371653278863044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9339691936638002,"y":-1.1729244183504894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9755583432249457,"y":-1.2660035238334837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0180418489976,"y":-1.3467329299477369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.061438943715336,"y":-1.317591837203102,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1057692737031317,"y":-1.310226642573713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.151052907771467,"y":-1.3662687266283358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.197310346301688,"y":-1.3721958460894292,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2445625305267485,"y":-1.3172915147519404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.292830852011526,"y":-1.1666457923555715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3421371623370115,"y":-1.063721386977548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3925037829927507,"y":-0.9557897431480744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.443953515482021,"y":-0.8807455823045526,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4965096516443115,"y":-0.6852615472067302,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.550195984199787,"y":-0.5279991845634199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6050368175205034,"y":-0.3503366358359058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6610569786332587,"y":-0.1386903267012537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0111797774387337,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0339456781535947,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0215045563793894,"y":0.0885422305056901,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0434715587038532,"y":0.1844021641280688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0659109516682896,"y":0.2855345016894857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0888328938238492,"y":0.2640019035328715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1122477621768179,"y":0.4022612406661993,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.136166156886399,"y":0.4742432929139357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.160598906063517,"y":0.5431120317675163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1855570706728176,"y":0.6360244708151211,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2110519495400849,"y":0.7963522258467084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2370950844673394,"y":0.7469143175907086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2636982654579327,"y":0.9036912529394384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2908735360540096,"y":0.8323854322627878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.318633198788745,"y":0.956942814326735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3469898207558322,"y":1.034634141261609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3759562392987397,"y":1.1040324442534066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.405545567822312,"y":1.153707530012155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4357712017293478,"y":1.1962445237516908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4666468244848405,"y":1.172406314979622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4981864138106273,"y":1.1946762598091545,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5304042480132534,"y":1.2832049614000147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5633149124479113,"y":1.247713760555619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.596933306121388,"y":1.2048521569758437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.631274648437,"y":1.2176635703303602,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6663544860845823,"y":1.2283553167304535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7021887000786369,"y":1.2934945103454278,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7387935129478376,"y":1.264400263603228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.776185496079141,"y":1.2748304350405453,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8143815772198288,"y":1.196431217125556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8533990481408782,"y":1.1977695531458796,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8932555724651305,"y":1.1878566816900615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9339691936638002,"y":1.1026788740365003,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9755583432249457,"y":1.0975600895633135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0180418489976,"y":0.993400190953026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.061438943715336,"y":0.9555343734977704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1057692737031317,"y":0.8974420261436616,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.151052907771467,"y":0.7954853529304122,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.197310346301688,"y":0.8145544974146498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2445625305267485,"y":0.6981350432748525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.292830852011526,"y":0.6504062893128402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3421371623370115,"y":0.5990932571249793,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3925037829927507,"y":0.5200884844300732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.443953515482021,"y":0.4515140569327039,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4965096516443115,"y":0.3319354203001839,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.550195984199787,"y":0.2328051747953513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6050368175205034,"y":0.1659602836482498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6610569786332587,"y":0.0007965553333443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":-0.0723556236211542,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"1"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0661349806177201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0215045563793894,"y":-0.0004872236992196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0434715587038532,"y":0.1186409169721035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0659109516682896,"y":0.1024594760003981,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0888328938238492,"y":0.1776132131509379,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1122477621768179,"y":0.3098804928953337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.136166156886399,"y":0.275017352447489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.160598906063517,"y":0.3770364144651175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1855570706728176,"y":0.340134479626377,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2110519495400849,"y":0.4224302272194484,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2370950844673394,"y":0.4302286538763697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2636982654579327,"y":0.5048572661249355,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2908735360540096,"y":0.6068674867813276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.318633198788745,"y":0.520407757217871,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3469898207558322,"y":0.6692119658524949,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3759562392987397,"y":0.6988090360731393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.405545567822312,"y":0.6952824098983544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4357712017293478,"y":0.6893152663369921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4666468244848405,"y":0.8003407634592516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4981864138106273,"y":0.8037939394577736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5304042480132534,"y":0.8737882509139321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5633149124479113,"y":0.8934211852211047,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.596933306121388,"y":1.000820024316065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.631274648437,"y":0.935337773849532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6663544860845823,"y":0.92082436857213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7021887000786369,"y":1.0037268984062273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7387935129478376,"y":1.0265518142237149,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.776185496079141,"y":1.1022839377014848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8143815772198288,"y":1.0927991444793874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8533990481408782,"y":1.083519408642124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8932555724651305,"y":1.1513574729788023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9339691936638002,"y":1.0291299973690111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9755583432249457,"y":1.0647951438156609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0180418489976,"y":1.0564909331824428,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.061438943715336,"y":1.0871767034019326,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1057692737031317,"y":1.039483164214081,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.151052907771467,"y":1.1395248352156897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.197310346301688,"y":1.093906599892844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2445625305267485,"y":1.026533956468426,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.292830852011526,"y":1.0421677579412196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3421371623370115,"y":1.0993249006534236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3925037829927507,"y":1.114106547759248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.443953515482021,"y":1.158459020744757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4965096516443115,"y":1.188636059320512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.550195984199787,"y":1.0459132008838443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6050368175205034,"y":0.9559301911508352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6610569786332587,"y":0.877023008321756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9732762236525532,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"1"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"1","y":48.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"1"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"1","y":48.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"1"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"1","y":48.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"1","col":"wave1","value":48.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.003972978012593511,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.003972978012593511,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"1","col":"wave2","value":48.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.7882429488379218,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.7882429488379218,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"1","col":"wave3","value":48.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.7823336132673232,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.7823336132673232,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/1/results.csv b/sample_data/models/1/results.csv deleted file mode 100644 index 6128cef..0000000 --- a/sample_data/models/1/results.csv +++ /dev/null @@ -1,49 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.03394567815359475,-0.06613498061772012 -0.02127659574468085,0.130262560286638,0.08854223050569018,-0.000487223699219691 -0.0425531914893617,0.39879362546267894,0.1844021641280688,0.11864091697210351 -0.06382978723404255,0.5808617108400164,0.28553450168948574,0.1024594760003981 -0.0851063829787234,0.5993178539273737,0.2640019035328715,0.17761321315093792 -0.10638297872340426,0.7823611215970014,0.4022612406661993,0.3098804928953337 -0.1276595744680851,0.9893394767216976,0.4742432929139357,0.275017352447489 -0.14893617021276595,1.0850719659205401,0.5431120317675163,0.37703641446511754 -0.1702127659574468,1.1983353738715918,0.6360244708151211,0.34013447962637705 -0.19148936170212766,1.233415257588699,0.7963522258467084,0.4224302272194484 -0.2127659574468085,1.3741579209844441,0.7469143175907086,0.43022865387636977 -0.23404255319148937,1.3994609505170392,0.9036912529394383,0.5048572661249355 -0.2553191489361702,1.3699767920878183,0.8323854322627878,0.6068674867813276 -0.2765957446808511,1.4047528686802786,0.956942814326735,0.520407757217871 -0.2978723404255319,1.3294197606479452,1.0346341412616087,0.6692119658524949 -0.3191489361702128,1.1974267642357452,1.1040324442534066,0.6988090360731393 -0.3404255319148936,1.171041206735384,1.153707530012155,0.6952824098983544 -0.36170212765957444,0.9963035778883783,1.1962445237516908,0.6893152663369921 -0.3829787234042553,0.9611796383070651,1.172406314979622,0.8003407634592516 -0.40425531914893614,0.7714017679097901,1.1946762598091545,0.8037939394577736 -0.425531914893617,0.6074856562228275,1.2832049614000147,0.8737882509139321 -0.44680851063829785,0.4145074685311355,1.247713760555619,0.8934211852211047 -0.46808510638297873,0.33350172824790336,1.2048521569758435,1.000820024316065 -0.48936170212765956,0.08360837048980366,1.2176635703303602,0.9353377738495321 -0.5106382978723404,-0.11275123570139818,1.2283553167304537,0.92082436857213 -0.5319148936170213,-0.28998133883861305,1.2934945103454278,1.0037268984062273 -0.5531914893617021,-0.4219384864736647,1.2644002636032279,1.0265518142237149 -0.5744680851063829,-0.5984565711818857,1.2748304350405453,1.1022839377014848 -0.5957446808510638,-0.7532614328793026,1.196431217125556,1.0927991444793874 -0.6170212765957447,-0.8957160730913071,1.1977695531458796,1.083519408642124 -0.6382978723404256,-0.9371653278863045,1.1878566816900615,1.1513574729788023 -0.6595744680851063,-1.1729244183504894,1.1026788740365003,1.0291299973690111 -0.6808510638297872,-1.2660035238334837,1.0975600895633135,1.0647951438156609 -0.7021276595744681,-1.3467329299477369,0.9934001909530259,1.0564909331824428 -0.7234042553191489,-1.317591837203102,0.9555343734977705,1.0871767034019326 -0.7446808510638298,-1.310226642573713,0.8974420261436616,1.039483164214081 -0.7659574468085106,-1.3662687266283358,0.7954853529304122,1.1395248352156895 -0.7872340425531915,-1.3721958460894292,0.8145544974146498,1.093906599892844 -0.8085106382978723,-1.3172915147519404,0.6981350432748525,1.026533956468426 -0.8297872340425532,-1.1666457923555715,0.6504062893128402,1.0421677579412196 -0.851063829787234,-1.063721386977548,0.5990932571249793,1.0993249006534236 -0.8723404255319148,-0.9557897431480743,0.5200884844300732,1.114106547759248 -0.8936170212765957,-0.8807455823045526,0.45151405693270397,1.158459020744757 -0.9148936170212766,-0.6852615472067302,0.33193542030018397,1.188636059320512 -0.9361702127659575,-0.5279991845634199,0.23280517479535134,1.0459132008838443 -0.9574468085106382,-0.35033663583590585,0.16596028364824988,0.9559301911508351 -0.9787234042553191,-0.1386903267012537,0.0007965553333443148,0.877023008321756 -1.0,0.011179777438733779,-0.07235562362115422,0.9732762236525532 diff --git a/sample_data/models/1/stdin.csv b/sample_data/models/1/stdin.csv deleted file mode 100644 index fdfce5a..0000000 --- a/sample_data/models/1/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,48.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,1.3674388846796228 -a1,1.2750399595893436 -a2,1.1083862509583917 diff --git a/sample_data/models/2/data_product.json b/sample_data/models/2/data_product.json deleted file mode 100644 index 1cf029b..0000000 --- a/sample_data/models/2/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0407991786655115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.2208343235516893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.3163396353640884,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.2511279354449189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.3543533635781291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.486308448223313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.5127412523812057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.5633355396237023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.543253741018887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6371792273503059,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.6247955341690135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.5674771323769776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.5849154423467866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.503291895177551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.3764977157770831,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.3671172340817358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.2213672695030774,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.2272342788267301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.0903020884282237,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0092431181772629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":-0.1268448611977332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":-0.1221846968276651,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":-0.2770378736479679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":-0.3700960859857662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.4370690164456564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":-0.4533009687872812,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":-0.510281178780181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":-0.5435389669191173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":-0.564364887247172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-0.4861269485636414,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":-0.6062266882167968,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-0.5897877339524937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":-0.5692420184107789,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":-0.4491174569361736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.3630137242852005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":-0.3543770677603546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":-0.3113192233926541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":-0.2245358245459285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":-0.0602687445863008,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0371627085601719,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0271577134152597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0211348939179798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.1200933666366019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1677256641886512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.2252337626630143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.3089575041702868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.3260163818156957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.3962917492748619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.4110005073192591,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.4648398840754864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.5219339191305583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.4544740194632587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.5450593762885046,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.5677764147690887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.5859577348556266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.6269415254852776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7342925942296752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.631034545999255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.7333631479757716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.607205930354488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.6767429570603235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.6994870721905285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.7142603468141615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.7098874307735598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.6992128904279516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6232623844341899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.5947840376345654,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.6341938415465861,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.551477720862289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.4635474942891457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.4337051471384573,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.4044112998409067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.4324795910475029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.3694673579247955,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.3493608720803498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.2440234329560506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.2222263173803994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.1931708934299817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.0930179734972541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.0772491411602849,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0330962970533324,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0181526923282535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0148203211877865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.0079295121740674,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1256987771495813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.1112309010320362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.1683073827829263,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.2242420620344505,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.2545045928868922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.2967842106773433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.28920532597096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.30277314077251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.3488727103118195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.2964453026887922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.3353660250061689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.3673787555517297,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.408255251313832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5014544920763236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4582203517796619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.5052346577619035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.608316042327146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5432639735930511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.6141376217489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.5451833959168986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.5945725797645858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.5686656960367952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6088486157454199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.6757338721314746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.5535336615531009,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.6660481617926907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.6588750011701846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.6181686149645959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.574685328334148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.6479334550010913,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.6134250472595282,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.6453522758263401,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.6268928768166202,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.6962557433483701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.5928766762843162,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.5406894052862992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.5862256250733615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5720770063447108,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0407991786655115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.2208343235516893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.3163396353640884,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.2511279354449189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.3543533635781291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.486308448223313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.5127412523812057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.5633355396237023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.543253741018887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6371792273503059,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.6247955341690135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.5674771323769776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.5849154423467866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.503291895177551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.3764977157770831,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.3671172340817358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.2213672695030774,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.2272342788267301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.0903020884282237,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0092431181772629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":-0.1268448611977332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":-0.1221846968276651,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":-0.2770378736479679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":-0.3700960859857662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.4370690164456564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":-0.4533009687872812,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":-0.510281178780181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":-0.5435389669191173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":-0.564364887247172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-0.4861269485636414,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":-0.6062266882167968,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-0.5897877339524937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":-0.5692420184107789,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":-0.4491174569361736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.3630137242852005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":-0.3543770677603546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":-0.3113192233926541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":-0.2245358245459285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":-0.0602687445863008,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0371627085601719,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0271577134152597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0211348939179798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.1200933666366019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1677256641886512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.2252337626630143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.3089575041702868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.3260163818156957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.3962917492748619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.4110005073192591,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.4648398840754864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.5219339191305583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.4544740194632587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.5450593762885046,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.5677764147690887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.5859577348556266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.6269415254852776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7342925942296752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.631034545999255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.7333631479757716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.607205930354488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.6767429570603235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.6994870721905285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.7142603468141615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.7098874307735598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.6992128904279516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6232623844341899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.5947840376345654,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.6341938415465861,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.551477720862289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.4635474942891457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.4337051471384573,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.4044112998409067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.4324795910475029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.3694673579247955,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.3493608720803498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.2440234329560506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.2222263173803994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.1931708934299817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.0930179734972541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.0772491411602849,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0330962970533324,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0181526923282535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0148203211877865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.0079295121740674,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1256987771495813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.1112309010320362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.1683073827829263,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.2242420620344505,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.2545045928868922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.2967842106773433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.28920532597096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.30277314077251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.3488727103118195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.2964453026887922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.3353660250061689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.3673787555517297,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.408255251313832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5014544920763236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4582203517796619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.5052346577619035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.608316042327146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5432639735930511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.6141376217489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.5451833959168986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.5945725797645858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.5686656960367952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6088486157454199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.6757338721314746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.5535336615531009,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.6660481617926907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.6588750011701846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.6181686149645959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.574685328334148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.6479334550010913,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.6134250472595282,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.6453522758263401,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.6268928768166202,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.6962557433483701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.5928766762843162,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.5406894052862992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.5862256250733615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5720770063447108,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0407991786655115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.2208343235516893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.3163396353640884,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.2511279354449189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.3543533635781291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.486308448223313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.5127412523812057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.5633355396237023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.543253741018887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6371792273503059,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.6247955341690135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.5674771323769776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.5849154423467866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.503291895177551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.3764977157770831,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.3671172340817358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.2213672695030774,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.2272342788267301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.0903020884282237,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0092431181772629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":-0.1268448611977332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":-0.1221846968276651,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":-0.2770378736479679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":-0.3700960859857662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.4370690164456564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":-0.4533009687872812,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":-0.510281178780181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":-0.5435389669191173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":-0.564364887247172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-0.4861269485636414,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":-0.6062266882167968,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-0.5897877339524937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":-0.5692420184107789,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":-0.4491174569361736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.3630137242852005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":-0.3543770677603546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":-0.3113192233926541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":-0.2245358245459285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":-0.0602687445863008,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0371627085601719,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0271577134152597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0211348939179798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.1200933666366019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1677256641886512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.2252337626630143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.3089575041702868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.3260163818156957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.3962917492748619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.4110005073192591,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.4648398840754864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.5219339191305583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.4544740194632587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.5450593762885046,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.5677764147690887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.5859577348556266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.6269415254852776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7342925942296752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.631034545999255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.7333631479757716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.607205930354488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.6767429570603235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.6994870721905285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.7142603468141615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.7098874307735598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.6992128904279516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6232623844341899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.5947840376345654,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.6341938415465861,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.551477720862289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.4635474942891457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.4337051471384573,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.4044112998409067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.4324795910475029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.3694673579247955,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.3493608720803498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.2440234329560506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.2222263173803994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.1931708934299817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.0930179734972541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.0772491411602849,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0330962970533324,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0181526923282535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0148203211877865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.0079295121740674,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1256987771495813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.1112309010320362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.1683073827829263,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.2242420620344505,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.2545045928868922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.2967842106773433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.28920532597096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.30277314077251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.3488727103118195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.2964453026887922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.3353660250061689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.3673787555517297,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.408255251313832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5014544920763236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4582203517796619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.5052346577619035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.608316042327146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5432639735930511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.6141376217489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.5451833959168986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.5945725797645858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.5686656960367952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6088486157454199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.6757338721314746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.5535336615531009,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.6660481617926907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.6588750011701846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.6181686149645959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.574685328334148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.6479334550010913,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.6134250472595282,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.6453522758263401,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.6268928768166202,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.6962557433483701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.5928766762843162,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.5406894052862992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.5862256250733615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5720770063447108,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":1.0416429004224332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":1.2471167955659432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":1.3720961888865344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":1.2854745315677838,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":1.4252587320326304,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":1.6263015486791426,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":1.6698624410064684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.7565216874636618,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":1.7215993974978803,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.8911388757407996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":1.8678640040195904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":1.7638115703984498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.7948392118315242,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":1.6541576313556916,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":1.4571722109142502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.4435671444641,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":1.2477816185546724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":1.2551238824488284,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":1.0945048710255656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.9907994681284674,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.880870319163558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.8849848995035192,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.7580257873650191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.6906679639367987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6459268502968657,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.6355268311001728,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.6003267559337292,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.580689570538747,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.5687212341884239,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.6150037285176686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.5454049742636744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.5544449620852737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.565954259068749,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.638191134315982,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.6955768871380088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.7016103628234586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.732480013789142,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.7988869564248087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.9415114734700688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0378618761122047,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0275298452261903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":1.021359817572886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":1.1276021270827201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":1.1826121332828703,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":1.2526154967041976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":1.36200448976272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":1.3854380646779183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":1.4863028820903195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.5083261217607544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":1.5917593024696404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.6852837026054552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":1.5753445645023019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":1.7247107862614561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.76433952714461,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":1.796710934568433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":1.8718767280476623,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":2.084007232198097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":1.879554058913488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":2.0820711593602224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":1.8352962825525911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.9674591861132285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":2.0127200625642017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":2.0426752521025477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":2.0337623067108916,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":2.0121682870767184,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":1.8650024829477894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":1.8126394407852824,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":1.885501515622661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":1.735816175360752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":1.5897034577673153,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.5429638537311072,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":1.498420120190522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":1.5410740232652056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":1.4469636956240095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":1.4181608726748922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":1.2763742393604818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":1.2488539832458119,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":1.2130900849317356,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":1.097481460670834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":1.0803111928512705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9674453929626659,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.9820110753524836,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":1.0149306866912216,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":1.0079610340182577,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":1.133940548029612,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":1.1176529442810506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":1.1833002808853386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":1.2513738928801703,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":1.2898224753384109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.345524918207921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":1.3353658856788175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.3536073512898408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":1.417468749702958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":1.345068986328188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.3984521600160642,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":1.4439447176353486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":1.5041910589168683,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.6511210675441013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":1.5812573975569917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":1.6573743905985023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":1.8373347982101997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.7216170139815268,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":1.8480621835285314,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":1.7249246975165784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":1.812256184432807,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":1.7659092190813461,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":1.8383135744961778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":1.9654748540485656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":1.7393885815367085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":1.946529730531431,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":1.9326169191891158,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.8555267443419412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":1.7765714022656538,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":1.911586365139594,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":1.8467457706385997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":1.9066585807063765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":1.871785665951995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":2.006226798760095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":1.8091853774945668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":1.717190294272271,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":1.7971923203282902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.7719435700732817,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":1.0416429004224332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":1.2471167955659432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":1.3720961888865344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":1.2854745315677838,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":1.4252587320326304,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":1.6263015486791426,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":1.6698624410064684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.7565216874636618,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":1.7215993974978803,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.8911388757407996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":1.8678640040195904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":1.7638115703984498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":1.7948392118315242,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":1.6541576313556916,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":1.4571722109142502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":1.4435671444641,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":1.2477816185546724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":1.2551238824488284,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":1.0945048710255656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.9907994681284674,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":0.880870319163558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":0.8849848995035192,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":0.7580257873650191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":0.6906679639367987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":0.6459268502968657,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":0.6355268311001728,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":0.6003267559337292,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":0.580689570538747,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":0.5687212341884239,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.6150037285176686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":0.5454049742636744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.5544449620852737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":0.565954259068749,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":0.638191134315982,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.6955768871380088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":0.7016103628234586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":0.732480013789142,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":0.7988869564248087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":0.9415114734700688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0378618761122047,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0275298452261903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":1.021359817572886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":1.1276021270827201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":1.1826121332828703,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":1.2526154967041976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":1.36200448976272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":1.3854380646779183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":1.4863028820903195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.5083261217607544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":1.5917593024696404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.6852837026054552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":1.5753445645023019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":1.7247107862614561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":1.76433952714461,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":1.796710934568433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":1.8718767280476623,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":2.084007232198097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":1.879554058913488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":2.0820711593602224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":1.8352962825525911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.9674591861132285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":2.0127200625642017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":2.0426752521025477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":2.0337623067108916,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":2.0121682870767184,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":1.8650024829477894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":1.8126394407852824,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":1.885501515622661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":1.735816175360752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":1.5897034577673153,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":1.5429638537311072,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":1.498420120190522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":1.5410740232652056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":1.4469636956240095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":1.4181608726748922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":1.2763742393604818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":1.2488539832458119,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":1.2130900849317356,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":1.097481460670834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":1.0803111928512705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9674453929626659,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9820110753524836,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":1.0149306866912216,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":1.0079610340182577,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":1.133940548029612,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":1.1176529442810506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":1.1833002808853386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":1.2513738928801703,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":1.2898224753384109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.345524918207921,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":1.3353658856788175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.3536073512898408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":1.417468749702958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":1.345068986328188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":1.3984521600160642,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":1.4439447176353486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":1.5041910589168683,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":1.6511210675441013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":1.5812573975569917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":1.6573743905985023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":1.8373347982101997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.7216170139815268,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":1.8480621835285314,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":1.7249246975165784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":1.812256184432807,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":1.7659092190813461,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":1.8383135744961778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":1.9654748540485656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":1.7393885815367085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":1.946529730531431,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":1.9326169191891158,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":1.8555267443419412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":1.7765714022656538,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":1.911586365139594,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":1.8467457706385997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":1.9066585807063765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":1.871785665951995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":2.006226798760095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":1.8091853774945668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":1.717190294272271,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":1.7971923203282902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.7719435700732817,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":0.0407991786655115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":0.2208343235516893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":0.3163396353640884,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":0.2511279354449189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.3543533635781291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":0.486308448223313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":0.5127412523812057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.5633355396237023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":0.543253741018887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.6371792273503059,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":0.6247955341690135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":0.5674771323769776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":0.5849154423467866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":0.503291895177551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":0.3764977157770831,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.3671172340817358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":0.2213672695030774,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":0.2272342788267301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":0.0903020884282237,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":-0.0092431181772629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":-0.1268448611977332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":-0.1221846968276651,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":-0.2770378736479679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":-0.3700960859857662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":-0.4370690164456564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":-0.4533009687872812,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":-0.510281178780181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":-0.5435389669191173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":-0.564364887247172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":-0.4861269485636414,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":-0.6062266882167968,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":-0.5897877339524937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":-0.5692420184107789,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":-0.4491174569361736,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":-0.3630137242852005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":-0.3543770677603546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":-0.3113192233926541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":-0.2245358245459285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":-0.0602687445863008,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0371627085601719,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0271577134152597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":0.0211348939179798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":0.1200933666366019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":0.1677256641886512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":0.2252337626630143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.3089575041702868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":0.3260163818156957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":0.3962917492748619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.4110005073192591,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":0.4648398840754864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.5219339191305583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":0.4544740194632587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":0.5450593762885046,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":0.5677764147690887,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":0.5859577348556266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":0.6269415254852776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.7342925942296752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":0.631034545999255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":0.7333631479757716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":0.607205930354488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.6767429570603235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":0.6994870721905285,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":0.7142603468141615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":0.7098874307735598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":0.6992128904279516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":0.6232623844341899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":0.5947840376345654,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":0.6341938415465861,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":0.551477720862289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":0.4635474942891457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.4337051471384573,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":0.4044112998409067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.4324795910475029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":0.3694673579247955,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":0.3493608720803498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.2440234329560506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":0.2222263173803994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":0.1931708934299817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":0.0930179734972541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":0.0772491411602849,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":-0.0330962970533324,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"2"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0181526923282535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":0.0148203211877865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":0.0079295121740674,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":0.1256987771495813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":0.1112309010320362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.1683073827829263,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":0.2242420620344505,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":0.2545045928868922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.2967842106773433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":0.28920532597096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.30277314077251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":0.3488727103118195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":0.2964453026887922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":0.3353660250061689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":0.3673787555517297,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":0.408255251313832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.5014544920763236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":0.4582203517796619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":0.5052346577619035,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":0.608316042327146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.5432639735930511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":0.6141376217489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":0.5451833959168986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":0.5945725797645858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":0.5686656960367952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":0.6088486157454199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":0.6757338721314746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":0.5535336615531009,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":0.6660481617926907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":0.6588750011701846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.6181686149645959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":0.574685328334148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.6479334550010913,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":0.6134250472595282,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":0.6453522758263401,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.6268928768166202,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":0.6962557433483701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":0.5928766762843162,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":0.5406894052862992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":0.5862256250733615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.5720770063447108,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"2"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"2","y":41.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"2"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"2","y":41.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"2"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"2","y":41.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"2","col":"wave1","value":41.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.002772993018797496,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.002772993018797496,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"2","col":"wave2","value":41.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.42998445223084275,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.42998445223084275,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"2","col":"wave3","value":41.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.4475690672475649,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.4475690672475649,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/2/results.csv b/sample_data/models/2/results.csv deleted file mode 100644 index 615ea18..0000000 --- a/sample_data/models/2/results.csv +++ /dev/null @@ -1,42 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.02715771341525975,-0.01815269232825359 -0.025,0.04079917866551152,0.021134893917979868,0.014820321187786544 -0.05,0.22083432355168933,0.12009336663660194,0.007929512174067496 -0.07500000000000001,0.3163396353640884,0.16772566418865123,0.12569877714958133 -0.1,0.2511279354449189,0.22523376266301431,0.11123090103203621 -0.125,0.3543533635781291,0.3089575041702868,0.16830738278292634 -0.15000000000000002,0.486308448223313,0.32601638181569575,0.22424206203445057 -0.17500000000000002,0.5127412523812057,0.39629174927486194,0.2545045928868922 -0.2,0.5633355396237023,0.41100050731925913,0.29678421067734334 -0.225,0.543253741018887,0.4648398840754864,0.28920532597096 -0.25,0.6371792273503059,0.5219339191305583,0.30277314077251005 -0.275,0.6247955341690135,0.4544740194632587,0.34887271031181954 -0.30000000000000004,0.5674771323769776,0.5450593762885046,0.29644530268879227 -0.325,0.5849154423467866,0.5677764147690887,0.33536602500616897 -0.35000000000000003,0.503291895177551,0.5859577348556266,0.3673787555517297 -0.375,0.37649771577708313,0.6269415254852776,0.408255251313832 -0.4,0.3671172340817358,0.7342925942296752,0.5014544920763236 -0.42500000000000004,0.22136726950307747,0.631034545999255,0.4582203517796619 -0.45,0.22723427882673017,0.7333631479757716,0.5052346577619035 -0.47500000000000003,0.09030208842822371,0.607205930354488,0.608316042327146 -0.5,-0.009243118177262956,0.6767429570603235,0.5432639735930511 -0.525,-0.12684486119773328,0.6994870721905285,0.6141376217489 -0.55,-0.12218469682766514,0.7142603468141615,0.5451833959168986 -0.5750000000000001,-0.27703787364796795,0.7098874307735598,0.5945725797645858 -0.6000000000000001,-0.37009608598576627,0.6992128904279516,0.5686656960367952 -0.625,-0.43706901644565643,0.6232623844341899,0.6088486157454199 -0.65,-0.4533009687872812,0.5947840376345654,0.6757338721314746 -0.675,-0.510281178780181,0.6341938415465861,0.5535336615531009 -0.7000000000000001,-0.5435389669191173,0.551477720862289,0.6660481617926907 -0.7250000000000001,-0.564364887247172,0.4635474942891457,0.6588750011701846 -0.75,-0.4861269485636414,0.4337051471384573,0.6181686149645959 -0.775,-0.6062266882167968,0.40441129984090673,0.574685328334148 -0.8,-0.5897877339524937,0.4324795910475029,0.6479334550010913 -0.8250000000000001,-0.5692420184107789,0.36946735792479557,0.6134250472595282 -0.8500000000000001,-0.44911745693617366,0.3493608720803498,0.6453522758263401 -0.875,-0.3630137242852005,0.2440234329560506,0.6268928768166202 -0.9,-0.35437706776035466,0.22222631738039944,0.6962557433483701 -0.925,-0.3113192233926541,0.19317089342998175,0.5928766762843162 -0.9500000000000001,-0.22453582454592858,0.0930179734972541,0.5406894052862992 -0.9750000000000001,-0.060268744586300854,0.07724914116028495,0.5862256250733615 -1.0,0.03716270856017197,-0.03309629705333248,0.5720770063447108 diff --git a/sample_data/models/2/stdin.csv b/sample_data/models/2/stdin.csv deleted file mode 100644 index 97e260a..0000000 --- a/sample_data/models/2/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,41.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,0.5932093286071645 -a1,0.6934872085596122 -a2,0.6478761127494356 diff --git a/sample_data/models/3/data_product.json b/sample_data/models/3/data_product.json deleted file mode 100644 index 686e2da..0000000 --- a/sample_data/models/3/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0522430276245277,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.24367842643473,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.3504925547733013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.2964421204046474,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.4106132931575439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.5532158279514248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.5898980772013269,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.6502259828543986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.639225938766388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.7414280975342212,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.7363477955625273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.6851796700231279,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.7074281010780148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6290856739311084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.5038591846488989,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.494159807704785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.3460497497958895,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.3473868340191043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.2036595710950948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.0949991147592897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0340464772201969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":-0.0431151660028504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":-0.2138823407478471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":-0.3248807100618958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":-0.4116005573617508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":-0.4491068092229924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":-0.5285516045748566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.5850735762387065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":-0.6295249905792191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":-0.5747957551015438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":-0.7177789496103106,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":-0.7230703352446568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":-0.7225667715574609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":-0.6202670696008384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.5492615921824617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":-0.5525211806758044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":-0.5177300923487865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":-0.4352179406219017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":-0.2709346795625062,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":-0.1689931580842354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.0770845195212934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0332754853644348,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0116080661533359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0528489375830636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1047007991108659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.1835651507480615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.1966179302422352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.2637912265387732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.2763465079007247,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.3290189851116146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.3859637232404084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.3193958730169476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.4119308136511227,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.4376633814533973,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.459926644558908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.506051207648833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6195861900305437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.5235314115515323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.6340508239750644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.517032237437899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.5966082757732003,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.6302368656501598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.6566779829427255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.6646873593438737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":0.6670342281347579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":0.6046629587824877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":0.5902349376392606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":0.6440745200815469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":0.5760716900014097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":0.5030386511692984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.4881747637686498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.4738357059100865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.5167285741737636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.4683033009715655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.4624386421723764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.3708910316929044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.3623262965023173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.3458425348754825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.2575002274402682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.2526843102630492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.1523418557501688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.1218410195223988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.074679474574499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.0127773351534244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0243486240392791,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0234701170101361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0324834647991835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.0876756447766261,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.1175862087311571,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.1599134129775875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.152789533572822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.1672264410895165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.2146146244437513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.1638995162153627,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.2049590882314867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.2395387571063287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.2834104691407874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.3800320259357089,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.3406447415009145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.3919264915561947,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.4996905595412503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.4397296663421929,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.5160948399083661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.4530229599806255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.508674406093294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.4893974390184164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5365643313764709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":0.6107727074996143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":0.4962185746583886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":0.6166846760880722,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":0.6177499991305739,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":0.5855491749087177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":0.5508176086242486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.6330416296329291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.6077102967289918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.6489918370199135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.6400391555210825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.7190354928109561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.6253902450785271,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.5830100575510886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.6383989359950515,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.6341203355422597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.6832160514555794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.6476187813096891,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.6128070468682548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.6557497403789844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.5093191479106023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5215284085340117,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0522430276245277,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.24367842643473,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.3504925547733013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.2964421204046474,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.4106132931575439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.5532158279514248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.5898980772013269,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.6502259828543986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.639225938766388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.7414280975342212,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.7363477955625273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.6851796700231279,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.7074281010780148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6290856739311084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.5038591846488989,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.494159807704785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.3460497497958895,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.3473868340191043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.2036595710950948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.0949991147592897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0340464772201969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":-0.0431151660028504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":-0.2138823407478471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":-0.3248807100618958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":-0.4116005573617508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":-0.4491068092229924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":-0.5285516045748566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.5850735762387065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":-0.6295249905792191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":-0.5747957551015438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":-0.7177789496103106,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":-0.7230703352446568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":-0.7225667715574609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":-0.6202670696008384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.5492615921824617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":-0.5525211806758044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":-0.5177300923487865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":-0.4352179406219017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":-0.2709346795625062,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":-0.1689931580842354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.0770845195212934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0332754853644348,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0116080661533359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0528489375830636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1047007991108659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.1835651507480615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.1966179302422352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.2637912265387732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.2763465079007247,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.3290189851116146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.3859637232404084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.3193958730169476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.4119308136511227,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.4376633814533973,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.459926644558908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.506051207648833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6195861900305437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.5235314115515323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.6340508239750644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.517032237437899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.5966082757732003,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.6302368656501598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.6566779829427255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.6646873593438737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":0.6670342281347579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":0.6046629587824877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":0.5902349376392606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":0.6440745200815469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":0.5760716900014097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":0.5030386511692984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.4881747637686498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.4738357059100865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.5167285741737636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.4683033009715655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.4624386421723764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.3708910316929044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.3623262965023173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.3458425348754825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.2575002274402682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.2526843102630492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.1523418557501688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.1218410195223988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.074679474574499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.0127773351534244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0243486240392791,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0234701170101361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0324834647991835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.0876756447766261,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.1175862087311571,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.1599134129775875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.152789533572822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.1672264410895165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.2146146244437513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.1638995162153627,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.2049590882314867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.2395387571063287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.2834104691407874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.3800320259357089,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.3406447415009145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.3919264915561947,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.4996905595412503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.4397296663421929,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.5160948399083661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.4530229599806255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.508674406093294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.4893974390184164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5365643313764709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":0.6107727074996143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":0.4962185746583886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":0.6166846760880722,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":0.6177499991305739,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":0.5855491749087177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":0.5508176086242486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.6330416296329291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.6077102967289918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.6489918370199135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.6400391555210825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.7190354928109561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.6253902450785271,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.5830100575510886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.6383989359950515,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.6341203355422597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.6832160514555794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.6476187813096891,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.6128070468682548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.6557497403789844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.5093191479106023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5215284085340117,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0522430276245277,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.24367842643473,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.3504925547733013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.2964421204046474,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.4106132931575439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.5532158279514248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.5898980772013269,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.6502259828543986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.639225938766388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.7414280975342212,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.7363477955625273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.6851796700231279,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.7074281010780148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6290856739311084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.5038591846488989,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.494159807704785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.3460497497958895,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.3473868340191043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.2036595710950948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.0949991147592897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0340464772201969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":-0.0431151660028504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":-0.2138823407478471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":-0.3248807100618958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":-0.4116005573617508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":-0.4491068092229924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":-0.5285516045748566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.5850735762387065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":-0.6295249905792191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":-0.5747957551015438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":-0.7177789496103106,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":-0.7230703352446568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":-0.7225667715574609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":-0.6202670696008384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.5492615921824617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":-0.5525211806758044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":-0.5177300923487865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":-0.4352179406219017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":-0.2709346795625062,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":-0.1689931580842354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.0770845195212934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0332754853644348,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0116080661533359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0528489375830636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1047007991108659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.1835651507480615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.1966179302422352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.2637912265387732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.2763465079007247,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.3290189851116146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.3859637232404084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.3193958730169476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.4119308136511227,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.4376633814533973,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.459926644558908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.506051207648833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.6195861900305437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.5235314115515323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.6340508239750644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.517032237437899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.5966082757732003,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.6302368656501598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.6566779829427255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.6646873593438737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":0.6670342281347579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":0.6046629587824877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":0.5902349376392606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":0.6440745200815469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":0.5760716900014097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":0.5030386511692984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.4881747637686498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.4738357059100865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.5167285741737636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.4683033009715655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.4624386421723764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.3708910316929044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.3623262965023173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.3458425348754825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.2575002274402682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.2526843102630492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.1523418557501688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.1218410195223988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.074679474574499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.0127773351534244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0243486240392791,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0234701170101361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0324834647991835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.0876756447766261,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.1175862087311571,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.1599134129775875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.152789533572822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.1672264410895165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.2146146244437513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.1638995162153627,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.2049590882314867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.2395387571063287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.2834104691407874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.3800320259357089,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.3406447415009145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.3919264915561947,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.4996905595412503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.4397296663421929,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.5160948399083661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.4530229599806255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.508674406093294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.4893974390184164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5365643313764709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":0.6107727074996143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":0.4962185746583886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":0.6166846760880722,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":0.6177499991305739,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":0.5855491749087177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":0.5508176086242486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.6330416296329291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.6077102967289918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.6489918370199135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.6400391555210825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.7190354928109561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.6253902450785271,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.5830100575510886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.6383989359950515,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.6341203355422597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.6832160514555794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.6476187813096891,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.6128070468682548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.6557497403789844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.5093191479106023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5215284085340117,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":1.0536317730277867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":1.275933957878615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":1.4197666892563543,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":1.3450647059432899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":1.5077421895866234,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":1.7388358332447678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":1.803804557219615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":1.9159737573134976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":1.8950134549874036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":2.0989308531432966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":2.088294690925697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":1.984128291890033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":2.0287667600423323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.8758946155592138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.655096283782556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.6391204839469378,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.4134729340584682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.415364130481233,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.2258807571696537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.099657881663748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.9665265821247944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":0.957801077593397,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":0.8074433826184535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":0.7226135490263855,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":0.6625888894537443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":0.6381979296283122,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":0.5894581201241068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.5570648735661994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.5328448472247168,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.5628198101434372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.4878345587273229,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.48526005530345806,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.48550447618173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.5378007881715037,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.5773759919593391,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.5754970477756718,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.595871587498216,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.6471236171847656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.7626663124752365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.8445146814645803,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.9258116011462749,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9672720535872759,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.011675701203941,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":1.054270372459034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":1.1103783344646159,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":1.2014932410452515,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":1.2172788664054313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":1.3018563748659295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":1.3183045878487785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":1.3896042371287236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":1.4710313055977655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":1.376296055548567,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":1.5097299800102033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":1.5490833694523658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":1.5839577888104535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":1.658728272150434,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.8581589580283746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.6879780820999686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.8852318750569255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.6770431910150603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.8159491447109728,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.878055373391093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.9283755854407754,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.9438826895658217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":1.9484500846252086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":1.830635105412213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":1.8044122899675197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":1.9042238925511594,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":1.7790360808300911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":1.6537387788850233,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":1.629339574616544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":1.6061430855328176,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":1.6765340119189867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":1.5972817863439843,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":1.5879416886743443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":1.44902516696402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":1.4366676451156868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":1.4131800717207108,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":1.2936921052179617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":1.2874767694702207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":1.1645582793358058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":1.1295745072100394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":1.0775387169716617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.9873039484292204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0246474723713406,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.9768031640317587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":1.0330168118623209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":1.0916339874127663,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":1.1247785914994124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":1.1734092645786842,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":1.1650797429657938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":1.1820218933315858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":1.239384176554644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":1.1780959296072382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":1.2274748457691607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":1.2706629308898996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":1.3276500093465615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":1.4623314212163856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":1.4058537106570657,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.4798289274825118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.6482111685609626,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.5522875262204845,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.6754718714614785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.5730603035336423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.6630851575628685,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.6313329461625894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.7101213473792594,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":1.8418540635070664,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":1.6424985271409513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":1.85277529806354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":1.854750154024151,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":1.795977020378575,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":1.734670719966564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":1.8833302694212237,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":1.8362221777603391,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":1.9136106248069398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":1.896555138455822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":2.0524526503286813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":1.868975173499825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":1.7914226084922678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":1.8934469214614764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":1.885362925033779,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":1.9802360434319939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":1.9109849338339084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":1.8456048336158386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":1.926586415663728,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":1.6641577638496012,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.6846004407501858,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":1.0536317730277867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":1.275933957878615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":1.4197666892563543,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":1.3450647059432899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":1.5077421895866234,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":1.7388358332447678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":1.803804557219615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":1.9159737573134976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":1.8950134549874036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":2.0989308531432966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":2.088294690925697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":1.984128291890033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":2.0287667600423323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.8758946155592138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":1.655096283782556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":1.6391204839469378,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":1.4134729340584682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":1.415364130481233,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":1.2258807571696537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":1.099657881663748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.9665265821247944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":0.957801077593397,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":0.8074433826184535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":0.7226135490263855,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":0.6625888894537443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":0.6381979296283122,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":0.5894581201241068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":0.5570648735661994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":0.5328448472247168,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":0.5628198101434372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":0.4878345587273229,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":0.48526005530345806,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":0.48550447618173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":0.5378007881715037,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":0.5773759919593391,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":0.5754970477756718,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":0.595871587498216,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":0.6471236171847656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":0.7626663124752365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":0.8445146814645803,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":0.9258116011462749,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9672720535872759,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.011675701203941,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":1.054270372459034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":1.1103783344646159,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":1.2014932410452515,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":1.2172788664054313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":1.3018563748659295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":1.3183045878487785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":1.3896042371287236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":1.4710313055977655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":1.376296055548567,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":1.5097299800102033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":1.5490833694523658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":1.5839577888104535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":1.658728272150434,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.8581589580283746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":1.6879780820999686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":1.8852318750569255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":1.6770431910150603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":1.8159491447109728,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":1.878055373391093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":1.9283755854407754,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.9438826895658217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":1.9484500846252086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":1.830635105412213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":1.8044122899675197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":1.9042238925511594,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":1.7790360808300911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":1.6537387788850233,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":1.629339574616544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":1.6061430855328176,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":1.6765340119189867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":1.5972817863439843,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":1.5879416886743443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":1.44902516696402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":1.4366676451156868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":1.4131800717207108,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":1.2936921052179617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":1.2874767694702207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":1.1645582793358058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":1.1295745072100394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":1.0775387169716617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":0.9873039484292204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0246474723713406,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9768031640317587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":1.0330168118623209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":1.0916339874127663,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":1.1247785914994124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":1.1734092645786842,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":1.1650797429657938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":1.1820218933315858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":1.239384176554644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":1.1780959296072382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":1.2274748457691607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":1.2706629308898996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":1.3276500093465615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":1.4623314212163856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":1.4058537106570657,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.4798289274825118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":1.6482111685609626,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":1.5522875262204845,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":1.6754718714614785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":1.5730603035336423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":1.6630851575628685,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":1.6313329461625894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.7101213473792594,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":1.8418540635070664,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":1.6424985271409513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":1.85277529806354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":1.854750154024151,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":1.795977020378575,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":1.734670719966564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":1.8833302694212237,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":1.8362221777603391,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":1.9136106248069398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":1.896555138455822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":2.0524526503286813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":1.868975173499825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":1.7914226084922678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":1.8934469214614764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":1.885362925033779,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":1.9802360434319939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":1.9109849338339084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":1.8456048336158386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":1.926586415663728,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":1.6641577638496012,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.6846004407501858,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":0.0522430276245277,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":0.24367842643473,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":0.3504925547733013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":0.2964421204046474,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":0.4106132931575439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":0.5532158279514248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.5898980772013269,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":0.6502259828543986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":0.639225938766388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":0.7414280975342212,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":0.7363477955625273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":0.6851796700231279,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":0.7074281010780148,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.6290856739311084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":0.5038591846488989,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":0.494159807704785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":0.3460497497958895,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":0.3473868340191043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":0.2036595710950948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":0.0949991147592897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":-0.0340464772201969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":-0.0431151660028504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":-0.2138823407478471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":-0.3248807100618958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":-0.4116005573617508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":-0.4491068092229924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":-0.5285516045748566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":-0.5850735762387065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":-0.6295249905792191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":-0.5747957551015438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":-0.7177789496103106,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":-0.7230703352446568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":-0.7225667715574609,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":-0.6202670696008384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":-0.5492615921824617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":-0.5525211806758044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":-0.5177300923487865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":-0.4352179406219017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":-0.2709346795625062,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":-0.1689931580842354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":-0.0770845195212934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":-0.0332754853644348,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0116080661533359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":0.0528489375830636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":0.1047007991108659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":0.1835651507480615,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":0.1966179302422352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":0.2637912265387732,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":0.2763465079007247,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.3290189851116146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":0.3859637232404084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":0.3193958730169476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":0.4119308136511227,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":0.4376633814533973,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":0.459926644558908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":0.506051207648833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.6195861900305437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":0.5235314115515323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":0.6340508239750644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":0.517032237437899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":0.5966082757732003,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":0.6302368656501598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":0.6566779829427255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.6646873593438737,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":0.6670342281347579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":0.6046629587824877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":0.5902349376392606,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":0.6440745200815469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":0.5760716900014097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":0.5030386511692984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":0.4881747637686498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":0.4738357059100865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":0.5167285741737636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":0.4683033009715655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":0.4624386421723764,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":0.3708910316929044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":0.3623262965023173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":0.3458425348754825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":0.2575002274402682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":0.2526843102630492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":0.1523418557501688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":0.1218410195223988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":0.074679474574499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":-0.0127773351534244,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0243486240392791,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"3"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0234701170101361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":0.0324834647991835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":0.0876756447766261,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":0.1175862087311571,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":0.1599134129775875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":0.152789533572822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":0.1672264410895165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.2146146244437513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":0.1638995162153627,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":0.2049590882314867,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":0.2395387571063287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":0.2834104691407874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":0.3800320259357089,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":0.3406447415009145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.3919264915561947,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":0.4996905595412503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":0.4397296663421929,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":0.5160948399083661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":0.4530229599806255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":0.508674406093294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":0.4893974390184164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.5365643313764709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":0.6107727074996143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":0.4962185746583886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":0.6166846760880722,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":0.6177499991305739,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":0.5855491749087177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":0.5508176086242486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":0.6330416296329291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":0.6077102967289918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":0.6489918370199135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":0.6400391555210825,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":0.7190354928109561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":0.6253902450785271,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":0.5830100575510886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":0.6383989359950515,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":0.6341203355422597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":0.6832160514555794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":0.6476187813096891,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":0.6128070468682548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":0.6557497403789844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":0.5093191479106023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.5215284085340117,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"3"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"3","y":43.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"3"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"3","y":43.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"3"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"3","y":43.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"3","col":"wave1","value":43.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.002501742833058647,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.002501742833058647,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"3","col":"wave2","value":43.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.3889794513017544,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.3889794513017544,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"3","col":"wave3","value":43.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.4463761490366382,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.4463761490366382,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/3/results.csv b/sample_data/models/3/results.csv deleted file mode 100644 index 3c01ac3..0000000 --- a/sample_data/models/3/results.csv +++ /dev/null @@ -1,44 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.01160806615333599,-0.023470117010136196 -0.023809523809523808,0.05224302762452778,0.052848937583063665,0.03248346479918351 -0.047619047619047616,0.24367842643473,0.10470079911086594,0.0876756447766261 -0.07142857142857142,0.3504925547733013,0.18356515074806157,0.1175862087311571 -0.09523809523809523,0.2964421204046474,0.19661793024223523,0.15991341297758757 -0.11904761904761904,0.4106132931575439,0.2637912265387732,0.15278953357282204 -0.14285714285714285,0.5532158279514248,0.2763465079007247,0.1672264410895165 -0.16666666666666666,0.5898980772013269,0.32901898511161465,0.21461462444375135 -0.19047619047619047,0.6502259828543986,0.3859637232404084,0.16389951621536275 -0.21428571428571427,0.639225938766388,0.31939587301694766,0.20495908823148679 -0.23809523809523808,0.7414280975342212,0.4119308136511227,0.23953875710632871 -0.26190476190476186,0.7363477955625273,0.43766338145339734,0.2834104691407874 -0.2857142857142857,0.6851796700231279,0.459926644558908,0.38003202593570895 -0.30952380952380953,0.7074281010780148,0.506051207648833,0.3406447415009145 -0.3333333333333333,0.6290856739311084,0.6195861900305437,0.39192649155619474 -0.3571428571428571,0.5038591846488989,0.5235314115515323,0.4996905595412503 -0.38095238095238093,0.494159807704785,0.6340508239750644,0.4397296663421929 -0.40476190476190477,0.34604974979588954,0.517032237437899,0.5160948399083661 -0.42857142857142855,0.3473868340191043,0.5966082757732003,0.45302295998062553 -0.45238095238095233,0.20365957109509483,0.6302368656501598,0.508674406093294 -0.47619047619047616,0.09499911475928974,0.6566779829427255,0.4893974390184164 -0.5,-0.034046477220196984,0.6646873593438737,0.5365643313764709 -0.5238095238095237,-0.043115166002850466,0.6670342281347579,0.6107727074996143 -0.5476190476190476,-0.2138823407478471,0.6046629587824877,0.4962185746583886 -0.5714285714285714,-0.32488071006189584,0.5902349376392606,0.6166846760880722 -0.5952380952380952,-0.4116005573617508,0.6440745200815469,0.6177499991305739 -0.6190476190476191,-0.44910680922299245,0.5760716900014097,0.5855491749087177 -0.6428571428571428,-0.5285516045748566,0.5030386511692984,0.5508176086242486 -0.6666666666666666,-0.5850735762387065,0.4881747637686498,0.6330416296329291 -0.6904761904761905,-0.6295249905792191,0.4738357059100865,0.6077102967289918 -0.7142857142857142,-0.5747957551015438,0.5167285741737636,0.6489918370199135 -0.738095238095238,-0.7177789496103106,0.4683033009715655,0.6400391555210825 -0.7619047619047619,-0.7230703352446568,0.4624386421723764,0.7190354928109561 -0.7857142857142857,-0.7225667715574609,0.3708910316929044,0.6253902450785271 -0.8095238095238095,-0.6202670696008384,0.3623262965023173,0.5830100575510886 -0.8333333333333333,-0.5492615921824617,0.34584253487548255,0.6383989359950515 -0.8571428571428571,-0.5525211806758044,0.25750022744026824,0.6341203355422597 -0.8809523809523809,-0.5177300923487865,0.2526843102630492,0.6832160514555794 -0.9047619047619047,-0.4352179406219017,0.15234185575016884,0.6476187813096891 -0.9285714285714285,-0.2709346795625062,0.12184101952239884,0.6128070468682548 -0.9523809523809523,-0.1689931580842354,0.07467947457449901,0.6557497403789844 -0.9761904761904762,-0.07708451952129342,-0.012777335153424454,0.5093191479106023 -1.0,-0.03327548536443489,0.02434862403927917,0.5215284085340117 diff --git a/sample_data/models/3/stdin.csv b/sample_data/models/3/stdin.csv deleted file mode 100644 index 3c91a44..0000000 --- a/sample_data/models/3/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,43.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,0.6994139019151367 -a1,0.629126030354231 -a2,0.6391452060790518 diff --git a/sample_data/models/4/data_product.json b/sample_data/models/4/data_product.json deleted file mode 100644 index 1fab5ea..0000000 --- a/sample_data/models/4/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.1305046401982553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.3980364004388828,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.5766750243727928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.5881863152941194,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.7598352383233092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.9502295083910576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":1.023678221804459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.1087074544126814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":1.1096317346458724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.2106171939114083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":1.1911735277959987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":1.1128490471659565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.09585241177004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.9672129553452956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.7819795905222634,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7041756139309362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4817026585117817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.4044363557139236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.1800075499609676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0092431181772628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":-0.216550322730477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":-0.2993867737148588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":-0.5373732626566725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":-0.7071544658349668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.8425508911908366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":-0.917222028955026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":-1.0212181482034344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":-1.0889108817080964,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":-1.1307428808741575,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.059564915124744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":-1.172604681843782,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-1.1351596487414726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":-1.0801789878340324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":-0.913038517103918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.7684955990303809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":-0.6914354476095551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":-0.5716546124013586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":-0.4017379014331221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":-0.1499742061190443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0371627085601718,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0271577134152597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0634112054117937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.2043853421055701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.2935136155740814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.3917421654158768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.5151597786179476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.5706412223669708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.6778309624417385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.7277183102312748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.8147836061583315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.9029460409694962,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.864205474627765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.9809840341079552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.027206654768368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":1.0660610168290814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":1.1247578530489994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.2467527641835066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":1.1549790709851315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":1.2655617357679212,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":1.1443773996851827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.2155754671934995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":1.236658541521223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":1.2464589346063109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":1.2338319557594366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":1.2116730603817831,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":1.1210787119979118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":1.0748873196080204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":1.0936240815458655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.9874023786817396,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.8732789494536519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.8147172689773954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.7543550219237519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.7491973939595185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.6510065710916721,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.5939857126316248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.4502257074037115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.388734720133262,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.318958844815412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.1773099489662223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.1195254526540986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0330962970533324,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0181526923282535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.011630191944908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.0015579976108221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1161633411445084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.0985576795524255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.1525311122479487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.2054059841050473,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.232660335943388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.2719916483096448,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.261532412869207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.2722957264679939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.3156743312786898,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.2606169533763877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.2970059084295569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.3265920141240676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.3651536786583215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.4561562266076598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4108495528948506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.455921165527984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.5571950215985928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.4904755435343026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.5598264717774684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.4894983891197337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.5376663448747016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.5106942090885207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.5499707725549318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.6161110527744094,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.4933292880329848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.6054272501125876,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.5980037090353019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5572137863555635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.5138140361992652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.5873125433209883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.5532206737394121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.5857294564692748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.5680150336261321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.6382842564000957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.5359704413944318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.4850043984891344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.5319144751019299,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5192885762859623,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.1305046401982553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.3980364004388828,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.5766750243727928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.5881863152941194,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.7598352383233092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.9502295083910576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":1.023678221804459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.1087074544126814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":1.1096317346458724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.2106171939114083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":1.1911735277959987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":1.1128490471659565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.09585241177004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.9672129553452956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.7819795905222634,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7041756139309362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4817026585117817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.4044363557139236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.1800075499609676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0092431181772628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":-0.216550322730477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":-0.2993867737148588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":-0.5373732626566725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":-0.7071544658349668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.8425508911908366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":-0.917222028955026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":-1.0212181482034344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":-1.0889108817080964,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":-1.1307428808741575,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.059564915124744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":-1.172604681843782,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-1.1351596487414726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":-1.0801789878340324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":-0.913038517103918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.7684955990303809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":-0.6914354476095551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":-0.5716546124013586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":-0.4017379014331221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":-0.1499742061190443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0371627085601718,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0271577134152597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0634112054117937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.2043853421055701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.2935136155740814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.3917421654158768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.5151597786179476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.5706412223669708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.6778309624417385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.7277183102312748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.8147836061583315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.9029460409694962,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.864205474627765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.9809840341079552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.027206654768368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":1.0660610168290814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":1.1247578530489994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.2467527641835066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":1.1549790709851315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":1.2655617357679212,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":1.1443773996851827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.2155754671934995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":1.236658541521223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":1.2464589346063109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":1.2338319557594366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":1.2116730603817831,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":1.1210787119979118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":1.0748873196080204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":1.0936240815458655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.9874023786817396,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.8732789494536519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.8147172689773954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.7543550219237519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.7491973939595185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.6510065710916721,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.5939857126316248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.4502257074037115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.388734720133262,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.318958844815412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.1773099489662223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.1195254526540986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0330962970533324,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0181526923282535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.011630191944908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.0015579976108221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1161633411445084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.0985576795524255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.1525311122479487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.2054059841050473,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.232660335943388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.2719916483096448,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.261532412869207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.2722957264679939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.3156743312786898,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.2606169533763877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.2970059084295569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.3265920141240676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.3651536786583215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.4561562266076598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4108495528948506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.455921165527984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.5571950215985928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.4904755435343026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.5598264717774684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.4894983891197337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.5376663448747016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.5106942090885207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.5499707725549318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.6161110527744094,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.4933292880329848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.6054272501125876,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.5980037090353019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5572137863555635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.5138140361992652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.5873125433209883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.5532206737394121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.5857294564692748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.5680150336261321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.6382842564000957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.5359704413944318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.4850043984891344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.5319144751019299,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5192885762859623,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.1305046401982553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.3980364004388828,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.5766750243727928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.5881863152941194,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.7598352383233092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.9502295083910576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":1.023678221804459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.1087074544126814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":1.1096317346458724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.2106171939114083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":1.1911735277959987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":1.1128490471659565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.09585241177004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.9672129553452956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.7819795905222634,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7041756139309362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4817026585117817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.4044363557139236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.1800075499609676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0092431181772628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":-0.216550322730477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":-0.2993867737148588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":-0.5373732626566725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":-0.7071544658349668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.8425508911908366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":-0.917222028955026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":-1.0212181482034344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":-1.0889108817080964,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":-1.1307428808741575,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.059564915124744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":-1.172604681843782,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-1.1351596487414726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":-1.0801789878340324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":-0.913038517103918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.7684955990303809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":-0.6914354476095551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":-0.5716546124013586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":-0.4017379014331221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":-0.1499742061190443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0371627085601718,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0271577134152597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.0634112054117937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.2043853421055701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.2935136155740814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.3917421654158768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.5151597786179476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.5706412223669708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.6778309624417385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.7277183102312748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.8147836061583315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.9029460409694962,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.864205474627765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.9809840341079552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.027206654768368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":1.0660610168290814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":1.1247578530489994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.2467527641835066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":1.1549790709851315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":1.2655617357679212,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":1.1443773996851827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.2155754671934995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":1.236658541521223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":1.2464589346063109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":1.2338319557594366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":1.2116730603817831,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":1.1210787119979118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":1.0748873196080204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":1.0936240815458655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.9874023786817396,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.8732789494536519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.8147172689773954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.7543550219237519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.7491973939595185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.6510065710916721,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.5939857126316248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.4502257074037115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.388734720133262,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.318958844815412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.1773099489662223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.1195254526540986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0330962970533324,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0181526923282535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":0.011630191944908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":0.0015579976108221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":0.1161633411445084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":0.0985576795524255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.1525311122479487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":0.2054059841050473,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":0.232660335943388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.2719916483096448,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":0.261532412869207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.2722957264679939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":0.3156743312786898,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":0.2606169533763877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":0.2970059084295569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":0.3265920141240676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.3651536786583215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.4561562266076598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":0.4108495528948506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":0.455921165527984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":0.5571950215985928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.4904755435343026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.5598264717774684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.4894983891197337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.5376663448747016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.5106942090885207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.5499707725549318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.6161110527744094,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.4933292880329848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.6054272501125876,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.5980037090353019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5572137863555635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.5138140361992652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.5873125433209883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.5532206737394121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.5857294564692748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.5680150336261321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.6382842564000957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.5359704413944318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.4850043984891344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.5319144751019299,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5192885762859623,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":1.1394032269381598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":1.4888982254697594,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":1.78010975830628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":1.8007195144731445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":2.137923943543169,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":2.5863031694846748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":2.7834139721487356,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":3.030438881502863,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":3.0332411511006314,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":3.3555550417086475,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":3.290940952864031,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":3.043015751372932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":2.991731784182896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":2.6306026261102304,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":2.1857949644949026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":2.022178941436077,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":1.6188283688965612,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":1.498457664885135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":1.1972264021002934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.9907994681284675,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":0.8052920094102581,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":0.741272649206669,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":0.5842809911400438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":0.49304518014861126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.4306106802444126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":0.3996276545766662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":0.36015594952665686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":0.3365828727188951,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":0.3227933703087751,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.3466065808096759,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":0.30955958603686284,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.32137081079317953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":0.33953474761678293,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":0.40130300358336646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.4637101498337301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":0.5008565994007498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":0.5645904870000241,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":0.6691561075651052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":0.8607301777104668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0378618761122047,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0275298452261903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":1.065464874086282,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":1.226770788826026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":1.3411314395603322,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":1.4795561814658607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":1.6739059348087602,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":1.7694012674213595,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":1.9696009572133975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":2.070351314923521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":2.2586868535375553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":2.4668598868217684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":2.3731198328198144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":2.6670794482011755,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":2.7932524086849195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":2.9039184564372906,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":3.0794710740968387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":3.479027372927353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":3.1739569890394455,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":3.545083577138873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":3.140485480788806,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":3.372234116152622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":3.444085945939948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":3.4780052819529463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":3.4343646871010987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":3.3590999309021687,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":3.068162082097462,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":2.929662766385344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":2.985072639967213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":2.684252736190644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":2.394750259046798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":2.2585370235887776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":2.12623970301254,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":2.1153015812900406,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":1.9174699277619376,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":1.81119294286294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":1.568666205112687,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":1.475113181595857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":1.3756947067713885,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":1.1940011151915202,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":1.1269619278742973,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9674453929626659,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.9820110753524836,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.025,"y":1.0116980855772795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.05,"y":1.001559211919648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.075,"y":1.1231793185460528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1,"y":1.1035780564470252,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":1.1647787004146162,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.15,"y":1.2280235218040307,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.175,"y":1.2619527665262875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.3125760390366858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.225,"y":1.2989190425826416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.3129752254301852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.275,"y":1.3711836312843193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3,"y":1.2977304789386488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.325,"y":1.3458232511264818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.35,"y":1.3862357971674646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":1.4407354014205576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.577996850605459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.425,"y":1.5080984504436525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.45,"y":1.5776259685537062,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.475,"y":1.7457687823714303,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.6330926419763203,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.525,"y":1.7503687355655289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.55,"y":1.6314976377014605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5750000000000001,"y":1.7120069629837786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6000000000000001,"y":1.6664476565951007,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":1.733202360050329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.65,"y":1.8517128077213412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.675,"y":1.6377597272863733,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7000000000000001,"y":1.8320347787628257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7250000000000001,"y":1.8184849494114161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.745801541605717,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.775,"y":1.6716548036484875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":1.7991467834341413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8250000000000001,"y":1.7388442592949758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8500000000000001,"y":1.796300831106208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":1.7647605820598373,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9,"y":1.8932297941857248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.925,"y":1.7091060249677268,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.95,"y":1.6241821527760694,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.975,"y":1.7021879876871266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.68083144089733,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":1.1394032269381598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":1.4888982254697594,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":1.78010975830628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":1.8007195144731445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":2.137923943543169,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":2.5863031694846748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":2.7834139721487356,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":3.030438881502863,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":3.0332411511006314,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":3.3555550417086475,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":3.290940952864031,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":3.043015751372932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":2.991731784182896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":2.6306026261102304,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":2.1857949644949026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":2.022178941436077,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":1.6188283688965612,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":1.498457664885135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":1.1972264021002934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.9907994681284675,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":0.8052920094102581,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":0.741272649206669,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":0.5842809911400438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":0.49304518014861126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":0.4306106802444126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":0.3996276545766662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":0.36015594952665686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":0.3365828727188951,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":0.3227933703087751,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.3466065808096759,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":0.30955958603686284,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.32137081079317953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":0.33953474761678293,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":0.40130300358336646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.4637101498337301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":0.5008565994007498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":0.5645904870000241,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":0.6691561075651052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":0.8607301777104668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0378618761122047,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0275298452261903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":1.065464874086282,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":1.226770788826026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":1.3411314395603322,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":1.4795561814658607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":1.6739059348087602,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":1.7694012674213595,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":1.9696009572133975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":2.070351314923521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":2.2586868535375553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":2.4668598868217684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":2.3731198328198144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":2.6670794482011755,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":2.7932524086849195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":2.9039184564372906,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":3.0794710740968387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":3.479027372927353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":3.1739569890394455,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":3.545083577138873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":3.140485480788806,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":3.372234116152622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":3.444085945939948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":3.4780052819529463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":3.4343646871010987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":3.3590999309021687,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":3.068162082097462,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":2.929662766385344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":2.985072639967213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":2.684252736190644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":2.394750259046798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":2.2585370235887776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":2.12623970301254,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":2.1153015812900406,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":1.9174699277619376,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":1.81119294286294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":1.568666205112687,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":1.475113181595857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":1.3756947067713885,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":1.1940011151915202,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":1.1269619278742973,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9674453929626659,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9820110753524836,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":1.0116980855772795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":1.001559211919648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":1.1231793185460528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":1.1035780564470252,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":1.1647787004146162,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":1.2280235218040307,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":1.2619527665262875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.3125760390366858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":1.2989190425826416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.3129752254301852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":1.3711836312843193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":1.2977304789386488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":1.3458232511264818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":1.3862357971674646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":1.4407354014205576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":1.577996850605459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":1.5080984504436525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":1.5776259685537062,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":1.7457687823714303,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.6330926419763203,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":1.7503687355655289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":1.6314976377014605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":1.7120069629837786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":1.6664476565951007,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":1.733202360050329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":1.8517128077213412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":1.6377597272863733,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":1.8320347787628257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":1.8184849494114161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":1.745801541605717,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":1.6716548036484875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":1.7991467834341413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":1.7388442592949758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":1.796300831106208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":1.7647605820598373,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":1.8932297941857248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":1.7091060249677268,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":1.6241821527760694,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":1.7021879876871266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.68083144089733,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":0.1305046401982553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":0.3980364004388828,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":0.5766750243727928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":0.5881863152941194,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.7598352383233092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":0.9502295083910576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":1.023678221804459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.1087074544126814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":1.1096317346458724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.2106171939114083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":1.1911735277959987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":1.1128490471659565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":1.09585241177004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":0.9672129553452956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":0.7819795905222634,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.7041756139309362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":0.4817026585117817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":0.4044363557139236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":0.1800075499609676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":-0.0092431181772628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":-0.216550322730477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":-0.2993867737148588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":-0.5373732626566725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":-0.7071544658349668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":-0.8425508911908366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":-0.917222028955026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":-1.0212181482034344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":-1.0889108817080964,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":-1.1307428808741575,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":-1.059564915124744,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":-1.172604681843782,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":-1.1351596487414726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":-1.0801789878340324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":-0.913038517103918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":-0.7684955990303809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":-0.6914354476095551,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":-0.5716546124013586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":-0.4017379014331221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":-0.1499742061190443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0371627085601718,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0271577134152597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":0.0634112054117937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":0.2043853421055701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":0.2935136155740814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":0.3917421654158768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.5151597786179476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":0.5706412223669708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":0.6778309624417385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.7277183102312748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":0.8147836061583315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.9029460409694962,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":0.864205474627765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":0.9809840341079552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":1.027206654768368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":1.0660610168290814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":1.1247578530489994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":1.2467527641835066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":1.1549790709851315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":1.2655617357679212,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":1.1443773996851827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.2155754671934995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":1.236658541521223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":1.2464589346063109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":1.2338319557594366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":1.2116730603817831,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":1.1210787119979118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":1.0748873196080204,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":1.0936240815458655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":0.9874023786817396,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":0.8732789494536519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.8147172689773954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":0.7543550219237519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.7491973939595185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":0.6510065710916721,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":0.5939857126316248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.4502257074037115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":0.388734720133262,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":0.318958844815412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":0.1773099489662223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":0.1195254526540986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":-0.0330962970533324,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"4"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0181526923282535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0253151205244289,"y":0.011630191944908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0512710963760241,"y":0.0015579976108221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0778841508846315,"y":0.1161633411445084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1051709180756477,"y":0.0985576795524255,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.1525311122479487,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.161834242728283,"y":0.2054059841050473,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.191246216612358,"y":0.232660335943388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.2719916483096448,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2523227161918644,"y":0.261532412869207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.2722957264679939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3165306748676215,"y":0.3156743312786898,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3498588075760032,"y":0.2606169533763877,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3840306459807514,"y":0.2970059084295569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4190675485932571,"y":0.3265920141240676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":0.3651536786583215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.4561562266076598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5295904196633787,"y":0.4108495528948506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.568312185490169,"y":0.455921165527984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.608014197485783,"y":0.5571950215985928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.4904755435343026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6904588483790914,"y":0.5598264717774684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7332530178673953,"y":0.4894983891197337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7771305269140385,"y":0.5376663448747016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.822118800390509,"y":0.5106942090885207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":0.5499707725549318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9155408290138962,"y":0.6161110527744094,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9640329759698474,"y":0.4933292880329848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0137527074704766,"y":0.6054272501125876,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0647310999664867,"y":0.5980037090353019,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.5572137863555635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1705921271834425,"y":0.5138140361992652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.5873125433209883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.281880765329304,"y":0.5532206737394121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.339646851925991,"y":0.5857294564692748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.5680150336261321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.45960311115695,"y":0.6382842564000957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.521868260358148,"y":0.5359704413944318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.585709659315846,"y":0.4850043984891344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6511672109826065,"y":0.5319144751019299,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.5192885762859623,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"4"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"4","y":41.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"4"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"4","y":41.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"4"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"4","y":41.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"4","col":"wave1","value":41.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.002772993018797458,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.002772993018797458,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"4","col":"wave2","value":41.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.7644772125113423,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.7644772125113423,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"4","col":"wave3","value":41.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.4043441292353874,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.4043441292353874,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/4/results.csv b/sample_data/models/4/results.csv deleted file mode 100644 index 24e54f9..0000000 --- a/sample_data/models/4/results.csv +++ /dev/null @@ -1,42 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.02715771341525975,-0.01815269232825359 -0.025,0.13050464019825536,0.06341120541179371,0.01163019194490809 -0.05,0.39803640043888283,0.2043853421055701,0.0015579976108221552 -0.07500000000000001,0.5766750243727928,0.2935136155740814,0.11616334114450841 -0.1,0.5881863152941194,0.3917421654158768,0.09855767955242559 -0.125,0.7598352383233092,0.5151597786179476,0.15253111224794877 -0.15000000000000002,0.9502295083910577,0.5706412223669708,0.20540598410504735 -0.17500000000000002,1.023678221804459,0.6778309624417385,0.23266033594338806 -0.2,1.1087074544126814,0.7277183102312748,0.2719916483096448 -0.225,1.1096317346458724,0.8147836061583315,0.261532412869207 -0.25,1.2106171939114083,0.9029460409694962,0.2722957264679939 -0.275,1.1911735277959987,0.864205474627765,0.3156743312786898 -0.30000000000000004,1.1128490471659565,0.9809840341079552,0.26061695337638774 -0.325,1.0958524117700401,1.027206654768368,0.2970059084295569 -0.35000000000000003,0.9672129553452957,1.0660610168290814,0.32659201412406763 -0.375,0.7819795905222634,1.1247578530489994,0.3651536786583215 -0.4,0.7041756139309362,1.2467527641835066,0.45615622660765986 -0.42500000000000004,0.48170265851178173,1.1549790709851315,0.41084955289485064 -0.45,0.40443635571392367,1.2655617357679212,0.45592116552798406 -0.47500000000000003,0.18000754996096766,1.1443773996851827,0.5571950215985928 -0.5,-0.009243118177262886,1.2155754671934995,0.49047554353430267 -0.525,-0.21655032273047706,1.236658541521223,0.5598264717774684 -0.55,-0.29938677371485883,1.2464589346063109,0.48949838911973376 -0.5750000000000001,-0.5373732626566725,1.2338319557594366,0.5376663448747016 -0.6000000000000001,-0.7071544658349668,1.2116730603817831,0.5106942090885207 -0.625,-0.8425508911908366,1.1210787119979118,0.5499707725549318 -0.65,-0.9172220289550259,1.0748873196080204,0.6161110527744094 -0.675,-1.0212181482034344,1.0936240815458655,0.4933292880329848 -0.7000000000000001,-1.0889108817080964,0.9874023786817395,0.6054272501125876 -0.7250000000000001,-1.1307428808741575,0.8732789494536519,0.5980037090353019 -0.75,-1.059564915124744,0.8147172689773954,0.5572137863555635 -0.775,-1.172604681843782,0.7543550219237519,0.5138140361992652 -0.8,-1.1351596487414726,0.7491973939595185,0.5873125433209883 -0.8250000000000001,-1.0801789878340324,0.6510065710916721,0.5532206737394121 -0.8500000000000001,-0.9130385171039181,0.5939857126316248,0.5857294564692748 -0.875,-0.7684955990303809,0.45022570740371154,0.5680150336261321 -0.9,-0.6914354476095551,0.388734720133262,0.6382842564000957 -0.925,-0.5716546124013586,0.318958844815412,0.5359704413944318 -0.9500000000000001,-0.40173790143312216,0.17730994896622235,0.48500439848913446 -0.9750000000000001,-0.14997420611904433,0.11952545265409861,0.5319144751019299 -1.0,0.03716270856017183,-0.03309629705333241,0.5192885762859623 diff --git a/sample_data/models/4/stdin.csv b/sample_data/models/4/stdin.csv deleted file mode 100644 index 03904a0..0000000 --- a/sample_data/models/4/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,41.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,1.166647295168267 -a1,1.2323197186927883 -a2,0.5869212841404032 diff --git a/sample_data/models/5/data_product.json b/sample_data/models/5/data_product.json deleted file mode 100644 index ba50933..0000000 --- a/sample_data/models/5/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":0.0759794448339209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.291290109895832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.4222426527446709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.3926895016093409,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.5317709659188544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.6996978603588959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.762056954375389,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.8482827142162233,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.863195537759835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.9910432890491822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":1.010983954958528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.9837840569621266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":1.0284564185354823,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.9704488574186432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.8628831109943521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8675603112955628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.7299249539511186,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.7372283552658954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.5943836457126579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.4809981428647701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.3411679397049132,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.3148946170392109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.120252176042506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0214163911081552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":-0.1455853276703565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":-0.2271520908278412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":-0.3569422137069061,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":-0.4696046304622328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":-0.575338891111576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.5862234601570085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":-0.7981898348117988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.8747349085450143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":-0.9465363705509076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":-0.9162744191772658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":-0.915645743551036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-0.9861798949668096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":-1.0141021820352072,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":-0.988297451090603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":-0.8733180947472788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.811960063531266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":-0.7507113705773085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.7265813255649666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":-0.5852718751086345,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":-0.4844069705849969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":-0.3642799870886601,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":-0.2101961112081004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":-0.1167988727072117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0339456781535945,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0033789534744445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":0.074522756486334,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.1514407691939608,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.1063148092911597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.2217180372664933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.2716940884345235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.319515805607959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.3924445579457579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.5339512906414516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.4669488408776029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.6075055582623335,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":0.5214052795843924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6326685915074954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":0.6986336856102074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.7579335282536708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.7991900469791136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8350324106483864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.8062592509288837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.8253811799545124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.912567426701758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.8775492248470618,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.8369771731474499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.8538869778527116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.8704694528692766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.943266487362152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":0.9235633539728856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":0.9450756062562742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":0.8793988569975193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":0.8950414256449785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":0.9009481523372672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.8330314426017289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":0.8465342664191763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.7622687518350576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":0.7454760256612175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":0.7095355169857908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":0.6307040500755052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.6737614670460633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":0.5820786511550465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":0.5597163464691443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":0.5342777296075605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.4815307838812294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":0.4394709259557315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.346535423794655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":0.2740478055469558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":0.2337156875390387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":0.0948058785860419,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":0.0475207342808798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":-0.0060681940658852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0498623413800739,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0199887113361718,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":-0.0163088890378781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.0389668631132033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.1516361644551079,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.0974963194512959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.1806005666449983,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.125185586135264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.1894091165623352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.1796143119080742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.2371658539562725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.3226512806027679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":0.2202540122129331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.3537417065318277,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":0.3686757755142112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.3511708005245198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.3319396850131599,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.4304438338191392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.422144994509491,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.4811817390961449,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.4906750232009969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.5887738999325272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.5148514027101841,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.4927757079107471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.5690103218976629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5860762515363025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":0.6569709826419938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":0.6435811356527422,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":0.6313374866071154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":0.6971596179318269,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":0.5738690514303263,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6094268220266802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":0.6019718273481217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.6344622829292608,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":0.5895257781060679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":0.6932717193799781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":0.6522978939152093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5905007339839369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":0.6126300747097708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":0.6771898644117677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":0.7002664138786026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.7537893176716386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":0.7939937477187646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.6621348703279676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":0.5838302981448757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":0.5173921593342834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":0.6268795067668318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":0.5611785185914971,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":0.568243740870988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.544471577384724,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":0.0759794448339209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.291290109895832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.4222426527446709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.3926895016093409,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.5317709659188544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.6996978603588959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.762056954375389,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.8482827142162233,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.863195537759835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.9910432890491822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":1.010983954958528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.9837840569621266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":1.0284564185354823,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.9704488574186432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.8628831109943521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8675603112955628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.7299249539511186,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.7372283552658954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.5943836457126579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.4809981428647701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.3411679397049132,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.3148946170392109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.120252176042506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0214163911081552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":-0.1455853276703565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":-0.2271520908278412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":-0.3569422137069061,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":-0.4696046304622328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":-0.575338891111576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.5862234601570085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":-0.7981898348117988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.8747349085450143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":-0.9465363705509076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":-0.9162744191772658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":-0.915645743551036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-0.9861798949668096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":-1.0141021820352072,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":-0.988297451090603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":-0.8733180947472788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.811960063531266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":-0.7507113705773085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.7265813255649666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":-0.5852718751086345,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":-0.4844069705849969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":-0.3642799870886601,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":-0.2101961112081004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":-0.1167988727072117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0339456781535945,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0033789534744445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":0.074522756486334,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.1514407691939608,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.1063148092911597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.2217180372664933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.2716940884345235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.319515805607959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.3924445579457579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.5339512906414516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.4669488408776029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.6075055582623335,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":0.5214052795843924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6326685915074954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":0.6986336856102074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.7579335282536708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.7991900469791136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8350324106483864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.8062592509288837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.8253811799545124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.912567426701758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.8775492248470618,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.8369771731474499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.8538869778527116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.8704694528692766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.943266487362152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":0.9235633539728856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":0.9450756062562742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":0.8793988569975193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":0.8950414256449785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":0.9009481523372672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.8330314426017289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":0.8465342664191763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.7622687518350576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":0.7454760256612175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":0.7095355169857908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":0.6307040500755052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.6737614670460633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":0.5820786511550465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":0.5597163464691443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":0.5342777296075605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.4815307838812294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":0.4394709259557315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.346535423794655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":0.2740478055469558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":0.2337156875390387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":0.0948058785860419,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":0.0475207342808798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":-0.0060681940658852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0498623413800739,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0199887113361718,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":-0.0163088890378781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.0389668631132033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.1516361644551079,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.0974963194512959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.1806005666449983,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.125185586135264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.1894091165623352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.1796143119080742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.2371658539562725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.3226512806027679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":0.2202540122129331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.3537417065318277,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":0.3686757755142112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.3511708005245198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.3319396850131599,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.4304438338191392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.422144994509491,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.4811817390961449,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.4906750232009969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.5887738999325272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.5148514027101841,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.4927757079107471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.5690103218976629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5860762515363025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":0.6569709826419938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":0.6435811356527422,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":0.6313374866071154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":0.6971596179318269,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":0.5738690514303263,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6094268220266802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":0.6019718273481217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.6344622829292608,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":0.5895257781060679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":0.6932717193799781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":0.6522978939152093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5905007339839369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":0.6126300747097708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":0.6771898644117677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":0.7002664138786026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.7537893176716386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":0.7939937477187646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.6621348703279676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":0.5838302981448757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":0.5173921593342834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":0.6268795067668318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":0.5611785185914971,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":0.568243740870988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.544471577384724,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":0.0759794448339209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.291290109895832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.4222426527446709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.3926895016093409,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.5317709659188544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.6996978603588959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.762056954375389,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.8482827142162233,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.863195537759835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.9910432890491822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":1.010983954958528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.9837840569621266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":1.0284564185354823,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.9704488574186432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.8628831109943521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8675603112955628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.7299249539511186,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.7372283552658954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.5943836457126579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.4809981428647701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.3411679397049132,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.3148946170392109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.120252176042506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0214163911081552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":-0.1455853276703565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":-0.2271520908278412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":-0.3569422137069061,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":-0.4696046304622328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":-0.575338891111576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":-0.5862234601570085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":-0.7981898348117988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.8747349085450143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":-0.9465363705509076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":-0.9162744191772658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":-0.915645743551036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-0.9861798949668096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":-1.0141021820352072,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":-0.988297451090603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":-0.8733180947472788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.811960063531266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":-0.7507113705773085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":-0.7265813255649666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":-0.5852718751086345,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":-0.4844069705849969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":-0.3642799870886601,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":-0.2101961112081004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":-0.1167988727072117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0339456781535945,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0033789534744445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":0.074522756486334,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.1514407691939608,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.1063148092911597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.2217180372664933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.2716940884345235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.319515805607959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.3924445579457579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.5339512906414516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.4669488408776029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.6075055582623335,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":0.5214052795843924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6326685915074954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":0.6986336856102074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.7579335282536708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.7991900469791136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8350324106483864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.8062592509288837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.8253811799545124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.912567426701758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.8775492248470618,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.8369771731474499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.8538869778527116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.8704694528692766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.943266487362152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":0.9235633539728856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":0.9450756062562742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":0.8793988569975193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":0.8950414256449785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":0.9009481523372672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.8330314426017289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":0.8465342664191763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.7622687518350576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":0.7454760256612175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":0.7095355169857908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":0.6307040500755052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.6737614670460633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":0.5820786511550465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":0.5597163464691443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":0.5342777296075605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.4815307838812294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":0.4394709259557315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.346535423794655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":0.2740478055469558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":0.2337156875390387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":0.0948058785860419,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":0.0475207342808798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":-0.0060681940658852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0498623413800739,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0199887113361718,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":-0.0163088890378781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":0.0389668631132033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":0.1516361644551079,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":0.0974963194512959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":0.1806005666449983,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":0.125185586135264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":0.1894091165623352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.1796143119080742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":0.2371658539562725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":0.3226512806027679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":0.2202540122129331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.3537417065318277,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":0.3686757755142112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":0.3511708005245198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":0.3319396850131599,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.4304438338191392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":0.422144994509491,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":0.4811817390961449,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":0.4906750232009969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":0.5887738999325272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":0.5148514027101841,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":0.4927757079107471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":0.5690103218976629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5860762515363025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":0.6569709826419938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":0.6435811356527422,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":0.6313374866071154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":0.6971596179318269,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":0.5738690514303263,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.6094268220266802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":0.6019718273481217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.6344622829292608,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":0.5895257781060679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":0.6932717193799781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":0.6522978939152093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5905007339839369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":0.6126300747097708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":0.6771898644117677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":0.7002664138786026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.7537893176716386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":0.7939937477187646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.6621348703279676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":0.5838302981448757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":0.5173921593342834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":0.6268795067668318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":0.5611785185914971,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":0.568243740870988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.544471577384724,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":1.0789403961303163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":1.3381527389952201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":1.5253786170875931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":1.4809584827073128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":1.7019437256069176,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":2.0131443648570064,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":2.142679083816446,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":2.335632457565864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":2.370724341459766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":2.6940436729523523,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":2.748303892286458,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":2.6745577964971665,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":2.796745496650429,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":2.6391287860717347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":2.3699837794136385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":2.3810946318464845,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":2.0749248869165933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":2.0901343689335725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":1.811913819871931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":1.6176882806330137,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":1.4065894432437673,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":1.3701149165822462,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":1.127781215126675,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.9788113113771482,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":0.8645161197801882,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":0.7967995871652044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":0.6998129361616463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":0.6252494239963158,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":0.5625142054373619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":0.5564246817703002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":0.4501430603681681,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.4169725408862999,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":0.38808287354677423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":0.4000065251319768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":0.400258078549126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.37299886771229257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":0.3627279473503502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":0.3722098573574844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":0.4175637320405021,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.44398697013147354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":0.47203064456545196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":0.4835592993623865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":0.5569544191831463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":0.6160624315994977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":0.6946966614150399,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":0.8104252969007992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":0.8897641310190569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.034528407708449,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0033846685729402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":1.0773698603957997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":1.1635093841700135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":1.1121719434626438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":1.2482193768935126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":1.3121855271776341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":1.3764611281991053,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":1.480595775734145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":1.7056585638935682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":1.5951197964006445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":1.8358462709298278,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":1.684393030436757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.882627846451366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":2.0110031669648953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":2.1338620955044103,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":2.223739074701294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":2.304888750015287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":2.2395148350876157,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":2.282750738333236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":2.4907090443340265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":2.40499836770141,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":2.3093755727089524,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":2.348758704735354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":2.388031658735198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":2.568357237586007,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":2.5182478296024287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":2.5730079067296527,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":2.409450846458659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":2.4474371740258145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":2.461936295527857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":2.3002813524403547,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":2.331552294156529,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":2.143132945865001,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":2.107444393855771,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":2.0330467236332757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":1.87893297659679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.9616019621626033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":1.7897548428210783,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":1.7501759862823256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":1.7062154482011238,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":1.618550157278174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":1.5518859387017463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":1.4141595878419464,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":1.3152776783046103,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":1.2632852734000295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":1.0994454085122238,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":1.0486679442715763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":0.9939501802386568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9513603784437866,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.020189823381795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0208333333333333,"y":0.9838233808584034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0416666666666666,"y":1.039736029464202,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0625,"y":1.1637367506024188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0833333333333333,"y":1.1024073840917903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1041666666666666,"y":1.1979365878864985,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.125,"y":1.133358769224189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1458333333333333,"y":1.20853528315708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":1.196755699676177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1875,"y":1.2676513453320633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2083333333333333,"y":1.3807837608598201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2291666666666666,"y":1.2463932894984144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.424387229044023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2708333333333333,"y":1.4458187578298942,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2916666666666666,"y":1.4207299666135245,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3125,"y":1.3936687868629143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.5379399618593566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3541666666666666,"y":1.5252296585774983,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.375,"y":1.6179853093707213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3958333333333333,"y":1.6334184432465066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4166666666666666,"y":1.8017779005131682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4375,"y":1.6733898221290509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4583333333333333,"y":1.6368533469565598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4791666666666666,"y":1.7665179019440898,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.7969238874035143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5208333333333333,"y":1.9289406816898589,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5416666666666666,"y":1.9032846098663965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5625,"y":1.88012353841748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5833333333333333,"y":2.0080409959519945,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6041666666666666,"y":1.7751218197728378,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.625,"y":1.839376806305911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6458333333333333,"y":1.825715248694927,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":1.8860077301979805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6875,"y":1.803133127409049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7083333333333333,"y":2.0002490931506274,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7291666666666666,"y":1.9199475998360558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.8048919599029158,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7708333333333333,"y":1.845278241844403,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7916666666666666,"y":1.9683386545929955,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8125,"y":2.01428927061058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":2.1250372203283856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8541666666666666,"y":2.212213831232523,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.875,"y":1.9389272773605648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8958333333333333,"y":1.7928926088309391,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9166666666666666,"y":1.6776469042189723,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9375,"y":1.8717606402517457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9583333333333331,"y":1.7527369166228937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9791666666666666,"y":1.7651642417485784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.7236973010438834,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0210518621451075,"y":1.0789403961303163,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0425469051899914,"y":1.3381527389952201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0644944589178593,"y":1.5253786170875931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0869040495212288,"y":1.4809584827073128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1097854037367088,"y":1.7019437256069176,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":2.0131443648570064,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1570033380907307,"y":2.142679083816446,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":2.335632457565864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2062302494209807,"y":2.370724341459766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2316236423470497,"y":2.6940436729523523,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2575516134803948,"y":2.748303892286458,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":2.6745577964971665,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.311056542750666,"y":2.796745496650429,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3386567243530938,"y":2.6391287860717347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3668379411737963,"y":2.3699837794136385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":2.3810946318464845,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4249926654670009,"y":2.0749248869165933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":2.0901343689335725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4856216933010584,"y":1.811913819871931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5168967963882132,"y":1.6176882806330137,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5488302986341331,"y":1.4065894432437673,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5814360605671443,"y":1.3701149165822462,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6147282345055054,"y":1.127781215126675,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.9788113113771482,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6834299236066135,"y":0.8645161197801882,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7188692582893286,"y":0.7967995871652044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7550546569602985,"y":0.6998129361616463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7920018256557553,"y":0.6252494239963158,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8297268010532413,"y":0.5625142054373619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":0.5564246817703002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9075760137812396,"y":0.4501430603681681,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":0.4169725408862999,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.988737469582292,"y":0.38808287354677423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0306040966347476,"y":0.4000065251319768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.073352094148393,"y":0.400258078549126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.37299886771229257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1615668091235944,"y":0.3627279473503502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2070718156067044,"y":0.3722098573574844,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2535347872132085,"y":0.4175637320405021,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":0.44398697013147354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3494157181471165,"y":0.47203064456545196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.4835592993623865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4493760859589973,"y":0.5569544191831463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5009400136621287,"y":0.6160624315994977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.553589458062927,"y":0.6946966614150399,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6073472713092665,"y":0.8104252969007992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6622367866292915,"y":0.8897641310190569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.034528407708449,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0033846685729402,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0210518621451075,"y":1.0773698603957997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0425469051899914,"y":1.1635093841700135,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0644944589178593,"y":1.1121719434626438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0869040495212288,"y":1.2482193768935126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1097854037367088,"y":1.3121855271776341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":1.3764611281991053,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1570033380907307,"y":1.480595775734145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":1.7056585638935682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2062302494209807,"y":1.5951197964006445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2316236423470497,"y":1.8358462709298278,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2575516134803948,"y":1.684393030436757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.882627846451366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.311056542750666,"y":2.0110031669648953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3386567243530938,"y":2.1338620955044103,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3668379411737963,"y":2.223739074701294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":2.304888750015287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4249926654670009,"y":2.2395148350876157,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":2.282750738333236,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4856216933010584,"y":2.4907090443340265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5168967963882132,"y":2.40499836770141,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5488302986341331,"y":2.3093755727089524,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5814360605671443,"y":2.348758704735354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6147282345055054,"y":2.388031658735198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":2.568357237586007,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6834299236066135,"y":2.5182478296024287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7188692582893286,"y":2.5730079067296527,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7550546569602985,"y":2.409450846458659,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7920018256557553,"y":2.4474371740258145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8297268010532413,"y":2.461936295527857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":2.3002813524403547,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9075760137812396,"y":2.331552294156529,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":2.143132945865001,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.988737469582292,"y":2.107444393855771,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0306040966347476,"y":2.0330467236332757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.073352094148393,"y":1.87893297659679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":1.9616019621626033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1615668091235944,"y":1.7897548428210783,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2070718156067044,"y":1.7501759862823256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2535347872132085,"y":1.7062154482011238,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":1.618550157278174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3494157181471165,"y":1.5518859387017463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":1.4141595878419464,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4493760859589973,"y":1.3152776783046103,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5009400136621287,"y":1.2632852734000295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.553589458062927,"y":1.0994454085122238,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6073472713092665,"y":1.0486679442715763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6622367866292915,"y":0.9939501802386568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9513603784437866,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.020189823381795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0210518621451075,"y":0.9838233808584034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0425469051899914,"y":1.039736029464202,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0644944589178593,"y":1.1637367506024188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0869040495212288,"y":1.1024073840917903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1097854037367088,"y":1.1979365878864985,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":1.133358769224189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1570033380907307,"y":1.20853528315708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":1.196755699676177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2062302494209807,"y":1.2676513453320633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2316236423470497,"y":1.3807837608598201,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2575516134803948,"y":1.2463932894984144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.424387229044023,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.311056542750666,"y":1.4458187578298942,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3386567243530938,"y":1.4207299666135245,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3668379411737963,"y":1.3936687868629143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.5379399618593566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4249926654670009,"y":1.5252296585774983,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":1.6179853093707213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4856216933010584,"y":1.6334184432465066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5168967963882132,"y":1.8017779005131682,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5488302986341331,"y":1.6733898221290509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5814360605671443,"y":1.6368533469565598,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6147282345055054,"y":1.7665179019440898,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.7969238874035143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6834299236066135,"y":1.9289406816898589,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7188692582893286,"y":1.9032846098663965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7550546569602985,"y":1.88012353841748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7920018256557553,"y":2.0080409959519945,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8297268010532413,"y":1.7751218197728378,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":1.839376806305911,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9075760137812396,"y":1.825715248694927,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":1.8860077301979805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.988737469582292,"y":1.803133127409049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0306040966347476,"y":2.0002490931506274,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.073352094148393,"y":1.9199475998360558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":1.8048919599029158,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1615668091235944,"y":1.845278241844403,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2070718156067044,"y":1.9683386545929955,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2535347872132085,"y":2.01428927061058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":2.1250372203283856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3494157181471165,"y":2.212213831232523,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":1.9389272773605648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4493760859589973,"y":1.7928926088309391,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5009400136621287,"y":1.6776469042189723,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.553589458062927,"y":1.8717606402517457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6073472713092665,"y":1.7527369166228937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6622367866292915,"y":1.7651642417485784,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.7236973010438834,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0210518621451075,"y":0.0759794448339209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0425469051899914,"y":0.291290109895832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0644944589178593,"y":0.4222426527446709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0869040495212288,"y":0.3926895016093409,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1097854037367088,"y":0.5317709659188544,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.6996978603588959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1570033380907307,"y":0.762056954375389,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.8482827142162233,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2062302494209807,"y":0.863195537759835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2316236423470497,"y":0.9910432890491822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2575516134803948,"y":1.010983954958528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.9837840569621266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.311056542750666,"y":1.0284564185354823,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3386567243530938,"y":0.9704488574186432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3668379411737963,"y":0.8628831109943521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.8675603112955628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4249926654670009,"y":0.7299249539511186,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":0.7372283552658954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4856216933010584,"y":0.5943836457126579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5168967963882132,"y":0.4809981428647701,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5488302986341331,"y":0.3411679397049132,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5814360605671443,"y":0.3148946170392109,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6147282345055054,"y":0.120252176042506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":-0.0214163911081552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6834299236066135,"y":-0.1455853276703565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7188692582893286,"y":-0.2271520908278412,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7550546569602985,"y":-0.3569422137069061,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7920018256557553,"y":-0.4696046304622328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8297268010532413,"y":-0.575338891111576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":-0.5862234601570085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9075760137812396,"y":-0.7981898348117988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":-0.8747349085450143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.988737469582292,"y":-0.9465363705509076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0306040966347476,"y":-0.9162744191772658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.073352094148393,"y":-0.915645743551036,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":-0.9861798949668096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1615668091235944,"y":-1.0141021820352072,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2070718156067044,"y":-0.988297451090603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2535347872132085,"y":-0.8733180947472788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":-0.811960063531266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3494157181471165,"y":-0.7507113705773085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":-0.7265813255649666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4493760859589973,"y":-0.5852718751086345,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5009400136621287,"y":-0.4844069705849969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.553589458062927,"y":-0.3642799870886601,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6073472713092665,"y":-0.2101961112081004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6622367866292915,"y":-0.1167988727072117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0339456781535945,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0033789534744445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0210518621451075,"y":0.074522756486334,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0425469051899914,"y":0.1514407691939608,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0644944589178593,"y":0.1063148092911597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0869040495212288,"y":0.2217180372664933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1097854037367088,"y":0.2716940884345235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.319515805607959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1570033380907307,"y":0.3924445579457579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.5339512906414516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2062302494209807,"y":0.4669488408776029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2316236423470497,"y":0.6075055582623335,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2575516134803948,"y":0.5214052795843924,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.6326685915074954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.311056542750666,"y":0.6986336856102074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3386567243530938,"y":0.7579335282536708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3668379411737963,"y":0.7991900469791136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.8350324106483864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4249926654670009,"y":0.8062592509288837,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":0.8253811799545124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4856216933010584,"y":0.912567426701758,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5168967963882132,"y":0.8775492248470618,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5488302986341331,"y":0.8369771731474499,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5814360605671443,"y":0.8538869778527116,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6147282345055054,"y":0.8704694528692766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.943266487362152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6834299236066135,"y":0.9235633539728856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7188692582893286,"y":0.9450756062562742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7550546569602985,"y":0.8793988569975193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7920018256557553,"y":0.8950414256449785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8297268010532413,"y":0.9009481523372672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":0.8330314426017289,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9075760137812396,"y":0.8465342664191763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":0.7622687518350576,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.988737469582292,"y":0.7454760256612175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0306040966347476,"y":0.7095355169857908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.073352094148393,"y":0.6307040500755052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.6737614670460633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1615668091235944,"y":0.5820786511550465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2070718156067044,"y":0.5597163464691443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2535347872132085,"y":0.5342777296075605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":0.4815307838812294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3494157181471165,"y":0.4394709259557315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.346535423794655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4493760859589973,"y":0.2740478055469558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5009400136621287,"y":0.2337156875390387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.553589458062927,"y":0.0948058785860419,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6073472713092665,"y":0.0475207342808798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6622367866292915,"y":-0.0060681940658852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":-0.0498623413800739,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"5"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0199887113361718,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0210518621451075,"y":-0.0163088890378781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0425469051899914,"y":0.0389668631132033,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0644944589178593,"y":0.1516361644551079,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0869040495212288,"y":0.0974963194512959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1097854037367088,"y":0.1806005666449983,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1331484530668263,"y":0.125185586135264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1570033380907307,"y":0.1894091165623352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.1796143119080742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2062302494209807,"y":0.2371658539562725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2316236423470497,"y":0.3226512806027679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2575516134803948,"y":0.2202540122129331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.3537417065318277,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.311056542750666,"y":0.3686757755142112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3386567243530938,"y":0.3511708005245198,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3668379411737963,"y":0.3319396850131599,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.4304438338191392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4249926654670009,"y":0.422144994509491,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4549914146182013,"y":0.4811817390961449,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4856216933010584,"y":0.4906750232009969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5168967963882132,"y":0.5887738999325272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5488302986341331,"y":0.5148514027101841,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5814360605671443,"y":0.4927757079107471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6147282345055054,"y":0.5690103218976629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.5860762515363025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6834299236066135,"y":0.6569709826419938,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7188692582893286,"y":0.6435811356527422,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7550546569602985,"y":0.6313374866071154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7920018256557553,"y":0.6971596179318269,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8297268010532413,"y":0.5738690514303263,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8682459574322223,"y":0.6094268220266802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9075760137812396,"y":0.6019718273481217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":0.6344622829292608,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.988737469582292,"y":0.5895257781060679,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0306040966347476,"y":0.6932717193799781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.073352094148393,"y":0.6522978939152093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.5905007339839369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1615668091235944,"y":0.6126300747097708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2070718156067044,"y":0.6771898644117677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2535347872132085,"y":0.7002664138786026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":0.7537893176716386,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3494157181471165,"y":0.7939937477187646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.398875293967098,"y":0.6621348703279676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4493760859589973,"y":0.5838302981448757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5009400136621287,"y":0.5173921593342834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.553589458062927,"y":0.6268795067668318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6073472713092665,"y":0.5611785185914971,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6622367866292915,"y":0.568243740870988,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.544471577384724,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"5"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"5","y":49.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"5"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"5","y":49.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"5"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"5","y":49.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"5","col":"wave1","value":49.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.004584665770573154,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.004584665770573154,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"5","col":"wave2","value":49.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.5633421332843446,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.5633421332843446,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"5","col":"wave3","value":49.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.46743870329188636,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.46743870329188636,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/5/results.csv b/sample_data/models/5/results.csv deleted file mode 100644 index c3ab760..0000000 --- a/sample_data/models/5/results.csv +++ /dev/null @@ -1,50 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.003378953474444573,0.019988711336171833 -0.020833333333333332,0.07597944483392094,0.07452275648633402,-0.016308889037878183 -0.041666666666666664,0.291290109895832,0.15144076919396085,0.03896686311320333 -0.0625,0.4222426527446709,0.10631480929115976,0.15163616445510797 -0.08333333333333333,0.39268950160934096,0.22171803726649336,0.09749631945129597 -0.10416666666666666,0.5317709659188544,0.27169408843452353,0.18060056664499832 -0.125,0.6996978603588959,0.319515805607959,0.12518558613526404 -0.14583333333333331,0.762056954375389,0.39244455794575794,0.18940911656233528 -0.16666666666666666,0.8482827142162233,0.5339512906414516,0.17961431190807428 -0.1875,0.863195537759835,0.4669488408776029,0.2371658539562725 -0.20833333333333331,0.9910432890491822,0.6075055582623335,0.32265128060276793 -0.22916666666666666,1.010983954958528,0.5214052795843924,0.22025401221293311 -0.25,0.9837840569621266,0.6326685915074954,0.3537417065318277 -0.2708333333333333,1.0284564185354823,0.6986336856102074,0.3686757755142112 -0.29166666666666663,0.9704488574186433,0.7579335282536708,0.3511708005245198 -0.3125,0.8628831109943521,0.7991900469791136,0.33193968501315996 -0.3333333333333333,0.8675603112955628,0.8350324106483864,0.4304438338191392 -0.35416666666666663,0.7299249539511186,0.8062592509288837,0.422144994509491 -0.375,0.7372283552658954,0.8253811799545124,0.4811817390961449 -0.3958333333333333,0.5943836457126579,0.9125674267017579,0.49067502320099693 -0.41666666666666663,0.48099814286477016,0.8775492248470618,0.5887738999325272 -0.4375,0.34116793970491327,0.8369771731474499,0.5148514027101841 -0.4583333333333333,0.3148946170392109,0.8538869778527116,0.4927757079107471 -0.47916666666666663,0.12025217604250604,0.8704694528692766,0.5690103218976629 -0.5,-0.02141639110815524,0.943266487362152,0.5860762515363025 -0.5208333333333333,-0.1455853276703565,0.9235633539728855,0.6569709826419938 -0.5416666666666666,-0.22715209082784127,0.9450756062562742,0.6435811356527422 -0.5625,-0.35694221370690615,0.8793988569975193,0.6313374866071154 -0.5833333333333333,-0.46960463046223283,0.8950414256449785,0.6971596179318269 -0.6041666666666666,-0.575338891111576,0.9009481523372672,0.5738690514303263 -0.625,-0.5862234601570085,0.8330314426017289,0.6094268220266802 -0.6458333333333333,-0.7981898348117988,0.8465342664191763,0.6019718273481217 -0.6666666666666666,-0.8747349085450143,0.7622687518350576,0.6344622829292608 -0.6875,-0.9465363705509077,0.7454760256612175,0.5895257781060679 -0.7083333333333333,-0.9162744191772658,0.7095355169857908,0.6932717193799781 -0.7291666666666666,-0.915645743551036,0.6307040500755052,0.6522978939152093 -0.75,-0.9861798949668095,0.6737614670460633,0.5905007339839369 -0.7708333333333333,-1.0141021820352072,0.5820786511550465,0.6126300747097708 -0.7916666666666666,-0.988297451090603,0.5597163464691443,0.6771898644117677 -0.8125,-0.8733180947472788,0.5342777296075605,0.7002664138786026 -0.8333333333333333,-0.811960063531266,0.48153078388122944,0.7537893176716386 -0.8541666666666666,-0.7507113705773085,0.4394709259557315,0.7939937477187646 -0.875,-0.7265813255649666,0.346535423794655,0.6621348703279676 -0.8958333333333333,-0.5852718751086345,0.27404780554695585,0.5838302981448757 -0.9166666666666666,-0.4844069705849969,0.23371568753903874,0.5173921593342834 -0.9375,-0.36427998708866016,0.09480587858604192,0.6268795067668318 -0.9583333333333333,-0.2101961112081004,0.04752073428087984,0.5611785185914971 -0.9791666666666666,-0.11679887270721173,-0.0060681940658852546,0.568243740870988 -1.0,0.033945678153594505,-0.04986234138007398,0.544471577384724 diff --git a/sample_data/models/5/stdin.csv b/sample_data/models/5/stdin.csv deleted file mode 100644 index f1e2087..0000000 --- a/sample_data/models/5/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,49.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,0.9804825220840657 -a1,0.9184084501594638 -a2,0.6640410487090698 diff --git a/sample_data/models/6/data_product.json b/sample_data/models/6/data_product.json deleted file mode 100644 index ffede33..0000000 --- a/sample_data/models/6/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1418005330240121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.4211768326621699,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.6127269485991087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.6386753988027408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.8266591665103313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.03554731790865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.1297796900065509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.237867337788423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.2639542648863047,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.3918766860000025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.4006572148738272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.3512083221349218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.362968521613385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.26208286277624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.102627196479568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.0475928369544107,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.8438240118119974,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7801496733007961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.5632024172302352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.374411154694584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.1597532611158398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.0611270669337016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":-0.2015262124394767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":-0.405070663980002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":-0.5833053903039597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":-0.7096116989577652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":-0.8734959386352432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":-1.0085186671704862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":-1.1240507694733353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":-1.1316250156201146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":-1.3269272120842144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":-1.3735189237104375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.4024562545147738,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":-1.3171078161280865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":-1.250157846628939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":-1.2444047685463813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":-1.187599643471856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":-1.0703793585348476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":-0.8592385024622127,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":-0.6990644496752604,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":-0.5385409993642883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":-0.4169297582362818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":-0.1821916721827011,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.005834290457036,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0109344298364506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1468373430168097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.2171853663008049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.3416411944982006,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.4111964514804156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.5203173051121309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.6328918302309456,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.6208714850172851,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.7666124868896821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.8439562566183316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.9159893853532216,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.0098041029387257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.1687203854634838,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.1155192312417057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.2661571377330554,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.1863268240823852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.2999791283280986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":1.36440437972325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":1.418209965322642,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":1.4500147898618438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":1.4724677041348548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":1.426409748147573,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.4244165632460468,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":1.4867447958228528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":1.423235126130778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":1.350669144705305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":1.332234488054504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":1.3102941121679192,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":1.341581417030076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":1.277591599466704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":1.2522674877068696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":1.137448154709541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":1.1019003044555995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.054840735198427,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.9324659507793768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.8903136512108416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.7494997506542145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.6755765836818146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.5822405242391021,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.4460693528981801,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.4321661220452502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.2842253993344697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.2066302947984552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.1273032370646957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0223265588014973,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0332692554486393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.0479606310600848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.0844850936488498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.1541898714196519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.1259765139601273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.1896785706476329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.246996580532705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.3136572429522316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.4330728300715933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.4164389319797075,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.4903875948715221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6206862566701346,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.5830818669284712,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.6815798470140185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.640371725625196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.7175728776270639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.7194869961988092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.7874423138396563,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.8819930321407714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.7872924422549193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.9270813663205788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.946897752976961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.9328361632077358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.9155929854264804,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":1.0146166687800366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":1.005359609926319,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":1.0619546714936656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":1.067520769179644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":1.160208604660809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":1.0793965584791,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":1.0489618537300185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":1.1153807350861908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":1.1211906222536223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.1794090623236846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":1.1519463503507632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":1.1242605062958504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":1.1733018729220894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":1.0319261871366086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":1.0481320834572765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":1.020099364833196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":1.030830370768142,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.9629999380016934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":1.0427677407350635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.9767847432909644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.8890033462674427,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1418005330240121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.4211768326621699,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.6127269485991087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.6386753988027408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.8266591665103313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.03554731790865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.1297796900065509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.237867337788423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.2639542648863047,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.3918766860000025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.4006572148738272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.3512083221349218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.362968521613385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.26208286277624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.102627196479568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.0475928369544107,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.8438240118119974,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7801496733007961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.5632024172302352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.374411154694584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.1597532611158398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.0611270669337016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":-0.2015262124394767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":-0.405070663980002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":-0.5833053903039597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":-0.7096116989577652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":-0.8734959386352432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":-1.0085186671704862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":-1.1240507694733353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":-1.1316250156201146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":-1.3269272120842144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":-1.3735189237104375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.4024562545147738,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":-1.3171078161280865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":-1.250157846628939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":-1.2444047685463813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":-1.187599643471856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":-1.0703793585348476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":-0.8592385024622127,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":-0.6990644496752604,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":-0.5385409993642883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":-0.4169297582362818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":-0.1821916721827011,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.005834290457036,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0109344298364506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1468373430168097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.2171853663008049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.3416411944982006,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.4111964514804156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.5203173051121309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.6328918302309456,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.6208714850172851,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.7666124868896821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.8439562566183316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.9159893853532216,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.0098041029387257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.1687203854634838,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.1155192312417057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.2661571377330554,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.1863268240823852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.2999791283280986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":1.36440437972325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":1.418209965322642,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":1.4500147898618438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":1.4724677041348548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":1.426409748147573,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.4244165632460468,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":1.4867447958228528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":1.423235126130778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":1.350669144705305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":1.332234488054504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":1.3102941121679192,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":1.341581417030076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":1.277591599466704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":1.2522674877068696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":1.137448154709541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":1.1019003044555995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.054840735198427,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.9324659507793768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.8903136512108416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.7494997506542145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.6755765836818146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.5822405242391021,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.4460693528981801,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.4321661220452502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.2842253993344697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.2066302947984552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.1273032370646957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0223265588014973,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0332692554486393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.0479606310600848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.0844850936488498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.1541898714196519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.1259765139601273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.1896785706476329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.246996580532705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.3136572429522316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.4330728300715933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.4164389319797075,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.4903875948715221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6206862566701346,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.5830818669284712,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.6815798470140185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.640371725625196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.7175728776270639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.7194869961988092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.7874423138396563,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.8819930321407714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.7872924422549193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.9270813663205788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.946897752976961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.9328361632077358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.9155929854264804,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":1.0146166687800366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":1.005359609926319,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":1.0619546714936656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":1.067520769179644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":1.160208604660809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":1.0793965584791,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":1.0489618537300185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":1.1153807350861908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":1.1211906222536223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.1794090623236846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":1.1519463503507632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":1.1242605062958504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":1.1733018729220894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":1.0319261871366086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":1.0481320834572765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":1.020099364833196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":1.030830370768142,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.9629999380016934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":1.0427677407350635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.9767847432909644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.8890033462674427,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1418005330240121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.4211768326621699,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.6127269485991087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.6386753988027408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.8266591665103313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.03554731790865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.1297796900065509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.237867337788423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.2639542648863047,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.3918766860000025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.4006572148738272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.3512083221349218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.362968521613385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.26208286277624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.102627196479568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.0475928369544107,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.8438240118119974,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7801496733007961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.5632024172302352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.374411154694584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.1597532611158398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.0611270669337016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":-0.2015262124394767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":-0.405070663980002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":-0.5833053903039597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":-0.7096116989577652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":-0.8734959386352432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":-1.0085186671704862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":-1.1240507694733353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":-1.1316250156201146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":-1.3269272120842144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":-1.3735189237104375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.4024562545147738,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":-1.3171078161280865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":-1.250157846628939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":-1.2444047685463813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":-1.187599643471856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":-1.0703793585348476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":-0.8592385024622127,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":-0.6990644496752604,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":-0.5385409993642883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":-0.4169297582362818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":-0.1821916721827011,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.005834290457036,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0109344298364506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1468373430168097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.2171853663008049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.3416411944982006,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.4111964514804156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.5203173051121309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.6328918302309456,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.6208714850172851,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.7666124868896821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.8439562566183316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.9159893853532216,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.0098041029387257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.1687203854634838,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.1155192312417057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.2661571377330554,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.1863268240823852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.2999791283280986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":1.36440437972325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":1.418209965322642,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":1.4500147898618438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":1.4724677041348548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":1.426409748147573,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.4244165632460468,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":1.4867447958228528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":1.423235126130778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":1.350669144705305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":1.332234488054504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":1.3102941121679192,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":1.341581417030076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":1.277591599466704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":1.2522674877068696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":1.137448154709541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":1.1019003044555995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.054840735198427,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.9324659507793768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.8903136512108416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.7494997506542145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.6755765836818146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.5822405242391021,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.4460693528981801,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.4321661220452502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.2842253993344697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.2066302947984552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.1273032370646957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0223265588014973,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0332692554486393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.0479606310600848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.0844850936488498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.1541898714196519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.1259765139601273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.1896785706476329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.246996580532705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.3136572429522316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.4330728300715933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.4164389319797075,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.4903875948715221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.6206862566701346,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.5830818669284712,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.6815798470140185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.640371725625196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.7175728776270639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.7194869961988092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.7874423138396563,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.8819930321407714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.7872924422549193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.9270813663205788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.946897752976961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.9328361632077358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.9155929854264804,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":1.0146166687800366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":1.005359609926319,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":1.0619546714936656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":1.067520769179644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":1.160208604660809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":1.0793965584791,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":1.0489618537300185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":1.1153807350861908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":1.1211906222536223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.1794090623236846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":1.1519463503507632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":1.1242605062958504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":1.1733018729220894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":1.0319261871366086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":1.0481320834572765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":1.020099364833196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":1.030830370768142,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.9629999380016934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":1.0427677407350635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.9767847432909644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.8890033462674427,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":1.1523467704856292,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":1.5237537040104001,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":1.8454570097834337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":1.8939704614799315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":2.285669928032392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":2.816647415400747,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":3.094974571182087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":3.4482516614187357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":3.539389536244293,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":4.0223917403568565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":4.057865980555199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":3.862089360486463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":3.907776419683436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":3.5327721090626856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":3.012068935053105,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":2.8507805584907113,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":2.325241749263929,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":2.181798798088769,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":1.7562878706559217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":1.454134901955762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":1.17322135594773,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.0630339820742052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.8174821490778975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":0.6669296812876512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":0.5580507391803794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":0.49183514048453625,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":0.41748947748597814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":0.36475890891189067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":0.3249607836994143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":0.32250874861685985,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":0.2652911937127567,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":0.2532143479849354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.24599200230961912,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.26790902471270805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.2864595766128566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.2881123506349969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.30495238068313807,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.34287841888865256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.4234844419239645,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.49705010172065794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.5835991029895251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.6590672123616762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.8334415775388541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0058513430767868,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0109944292012436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":1.1581655639913873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":1.242574412213508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":1.40725527598181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":1.5086216984147476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":1.6825614503552413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.8830481688029064,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.860548775903169,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":2.152462395227768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":2.3255492707423513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":2.499246747198422,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":2.7450632125253267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":3.2178723666537987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":3.0511520214096257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":3.5471949553642643,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":3.2750293277404965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":3.669220084062305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":3.913391462384771,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":4.129721475376449,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":4.26317756650978,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":4.359981019975568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":4.163723508732129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":4.155432703199399,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":4.422675350166153,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":4.1505262196954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":3.860007570349686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":3.789501530141889,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":3.707263903306757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":3.825087783807086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":3.5879879991293833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":3.4982662467964274,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":3.1187995080287787,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":3.009880281722265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":2.8715177857706267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":2.5407668649031208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":2.4358935524465566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":2.115941253584172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":1.9651657318672382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":1.790044579406834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":1.5621598030867383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":1.5405910200359603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":1.3287323923992342,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":1.2295279248739976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":1.1357613705127811,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.022577661687838,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0338288658242332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":1.0491293514010314,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":1.088156623666371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":1.1667123910871264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":1.134255528799623,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":1.2088609718034506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.2801747352551465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.3684206203435914,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.541988519745498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.5165513857036284,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.6329490199780357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.8602041814439316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.7915512540533363,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.9769986216865705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.8971859808895275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":2.0494528961958287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":2.053379548886886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":2.1977680306138705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":2.4157094984632326,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":2.1974386723175794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":2.527122658286761,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":2.5777005787192486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":2.5417076625108086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":2.4982562423019288,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":2.758305849947266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":2.732889870464361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":2.8920184139927727,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":2.908160553682347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":3.190598780476495,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":2.9429031451911025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":2.8546859975947196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":3.050729477845774,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":3.0685054601140336,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":3.2524516386741174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":3.1643458455092954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":3.0779398899530137,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":3.2326488317933517,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":2.8064664112694633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":2.8523182464964933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":2.773470335690282,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":2.803392723844516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":2.619543164831726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":2.8370583999860637,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":2.6559030887815944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":2.4327038792618256,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":1.1523467704856292,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":1.5237537040104001,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":1.8454570097834337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":1.8939704614799315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":2.285669928032392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":2.816647415400747,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":3.094974571182087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":3.4482516614187357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":3.539389536244293,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":4.0223917403568565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":4.057865980555199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":3.862089360486463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":3.907776419683436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":3.5327721090626856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":3.012068935053105,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":2.8507805584907113,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":2.325241749263929,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":2.181798798088769,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":1.7562878706559217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":1.454134901955762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":1.17322135594773,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.0630339820742052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":0.8174821490778975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":0.6669296812876512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":0.5580507391803794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":0.49183514048453625,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":0.41748947748597814,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":0.36475890891189067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":0.3249607836994143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":0.32250874861685985,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":0.2652911937127567,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":0.2532143479849354,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.24599200230961912,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":0.26790902471270805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":0.2864595766128566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":0.2881123506349969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":0.30495238068313807,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":0.34287841888865256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":0.4234844419239645,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":0.49705010172065794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":0.5835991029895251,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":0.6590672123616762,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":0.8334415775388541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0058513430767868,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0109944292012436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":1.1581655639913873,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":1.242574412213508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":1.40725527598181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":1.5086216984147476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":1.6825614503552413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":1.8830481688029064,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":1.860548775903169,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":2.152462395227768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":2.3255492707423513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":2.499246747198422,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":2.7450632125253267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":3.2178723666537987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":3.0511520214096257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":3.5471949553642643,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":3.2750293277404965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":3.669220084062305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":3.913391462384771,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":4.129721475376449,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":4.26317756650978,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":4.359981019975568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":4.163723508732129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":4.155432703199399,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":4.422675350166153,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":4.1505262196954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":3.860007570349686,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":3.789501530141889,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":3.707263903306757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":3.825087783807086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":3.5879879991293833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":3.4982662467964274,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":3.1187995080287787,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":3.009880281722265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":2.8715177857706267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":2.5407668649031208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":2.4358935524465566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":2.115941253584172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":1.9651657318672382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":1.790044579406834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":1.5621598030867383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":1.5405910200359603,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":1.3287323923992342,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":1.2295279248739976,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":1.1357613705127811,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.022577661687838,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0338288658242332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":1.0491293514010314,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":1.088156623666371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":1.1667123910871264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":1.134255528799623,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":1.2088609718034506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":1.2801747352551465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":1.3684206203435914,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":1.541988519745498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":1.5165513857036284,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":1.6329490199780357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.8602041814439316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":1.7915512540533363,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":1.9769986216865705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":1.8971859808895275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":2.0494528961958287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":2.053379548886886,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":2.1977680306138705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":2.4157094984632326,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":2.1974386723175794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":2.527122658286761,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":2.5777005787192486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":2.5417076625108086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":2.4982562423019288,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":2.758305849947266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":2.732889870464361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":2.8920184139927727,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":2.908160553682347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":3.190598780476495,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":2.9429031451911025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":2.8546859975947196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":3.050729477845774,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":3.0685054601140336,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":3.2524516386741174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":3.1643458455092954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":3.0779398899530137,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":3.2326488317933517,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":2.8064664112694633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":2.8523182464964933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":2.773470335690282,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":2.803392723844516,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":2.619543164831726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":2.8370583999860637,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":2.6559030887815944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":2.4327038792618256,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":0.1418005330240121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":0.4211768326621699,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":0.6127269485991087,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":0.6386753988027408,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":0.8266591665103313,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":1.03554731790865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":1.1297796900065509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":1.237867337788423,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":1.2639542648863047,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":1.3918766860000025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.4006572148738272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":1.3512083221349218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":1.362968521613385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":1.26208286277624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":1.102627196479568,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":1.0475928369544107,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":0.8438240118119974,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":0.7801496733007961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":0.5632024172302352,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":0.374411154694584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":0.1597532611158398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.0611270669337016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":-0.2015262124394767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":-0.405070663980002,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":-0.5833053903039597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":-0.7096116989577652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":-0.8734959386352432,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":-1.0085186671704862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":-1.1240507694733353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":-1.1316250156201146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":-1.3269272120842144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":-1.3735189237104375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":-1.4024562545147738,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":-1.3171078161280865,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":-1.250157846628939,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":-1.2444047685463813,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":-1.187599643471856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":-1.0703793585348476,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":-0.8592385024622127,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":-0.6990644496752604,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":-0.5385409993642883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":-0.4169297582362818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":-0.1821916721827011,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.005834290457036,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0109344298364506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":0.1468373430168097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":0.2171853663008049,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":0.3416411944982006,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":0.4111964514804156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":0.5203173051121309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":0.6328918302309456,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":0.6208714850172851,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":0.7666124868896821,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":0.8439562566183316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":0.9159893853532216,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.0098041029387257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":1.1687203854634838,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":1.1155192312417057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":1.2661571377330554,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":1.1863268240823852,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":1.2999791283280986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":1.36440437972325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":1.418209965322642,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":1.4500147898618438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":1.4724677041348548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":1.426409748147573,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.4244165632460468,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":1.4867447958228528,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":1.423235126130778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":1.350669144705305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":1.332234488054504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":1.3102941121679192,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":1.341581417030076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":1.277591599466704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":1.2522674877068696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":1.137448154709541,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":1.1019003044555995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":1.054840735198427,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":0.9324659507793768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":0.8903136512108416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":0.7494997506542145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":0.6755765836818146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":0.5822405242391021,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":0.4460693528981801,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":0.4321661220452502,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":0.2842253993344697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":0.2066302947984552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":0.1273032370646957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0223265588014973,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"6"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0332692554486393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":0.0479606310600848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":0.0844850936488498,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":0.1541898714196519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":0.1259765139601273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":0.1896785706476329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":0.246996580532705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":0.3136572429522316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":0.4330728300715933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":0.4164389319797075,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":0.4903875948715221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.6206862566701346,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":0.5830818669284712,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":0.6815798470140185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":0.640371725625196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":0.7175728776270639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":0.7194869961988092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":0.7874423138396563,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":0.8819930321407714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":0.7872924422549193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":0.9270813663205788,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":0.946897752976961,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.9328361632077358,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":0.9155929854264804,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":1.0146166687800366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":1.005359609926319,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":1.0619546714936656,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":1.067520769179644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":1.160208604660809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":1.0793965584791,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":1.0489618537300185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":1.1153807350861908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":1.1211906222536223,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":1.1794090623236846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":1.1519463503507632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":1.1242605062958504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":1.1733018729220894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":1.0319261871366086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":1.0481320834572765,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":1.020099364833196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":1.030830370768142,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":0.9629999380016934,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":1.0427677407350635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":0.9767847432909644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.8890033462674427,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"6"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"6","y":45.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"6"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"6","y":45.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"6"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"6","y":45.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"6","col":"wave1","value":45.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.002778162187375458,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.002778162187375458,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"6","col":"wave2","value":45.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.8988552952340984,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.8988552952340984,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"6","col":"wave3","value":45.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.7774240089510162,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.7774240089510162,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/6/results.csv b/sample_data/models/6/results.csv deleted file mode 100644 index 0107c38..0000000 --- a/sample_data/models/6/results.csv +++ /dev/null @@ -1,46 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.010934429836450647,0.03326925544863931 -0.022727272727272728,0.14180053302401213,0.1468373430168097,0.04796063106008486 -0.045454545454545456,0.42117683266216993,0.21718536630080496,0.08448509364884983 -0.06818181818181818,0.6127269485991087,0.34164119449820063,0.15418987141965199 -0.09090909090909091,0.6386753988027408,0.41119645148041567,0.12597651396012732 -0.11363636363636365,0.8266591665103313,0.5203173051121309,0.18967857064763294 -0.13636363636363635,1.03554731790865,0.6328918302309456,0.246996580532705 -0.1590909090909091,1.1297796900065507,0.6208714850172851,0.31365724295223163 -0.18181818181818182,1.237867337788423,0.7666124868896821,0.43307283007159336 -0.20454545454545456,1.2639542648863047,0.8439562566183316,0.41643893197970755 -0.2272727272727273,1.3918766860000023,0.9159893853532215,0.49038759487152217 -0.25,1.4006572148738272,1.0098041029387257,0.6206862566701346 -0.2727272727272727,1.3512083221349218,1.1687203854634838,0.5830818669284712 -0.29545454545454547,1.3629685216133853,1.1155192312417055,0.6815798470140185 -0.3181818181818182,1.26208286277624,1.2661571377330554,0.640371725625196 -0.34090909090909094,1.102627196479568,1.1863268240823852,0.7175728776270639 -0.36363636363636365,1.0475928369544107,1.2999791283280986,0.7194869961988092 -0.38636363636363635,0.8438240118119974,1.36440437972325,0.7874423138396563 -0.4090909090909091,0.7801496733007961,1.4182099653226419,0.8819930321407714 -0.4318181818181818,0.5632024172302352,1.4500147898618438,0.7872924422549193 -0.4545454545454546,0.374411154694584,1.4724677041348548,0.9270813663205787 -0.4772727272727273,0.15975326111583987,1.426409748147573,0.946897752976961 -0.5,0.06112706693370168,1.4244165632460468,0.9328361632077358 -0.5227272727272727,-0.20152621243947672,1.4867447958228528,0.9155929854264805 -0.5454545454545454,-0.405070663980002,1.423235126130778,1.0146166687800366 -0.5681818181818182,-0.5833053903039597,1.350669144705305,1.0053596099263187 -0.5909090909090909,-0.7096116989577652,1.332234488054504,1.0619546714936656 -0.6136363636363636,-0.8734959386352432,1.3102941121679192,1.067520769179644 -0.6363636363636364,-1.0085186671704862,1.341581417030076,1.1602086046608093 -0.6590909090909091,-1.1240507694733353,1.277591599466704,1.0793965584790999 -0.6818181818181819,-1.1316250156201146,1.2522674877068696,1.0489618537300183 -0.7045454545454546,-1.3269272120842144,1.137448154709541,1.1153807350861908 -0.7272727272727273,-1.3735189237104377,1.1019003044555997,1.1211906222536225 -0.75,-1.4024562545147738,1.054840735198427,1.1794090623236846 -0.7727272727272727,-1.3171078161280863,0.9324659507793769,1.1519463503507632 -0.7954545454545455,-1.250157846628939,0.8903136512108416,1.1242605062958504 -0.8181818181818182,-1.2444047685463813,0.7494997506542145,1.1733018729220894 -0.8409090909090909,-1.1875996434718559,0.6755765836818146,1.0319261871366086 -0.8636363636363636,-1.0703793585348476,0.5822405242391021,1.0481320834572765 -0.8863636363636364,-0.8592385024622127,0.4460693528981801,1.020099364833196 -0.9090909090909092,-0.6990644496752604,0.4321661220452502,1.030830370768142 -0.9318181818181819,-0.5385409993642883,0.2842253993344697,0.9629999380016934 -0.9545454545454546,-0.41692975823628187,0.20663029479845527,1.0427677407350635 -0.9772727272727273,-0.18219167218270116,0.12730323706469576,0.9767847432909645 -1.0,0.005834290457036077,0.022326558801497382,0.8890033462674427 diff --git a/sample_data/models/6/stdin.csv b/sample_data/models/6/stdin.csv deleted file mode 100644 index 34c5c8b..0000000 --- a/sample_data/models/6/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,45.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,1.36176761810238 -a1,1.4475341528792751 -a2,1.1114496835616627 diff --git a/sample_data/models/7/data_product.json b/sample_data/models/7/data_product.json deleted file mode 100644 index ac608a5..0000000 --- a/sample_data/models/7/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0722807579980197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.2836635182909447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.4102393357347359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.3756599909836904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.5088928971230068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.6700117211441265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.7245087972647569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.8017725901637113,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.8066302305815143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.9233917882282644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.9313340020302452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.8913980407026357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.9228248784476808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.8513398843191309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.7303860075842564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.7221219931006091,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5723777295572074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5688079209747632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.4167363592931026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.2961768988417372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.1516162487542338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.123418788090691,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":-0.0700181952604301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":-0.207079117082586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":-0.3230266945434119,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":-0.392617195564748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":-0.5066132026911956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":-0.5996852290188579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":-0.6821434037460902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":-0.6662682506848956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":-0.8482851680257593,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":-0.892074954552856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":-0.9287851422369688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":-0.8616454341300229,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":-0.8229732748490786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-0.8549797998429371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":-0.8446204718870521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":-0.7815449876664979,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":-0.6310900615945272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":-0.5368391639059501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":-0.4460540370011226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":-0.3964865852796099,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":-0.2345328923472857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":-0.1184456728530076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0109344298364504,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0435714388974095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.106465826547138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.2240535523172666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.2873824662400357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.3909714847357489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.4987575823879308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.482736918230488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.6253058849575232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.7003412518952372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.7709598584365205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.8642788381596321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.0236375132629174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.9718304900177004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.1248219890656643,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.0483064563656388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.1662303847591704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":1.235873647310083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":1.2958270620677257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.3346868875575966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":1.3650733242624435,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":1.327792868204548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":1.3353808704387309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":1.408048124448123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":1.3555841141411846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":1.2947141439050631,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":1.288564761116796,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":1.2794333482023668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":1.3239835957706425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":1.27363723230329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":1.262260261758221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":1.1616120039416322,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":1.1403769295002646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":1.107687591034457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.9996547188163508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":0.9717292095790684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.8449396536676338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.7847510585204343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.7047729899099605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.5814974634959362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.5799433332625503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.4437230540858673,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.3771402207376341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.3080408457108866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.2124344329651689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.1285553045570429,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.004924274225471,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0211649156022076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0394861001133125,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.002483148924496,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.0576840094847128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.1068127780831513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.1656189765819521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.2775369040073909,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2537833225771547,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.3210105388519209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.445005284512256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.401532783744388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.4946156633763897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.4484615409454761,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5212007188099443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.5191506144174424,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.5836519423885463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.6752701084283501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5781682970954878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7160958837752235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.7345980040750183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.7197750169541471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.7023277005657766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.8017074698445043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.7933682511440088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.8514429921711469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.8590492442046743,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":0.9543348937913034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.8766740580968481,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.849938254740497,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":0.9205965906394908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":0.9311779289459922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":0.9946898585144746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":0.9730313351956952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.9516476830545948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":1.0074752200462085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.8733543605831082,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.8972671536034619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.8773755912903707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.8966630183051345,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.8377841366944124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.9268773933555124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.8705714828385958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.7927955464277029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.7983338599896161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.8457264700423639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.851097364533259,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0722807579980197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.2836635182909447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.4102393357347359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.3756599909836904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.5088928971230068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.6700117211441265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.7245087972647569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.8017725901637113,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.8066302305815143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.9233917882282644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.9313340020302452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.8913980407026357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.9228248784476808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.8513398843191309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.7303860075842564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.7221219931006091,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5723777295572074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5688079209747632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.4167363592931026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.2961768988417372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.1516162487542338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.123418788090691,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":-0.0700181952604301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":-0.207079117082586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":-0.3230266945434119,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":-0.392617195564748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":-0.5066132026911956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":-0.5996852290188579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":-0.6821434037460902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":-0.6662682506848956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":-0.8482851680257593,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":-0.892074954552856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":-0.9287851422369688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":-0.8616454341300229,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":-0.8229732748490786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-0.8549797998429371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":-0.8446204718870521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":-0.7815449876664979,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":-0.6310900615945272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":-0.5368391639059501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":-0.4460540370011226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":-0.3964865852796099,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":-0.2345328923472857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":-0.1184456728530076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0109344298364504,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0435714388974095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.106465826547138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.2240535523172666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.2873824662400357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.3909714847357489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.4987575823879308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.482736918230488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.6253058849575232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.7003412518952372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.7709598584365205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.8642788381596321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.0236375132629174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.9718304900177004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.1248219890656643,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.0483064563656388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.1662303847591704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":1.235873647310083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":1.2958270620677257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.3346868875575966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":1.3650733242624435,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":1.327792868204548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":1.3353808704387309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":1.408048124448123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":1.3555841141411846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":1.2947141439050631,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":1.288564761116796,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":1.2794333482023668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":1.3239835957706425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":1.27363723230329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":1.262260261758221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":1.1616120039416322,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":1.1403769295002646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":1.107687591034457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.9996547188163508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":0.9717292095790684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.8449396536676338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.7847510585204343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.7047729899099605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.5814974634959362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.5799433332625503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.4437230540858673,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.3771402207376341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.3080408457108866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.2124344329651689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.1285553045570429,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.004924274225471,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0211649156022076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0394861001133125,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.002483148924496,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.0576840094847128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.1068127780831513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.1656189765819521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.2775369040073909,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2537833225771547,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.3210105388519209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.445005284512256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.401532783744388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.4946156633763897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.4484615409454761,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5212007188099443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.5191506144174424,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.5836519423885463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.6752701084283501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5781682970954878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7160958837752235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.7345980040750183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.7197750169541471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.7023277005657766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.8017074698445043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.7933682511440088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.8514429921711469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.8590492442046743,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":0.9543348937913034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.8766740580968481,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.849938254740497,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":0.9205965906394908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":0.9311779289459922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":0.9946898585144746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":0.9730313351956952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.9516476830545948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":1.0074752200462085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.8733543605831082,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.8972671536034619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.8773755912903707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.8966630183051345,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.8377841366944124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.9268773933555124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.8705714828385958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.7927955464277029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.7983338599896161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.8457264700423639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.851097364533259,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0722807579980197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.2836635182909447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.4102393357347359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.3756599909836904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.5088928971230068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.6700117211441265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.7245087972647569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.8017725901637113,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.8066302305815143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.9233917882282644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.9313340020302452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.8913980407026357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.9228248784476808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.8513398843191309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.7303860075842564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.7221219931006091,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5723777295572074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.5688079209747632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.4167363592931026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.2961768988417372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.1516162487542338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.123418788090691,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":-0.0700181952604301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":-0.207079117082586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":-0.3230266945434119,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":-0.392617195564748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":-0.5066132026911956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":-0.5996852290188579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":-0.6821434037460902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":-0.6662682506848956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":-0.8482851680257593,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":-0.892074954552856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":-0.9287851422369688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":-0.8616454341300229,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":-0.8229732748490786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":-0.8549797998429371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":-0.8446204718870521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":-0.7815449876664979,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":-0.6310900615945272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":-0.5368391639059501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":-0.4460540370011226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":-0.3964865852796099,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":-0.2345328923472857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":-0.1184456728530076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0109344298364504,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0435714388974095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.106465826547138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.2240535523172666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.2873824662400357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.3909714847357489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.4987575823879308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.482736918230488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.6253058849575232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.7003412518952372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.7709598584365205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.8642788381596321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.0236375132629174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.9718304900177004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.1248219890656643,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.0483064563656388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.1662303847591704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":1.235873647310083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":1.2958270620677257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.3346868875575966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":1.3650733242624435,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":1.327792868204548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":1.3353808704387309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":1.408048124448123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":1.3555841141411846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":1.2947141439050631,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":1.288564761116796,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":1.2794333482023668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":1.3239835957706425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":1.27363723230329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":1.262260261758221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":1.1616120039416322,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":1.1403769295002646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":1.107687591034457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.9996547188163508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":0.9717292095790684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.8449396536676338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.7847510585204343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.7047729899099605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.5814974634959362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.5799433332625503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.4437230540858673,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.3771402207376341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.3080408457108866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.2124344329651689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.1285553045570429,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.004924274225471,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0211649156022076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":0.0394861001133125,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":0.002483148924496,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":0.0576840094847128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":0.1068127780831513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":0.1656189765819521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":0.2775369040073909,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":0.2537833225771547,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":0.3210105388519209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":0.445005284512256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":0.401532783744388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":0.4946156633763897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":0.4484615409454761,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":0.5212007188099443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":0.5191506144174424,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.5836519423885463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":0.6752701084283501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":0.5781682970954878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":0.7160958837752235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":0.7345980040750183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":0.7197750169541471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":0.7023277005657766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":0.8017074698445043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.7933682511440088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.8514429921711469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.8590492442046743,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":0.9543348937913034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.8766740580968481,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.849938254740497,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":0.9205965906394908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":0.9311779289459922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":0.9946898585144746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":0.9730313351956952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.9516476830545948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":1.0074752200462085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.8733543605831082,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.8972671536034619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.8773755912903707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.8966630183051345,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.8377841366944124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.9268773933555124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.8705714828385958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.7927955464277029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.7983338599896161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.8457264700423639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.851097364533259,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":1.0749571045056208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":1.3279860125640044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":1.507178463614472,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":1.455952012791394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":1.6634485664507899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":1.9542602266674742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":2.063717147451153,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":2.2294893989273112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":2.240345803649882,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":2.5178158215983495,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":2.5378924741669726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":2.4385364425200895,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":2.51638885170319,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":2.3427838091657858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":2.075881759141952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":2.0587973324231053,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":1.7724765147664407,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":1.7661603932716805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":1.5170025165939025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":1.344708013083174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":1.1637135742001854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":1.1313581210579893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":0.9323768549119134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":0.8129553287892652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":0.7239545284743799,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":0.6752872010500418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":0.6025327834748757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":0.5489844132623748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":0.5055322705200378,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":0.5136217133722505,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":0.4281485055382585,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":0.4098045441435067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":0.39503332828436294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":0.4224663695167329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":0.4391240750048302,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":0.4252917819562984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":0.42972041824528007,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":0.4576983264944302,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":0.5320115594460353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":0.58459313823875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":0.6401491793850882,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":0.6726793004454376,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":0.7909402175831931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":0.8883000731545941,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0109944292012434,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0445346120476808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":1.1123399133005742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":1.2511380189744923,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":1.3329339182209519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":1.4784163553790295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":1.6466741423135272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":1.6205035239934045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":1.8688175131782505,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":2.014440021665406,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":2.161840318889726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":2.3732939396587622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":2.7833006657317076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":2.6427776125240294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":3.079668585438694,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":2.8528156568908978,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":3.2098698294907395,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":3.441383763420745,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":3.65401682346365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":3.7988063066625872,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":3.9160101800240392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":3.7727073292618067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":3.801443528195612,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":4.087968406205076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":3.879026089013465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":3.649952463843469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":3.6275763790520816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":3.5946022605244816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":3.7583633965498597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":3.5738277929819584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":3.533398874830566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":3.1950796079700248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":3.1279471585705325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":3.0273498233440654,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":2.717343418908726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":2.6425099644022145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":2.327837333886085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":2.191861227633711,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":2.023387303448265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":1.7887149616059332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":1.78593722464678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":1.5584988059722222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":1.4581087521221074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":1.3607565688714405,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":1.2366850251368315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":1.1371843110267523,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9950878301363035,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.9790574893994779,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0222222222222222,"y":1.0402760390653965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0444444444444444,"y":1.0024862344922327,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0666666666666666,"y":1.0593801887234375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0888888888888888,"y":1.1127259082989696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1111111111111111,"y":1.1801233614110385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1333333333333333,"y":1.3198748269153648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1555555555555555,"y":1.2888925001041966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1777777777777777,"y":1.378520108836497,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2,"y":1.5604984422840211,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2222222222222222,"y":1.4941130956488897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2444444444444444,"y":1.6398678566500888,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2666666666666666,"y":1.5659012564414205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2888888888888889,"y":1.684048504933379,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3111111111111111,"y":1.6805995662463746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.792572864628631,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3555555555555555,"y":1.9645635494831772,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3777777777777777,"y":1.7827699333408513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4,"y":2.0464281012201875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4222222222222222,"y":2.08464380572754,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4444444444444445,"y":2.0539710499937605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4666666666666667,"y":2.0184455804696513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4888888888888889,"y":2.229344218593131,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5111111111111112,"y":2.210830531728111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5333333333333333,"y":2.343025381025851,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5555555555555556,"y":2.360914972716257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5777777777777778,"y":2.5969427656351605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6,"y":2.4028945138414337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6222222222222222,"y":2.3395023942838065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6444444444444445,"y":2.510787855737323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666667,"y":2.537496408369436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6888888888888889,"y":2.7038856241215266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7111111111111111,"y":2.6459530855206657,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7333333333333334,"y":2.5899736011532917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7555555555555555,"y":2.73867772018881,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7777777777777778,"y":2.3949308566780485,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8,"y":2.452890570007346,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8222222222222223,"y":2.4045808155325727,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8444444444444444,"y":2.4514091397682773,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8666666666666667,"y":2.311239906736004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.888888888888889,"y":2.5266072461519213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9111111111111112,"y":2.3882753219623365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9333333333333332,"y":2.209564741152351,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9555555555555556,"y":2.221835953067747,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.977777777777778,"y":2.3296696351658914,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":2.3422157066288802,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":1.0749571045056208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":1.3279860125640044,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":1.507178463614472,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":1.455952012791394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":1.6634485664507899,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":1.9542602266674742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":2.063717147451153,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":2.2294893989273112,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":2.240345803649882,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":2.5178158215983495,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":2.5378924741669726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":2.4385364425200895,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":2.51638885170319,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":2.3427838091657858,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":2.075881759141952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":2.0587973324231053,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":1.7724765147664407,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":1.7661603932716805,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":1.5170025165939025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":1.344708013083174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":1.1637135742001854,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":1.1313581210579893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":0.9323768549119134,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":0.8129553287892652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":0.7239545284743799,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":0.6752872010500418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":0.6025327834748757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":0.5489844132623748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":0.5055322705200378,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":0.5136217133722505,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":0.4281485055382585,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":0.4098045441435067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":0.39503332828436294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":0.4224663695167329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":0.4391240750048302,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.4252917819562984,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":0.42972041824528007,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":0.4576983264944302,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":0.5320115594460353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":0.58459313823875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":0.6401491793850882,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":0.6726793004454376,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":0.7909402175831931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":0.8883000731545941,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0109944292012434,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0445346120476808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":1.1123399133005742,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":1.2511380189744923,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":1.3329339182209519,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":1.4784163553790295,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":1.6466741423135272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":1.6205035239934045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":1.8688175131782505,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":2.014440021665406,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":2.161840318889726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":2.3732939396587622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":2.7833006657317076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":2.6427776125240294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":3.079668585438694,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":2.8528156568908978,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":3.2098698294907395,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":3.441383763420745,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":3.65401682346365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":3.7988063066625872,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":3.9160101800240392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":3.7727073292618067,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":3.801443528195612,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":4.087968406205076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":3.879026089013465,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":3.649952463843469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":3.6275763790520816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":3.5946022605244816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":3.7583633965498597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":3.5738277929819584,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":3.533398874830566,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":3.1950796079700248,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":3.1279471585705325,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":3.0273498233440654,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":2.717343418908726,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":2.6425099644022145,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":2.327837333886085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":2.191861227633711,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":2.023387303448265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":1.7887149616059332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":1.78593722464678,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":1.5584988059722222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":1.4581087521221074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":1.3607565688714405,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":1.2366850251368315,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":1.1371843110267523,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9950878301363035,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9790574893994779,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":1.0402760390653965,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":1.0024862344922327,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":1.0593801887234375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":1.1127259082989696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":1.1801233614110385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":1.3198748269153648,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":1.2888925001041966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":1.378520108836497,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":1.5604984422840211,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":1.4941130956488897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":1.6398678566500888,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":1.5659012564414205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":1.684048504933379,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":1.6805995662463746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.792572864628631,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":1.9645635494831772,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":1.7827699333408513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":2.0464281012201875,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":2.08464380572754,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":2.0539710499937605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":2.0184455804696513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":2.229344218593131,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":2.210830531728111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":2.343025381025851,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":2.360914972716257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":2.5969427656351605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":2.4028945138414337,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":2.3395023942838065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":2.510787855737323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":2.537496408369436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":2.7038856241215266,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":2.6459530855206657,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":2.5899736011532917,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":2.73867772018881,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":2.3949308566780485,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":2.452890570007346,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":2.4045808155325727,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":2.4514091397682773,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":2.311239906736004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":2.5266072461519213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":2.3882753219623365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":2.209564741152351,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":2.221835953067747,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":2.3296696351658914,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":2.3422157066288802,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":0.0722807579980197,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":0.2836635182909447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":0.4102393357347359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":0.3756599909836904,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":0.5088928971230068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":0.6700117211441265,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":0.7245087972647569,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":0.8017725901637113,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.8066302305815143,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":0.9233917882282644,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":0.9313340020302452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":0.8913980407026357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":0.9228248784476808,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":0.8513398843191309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.7303860075842564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":0.7221219931006091,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":0.5723777295572074,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.5688079209747632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":0.4167363592931026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":0.2961768988417372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":0.1516162487542338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":0.123418788090691,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":-0.0700181952604301,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":-0.207079117082586,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":-0.3230266945434119,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":-0.392617195564748,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":-0.5066132026911956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":-0.5996852290188579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":-0.6821434037460902,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":-0.6662682506848956,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":-0.8482851680257593,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":-0.892074954552856,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":-0.9287851422369688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":-0.8616454341300229,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":-0.8229732748490786,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":-0.8549797998429371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":-0.8446204718870521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":-0.7815449876664979,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":-0.6310900615945272,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":-0.5368391639059501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":-0.4460540370011226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":-0.3964865852796099,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":-0.2345328923472857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":-0.1184456728530076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0109344298364504,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0435714388974095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":0.106465826547138,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":0.2240535523172666,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":0.2873824662400357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":0.3909714847357489,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":0.4987575823879308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":0.482736918230488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":0.6253058849575232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":0.7003412518952372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.7709598584365205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":0.8642788381596321,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":1.0236375132629174,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":0.9718304900177004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":1.1248219890656643,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":1.0483064563656388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.1662303847591704,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":1.235873647310083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":1.2958270620677257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":1.3346868875575966,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":1.3650733242624435,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":1.327792868204548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":1.3353808704387309,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":1.408048124448123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":1.3555841141411846,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":1.2947141439050631,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":1.288564761116796,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":1.2794333482023668,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":1.3239835957706425,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":1.27363723230329,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":1.262260261758221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":1.1616120039416322,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":1.1403769295002646,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":1.107687591034457,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":0.9996547188163508,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":0.9717292095790684,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":0.8449396536676338,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.7847510585204343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":0.7047729899099605,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":0.5814974634959362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":0.5799433332625503,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":0.4437230540858673,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":0.3771402207376341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":0.3080408457108866,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":0.2124344329651689,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":0.1285553045570429,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":-0.004924274225471,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"7"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0211649156022076,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0224709749983332,"y":0.0394861001133125,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.045446894714042,"y":0.002483148924496,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0689391057472462,"y":0.0576840094847128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0929592096672331,"y":0.1068127780831513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1175190687418637,"y":0.1656189765819521,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1426308117957227,"y":0.2775369040073909,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1683068401999093,"y":0.2537833225771547,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1945598339964232,"y":0.3210105388519209,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2214027581601699,"y":0.445005284512256,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2488488690016821,"y":0.401532783744388,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2769117207137155,"y":0.4946156633763897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.305605172064952,"y":0.4484615409454761,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3349433932441181,"y":0.5212007188099443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3649408728578967,"y":0.5191506144174424,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.5836519423885463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.426973196997562,"y":0.6752701084283501,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4590386760305858,"y":0.5781682970954878,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4918246976412703,"y":0.7160958837752235,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5253474531238633,"y":0.7345980040750183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5596234976067809,"y":0.7197750169541471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5946697582283156,"y":0.7023277005657766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.630503542496062,"y":0.8017074698445043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.667142546834185,"y":0.7933682511440088,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7046048653227532,"y":0.8514429921711469,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7429089986334578,"y":0.8590492442046743,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7820738631661202,"y":0.9543348937913034,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8221188003905089,"y":0.8766740580968481,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.863063586398077,"y":0.849938254740497,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.904928441668333,"y":0.9205965906394908,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.947734041054676,"y":0.9311779289459922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9915015239946179,"y":0.9946898585144746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0362525049494433,"y":0.9730313351956952,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0820090840784555,"y":0.9516476830545948,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.128793858153085,"y":1.0074752200462085,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1766299317162483,"y":0.8733543605831082,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.225540928492468,"y":0.8972671536034619,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2755510030543893,"y":0.8773755912903707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3266848527514563,"y":0.8966630183051345,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3789677299066345,"y":0.8377841366944124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.432425454287208,"y":0.9268773933555124,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.487084425855805,"y":0.8705714828385958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.542971637807954,"y":0.7927955464277029,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6001146899026075,"y":0.7983338599896161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6585418020922083,"y":0.8457264700423639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.851097364533259,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"7"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"7","y":46.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"7"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"7","y":46.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"7"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"7","y":46.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"7","col":"wave1","value":46.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.002955472353659672,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.002955472353659672,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"7","col":"wave2","value":46.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.8489662328983095,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.8489662328983095,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"7","col":"wave3","value":46.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.6516540126122458,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.6516540126122458,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/7/results.csv b/sample_data/models/7/results.csv deleted file mode 100644 index 10b7ea6..0000000 --- a/sample_data/models/7/results.csv +++ /dev/null @@ -1,47 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.0435714388974095,-0.02116491560220769 -0.022222222222222223,0.0722807579980197,0.10646582654713807,0.039486100113312585 -0.044444444444444446,0.28366351829094477,0.22405355231726667,0.002483148924496026 -0.06666666666666667,0.4102393357347359,0.2873824662400357,0.057684009484712875 -0.08888888888888889,0.37565999098369046,0.39097148473574894,0.10681277808315139 -0.11111111111111112,0.5088928971230068,0.49875758238793083,0.1656189765819521 -0.13333333333333333,0.6700117211441265,0.48273691823048803,0.27753690400739095 -0.15555555555555556,0.7245087972647569,0.6253058849575232,0.2537833225771547 -0.17777777777777778,0.8017725901637113,0.7003412518952372,0.3210105388519209 -0.2,0.8066302305815143,0.7709598584365205,0.445005284512256 -0.22222222222222224,0.9233917882282645,0.8642788381596321,0.401532783744388 -0.24444444444444446,0.9313340020302452,1.0236375132629174,0.4946156633763897 -0.26666666666666666,0.8913980407026357,0.9718304900177003,0.44846154094547613 -0.2888888888888889,0.9228248784476808,1.1248219890656643,0.5212007188099443 -0.3111111111111111,0.8513398843191309,1.0483064563656388,0.5191506144174424 -0.33333333333333337,0.7303860075842564,1.1662303847591704,0.5836519423885463 -0.35555555555555557,0.7221219931006091,1.235873647310083,0.6752701084283501 -0.37777777777777777,0.5723777295572074,1.2958270620677257,0.5781682970954878 -0.4,0.5688079209747632,1.3346868875575966,0.7160958837752235 -0.4222222222222222,0.41673635929310265,1.3650733242624435,0.7345980040750183 -0.4444444444444445,0.29617689884173726,1.3277928682045481,0.7197750169541471 -0.4666666666666667,0.15161624875423382,1.3353808704387307,0.7023277005657766 -0.48888888888888893,0.12341878809069101,1.408048124448123,0.8017074698445043 -0.5111111111111112,-0.07001819526043018,1.3555841141411846,0.7933682511440088 -0.5333333333333333,-0.20707911708258603,1.2947141439050631,0.8514429921711469 -0.5555555555555556,-0.3230266945434119,1.288564761116796,0.8590492442046743 -0.5777777777777778,-0.392617195564748,1.2794333482023668,0.9543348937913034 -0.6,-0.5066132026911956,1.3239835957706423,0.8766740580968481 -0.6222222222222222,-0.5996852290188579,1.27363723230329,0.849938254740497 -0.6444444444444445,-0.6821434037460902,1.262260261758221,0.9205965906394907 -0.6666666666666667,-0.6662682506848956,1.1616120039416322,0.9311779289459922 -0.6888888888888889,-0.8482851680257593,1.1403769295002646,0.9946898585144746 -0.7111111111111111,-0.892074954552856,1.107687591034457,0.9730313351956952 -0.7333333333333334,-0.9287851422369687,0.9996547188163507,0.9516476830545949 -0.7555555555555555,-0.8616454341300229,0.9717292095790683,1.0074752200462083 -0.7777777777777778,-0.8229732748490786,0.8449396536676338,0.8733543605831082 -0.8,-0.8549797998429371,0.7847510585204343,0.8972671536034619 -0.8222222222222223,-0.8446204718870521,0.7047729899099605,0.8773755912903707 -0.8444444444444444,-0.7815449876664979,0.5814974634959362,0.8966630183051345 -0.8666666666666667,-0.6310900615945272,0.5799433332625503,0.8377841366944124 -0.888888888888889,-0.5368391639059501,0.4437230540858673,0.9268773933555124 -0.9111111111111111,-0.44605403700112267,0.37714022073763415,0.8705714828385958 -0.9333333333333333,-0.3964865852796099,0.30804084571088663,0.7927955464277029 -0.9555555555555556,-0.2345328923472857,0.21243443296516895,0.7983338599896161 -0.9777777777777779,-0.11844567285300765,0.12855530455704295,0.8457264700423639 -1.0,0.010934429836450429,-0.004924274225471014,0.851097364533259 diff --git a/sample_data/models/7/stdin.csv b/sample_data/models/7/stdin.csv deleted file mode 100644 index cac4077..0000000 --- a/sample_data/models/7/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,46.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,0.8929883896580386 -a1,1.365981449376642 -a2,0.9343733250808364 diff --git a/sample_data/models/8/data_product.json b/sample_data/models/8/data_product.json deleted file mode 100644 index 8de4614..0000000 --- a/sample_data/models/8/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.087824966322531,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.314047462117607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.4540767594652276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.4309275941405511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.5729958526847205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.7398681152191395,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.796650588545639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.8724602088201165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.8719775339764417,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.9794977759620512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.9744174739903574,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.9179312652331816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.9296623270437328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8358381852754205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.6905114719166136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.6565423672319617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.4805352235317933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.4509710387110306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.2740286067779719,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.1305810534572931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0340464772201969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":-0.0786971047008535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":-0.284251376430724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":-0.4284649147538222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":-0.5460860310976545,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":-0.6114893687501691,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":-0.7152038918425713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.7918260875830185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":-0.8517592165449371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":-0.8075473503115974,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":-0.9558486280381407,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":-0.9611400136724868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":-0.9553183667675146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":-0.8425012955665565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.7560141035267739,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":-0.7391734679435191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":-0.6801126518759633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":-0.5697034143578056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":-0.3745188842544328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":-0.2393621937671125,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.1126664582192969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0332754853644349,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0116080661533359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0953740820738628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1895132702346725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.3101906427632207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.3643483020333323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.4716884618290004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.5232479610193953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.6135438829803661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.7065208872163509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.6741926174090763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.7989829711458827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.8548063993831543,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.9048276899584896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.9762222134037548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.112397769157567,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.0362275617972532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.1637643404984526,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.0608007473828152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.151390805059057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.1929308453325156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.2241366000373384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.233737155081377,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":1.2344928452293709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":1.1673569384648437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":1.145017466925118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":1.187843030026463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":1.105785206524798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":1.0157348014150194,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.9809863428956735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.9440067116650084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.9616296195733454,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.8854463189013226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.8494907996671366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.7256877760850331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.68288346047826,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.6303674327442343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.5044016805589389,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.4605815455532766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.3200722275412662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.2484665115375583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.1594919456983058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.029747809337375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0243486240392792,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0234701170101361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0723263158476986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1672622912682243,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.2367187857228166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.3182957381121217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.3500278434348857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.4028303701634995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.4879984242397129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.4743835115320693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.5517713669360537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.621817089229406,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.7002044505161195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.8303054410546387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.8232781397074065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.9057199701775492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.0433667470352066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.0119368980438492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.1154105184815075,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.0779570922188493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.1576733072778869,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.160847595623368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.2287964125173276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":1.322065715153081,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":1.22480412233458,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":1.3607513853179556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":1.3754480028382494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":1.354994716472438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":1.330097725192188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":1.4202189080502452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":1.4008276902521903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":1.4460775308434102,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":1.4391114690194922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":1.5181078063093658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":1.4224759389020238,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":1.3761274510742874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":1.4255762144123676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":1.413400452110199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":1.4526615930192996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":1.405316785017365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":1.3568737560981383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":1.3843352880551756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":1.2206121555640692,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.2137604896748686,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.087824966322531,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.314047462117607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.4540767594652276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.4309275941405511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.5729958526847205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.7398681152191395,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.796650588545639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.8724602088201165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.8719775339764417,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.9794977759620512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.9744174739903574,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.9179312652331816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.9296623270437328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8358381852754205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.6905114719166136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.6565423672319617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.4805352235317933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.4509710387110306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.2740286067779719,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.1305810534572931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0340464772201969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":-0.0786971047008535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":-0.284251376430724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":-0.4284649147538222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":-0.5460860310976545,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":-0.6114893687501691,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":-0.7152038918425713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.7918260875830185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":-0.8517592165449371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":-0.8075473503115974,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":-0.9558486280381407,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":-0.9611400136724868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":-0.9553183667675146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":-0.8425012955665565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.7560141035267739,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":-0.7391734679435191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":-0.6801126518759633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":-0.5697034143578056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":-0.3745188842544328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":-0.2393621937671125,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.1126664582192969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0332754853644349,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0116080661533359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0953740820738628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1895132702346725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.3101906427632207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.3643483020333323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.4716884618290004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.5232479610193953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.6135438829803661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.7065208872163509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.6741926174090763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.7989829711458827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.8548063993831543,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.9048276899584896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.9762222134037548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.112397769157567,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.0362275617972532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.1637643404984526,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.0608007473828152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.151390805059057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.1929308453325156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.2241366000373384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.233737155081377,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":1.2344928452293709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":1.1673569384648437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":1.145017466925118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":1.187843030026463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":1.105785206524798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":1.0157348014150194,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.9809863428956735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.9440067116650084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.9616296195733454,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.8854463189013226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.8494907996671366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.7256877760850331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.68288346047826,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.6303674327442343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.5044016805589389,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.4605815455532766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.3200722275412662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.2484665115375583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.1594919456983058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.029747809337375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0243486240392792,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0234701170101361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0723263158476986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1672622912682243,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.2367187857228166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.3182957381121217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.3500278434348857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.4028303701634995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.4879984242397129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.4743835115320693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.5517713669360537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.621817089229406,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.7002044505161195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.8303054410546387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.8232781397074065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.9057199701775492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.0433667470352066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.0119368980438492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.1154105184815075,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.0779570922188493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.1576733072778869,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.160847595623368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.2287964125173276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":1.322065715153081,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":1.22480412233458,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":1.3607513853179556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":1.3754480028382494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":1.354994716472438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":1.330097725192188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":1.4202189080502452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":1.4008276902521903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":1.4460775308434102,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":1.4391114690194922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":1.5181078063093658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":1.4224759389020238,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":1.3761274510742874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":1.4255762144123676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":1.413400452110199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":1.4526615930192996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":1.405316785017365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":1.3568737560981383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":1.3843352880551756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":1.2206121555640692,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.2137604896748686,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.087824966322531,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.314047462117607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.4540767594652276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.4309275941405511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.5729958526847205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.7398681152191395,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.796650588545639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.8724602088201165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.8719775339764417,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.9794977759620512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.9744174739903574,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.9179312652331816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.9296623270437328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.8358381852754205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":0.6905114719166136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":0.6565423672319617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":0.4805352235317933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":0.4509710387110306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":0.2740286067779719,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":0.1305810534572931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":-0.0340464772201969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":-0.0786971047008535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":-0.284251376430724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":-0.4284649147538222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":-0.5460860310976545,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":-0.6114893687501691,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":-0.7152038918425713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":-0.7918260875830185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":-0.8517592165449371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":-0.8075473503115974,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":-0.9558486280381407,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":-0.9611400136724868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":-0.9553183667675146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":-0.8425012955665565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":-0.7560141035267739,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":-0.7391734679435191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":-0.6801126518759633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":-0.5697034143578056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":-0.3745188842544328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":-0.2393621937671125,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":-0.1126664582192969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0332754853644349,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0116080661533359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0953740820738628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1895132702346725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.3101906427632207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.3643483020333323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.4716884618290004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.5232479610193953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.6135438829803661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.7065208872163509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.6741926174090763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.7989829711458827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.8548063993831543,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.9048276899584896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.9762222134037548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":1.112397769157567,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.0362275617972532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.1637643404984526,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.0608007473828152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.151390805059057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.1929308453325156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.2241366000373384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.233737155081377,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":1.2344928452293709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":1.1673569384648437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":1.145017466925118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":1.187843030026463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":1.105785206524798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":1.0157348014150194,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.9809863428956735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.9440067116650084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.9616296195733454,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.8854463189013226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.8494907996671366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.7256877760850331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.68288346047826,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.6303674327442343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.5044016805589389,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.4605815455532766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.3200722275412662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.2484665115375583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.1594919456983058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.029747809337375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0243486240392792,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":-0.0234701170101361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":0.0723263158476986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":0.1672622912682243,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":0.2367187857228166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":0.3182957381121217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":0.3500278434348857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":0.4028303701634995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":0.4879984242397129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":0.4743835115320693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":0.5517713669360537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":0.621817089229406,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":0.7002044505161195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":0.8303054410546387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":0.8232781397074065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":0.9057199701775492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.0433667470352066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.0119368980438492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.1154105184815075,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.0779570922188493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.1576733072778869,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.160847595623368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.2287964125173276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":1.322065715153081,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":1.22480412233458,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":1.3607513853179556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":1.3754480028382494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":1.354994716472438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":1.330097725192188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":1.4202189080502452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":1.4008276902521903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":1.4460775308434102,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":1.4391114690194922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":1.5181078063093658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":1.4224759389020238,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":1.3761274510742874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":1.4255762144123676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":1.413400452110199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":1.4526615930192996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":1.405316785017365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":1.3568737560981383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":1.3843352880551756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":1.2206121555640692,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.2137604896748686,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":1.091797004057975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":1.3689547084948834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":1.57471886741415,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":1.5386841361761083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":1.7735724621735165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":2.095659110725464,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":2.2180991459674115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":2.3927903821274636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":2.391635721089159,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":2.663118423926957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":2.6496232868579366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":2.504104699425136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":2.5336534868911014,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":2.306746719339928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":1.994735523574021,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":1.9281140851473113,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":1.616939594757132,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":1.5698358169661117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":1.315252426834714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":1.139490295778653,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.9665265821247944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":0.9243198541869861,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":0.7525774406955926,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":0.6515084484874933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":0.5792123989587863,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":0.5425422216063372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":0.48909237968291375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":0.45301679117117444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":0.42666367753223994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":0.44595048633474943,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":0.38448572070349935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":0.3824566315652459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":0.3846896526541264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":0.4306320371795219,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":0.46953421690770225,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":0.4775084284831511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":0.5065599242254817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":0.5656931903000795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":0.6876200240417522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":0.7871297372521708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":0.8934486128647097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9672720535872757,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.011675701203941,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":1.1000702947424645,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":1.2086611631002853,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":1.3636850660415683,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":1.4395755339332341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":1.6026980043378063,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":1.6874996916175833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":1.8469652430437804,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":2.0269270693381705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":1.9624478899086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":2.223278639753633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":2.350919197107709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":2.471506021059848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":2.654409484054658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":3.0416428150964294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":2.8185640744153053,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":3.2019639006119167,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":2.888683168895794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":3.1625883962900128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":3.296729265574252,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":3.4012281943909173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":3.4340391224321767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":3.436635172746104,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":3.213487957867192,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":3.1424962461064068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":3.2799987130279997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":3.0215961145533097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":2.7613917266235632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":2.667085605928558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":2.570259101847918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":2.6159560148892607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":2.424066056582913,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":2.3384558062363734,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":2.066151661097056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":1.9795775443024903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":1.8783006016327288,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":1.655994410340196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":1.5849954640915822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":1.3772272344805832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":1.282057887502989,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":1.1729148151729005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":1.030194695707561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0246474723713406,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.9768031640317587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0238095238095238,"y":1.0750060783553623,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0476190476190476,"y":1.1820642697872954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0714285714285714,"y":1.2670847453483316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0952380952380952,"y":1.374782776776509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.119047619047619,"y":1.419107060858221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1428571428571428,"y":1.4960530948965558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1666666666666666,"y":1.6290522829746588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1904761904761904,"y":1.6070231807833353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2142857142857142,"y":1.7363259658107428,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.238095238095238,"y":1.8623089507457344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2619047619047618,"y":2.0141644623411694,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2857142857142857,"y":2.294019320946436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3095238095238095,"y":2.2779550661697123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3333333333333333,"y":2.4737122811484653,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3571428571428571,"y":2.838758324923574,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3809523809523809,"y":2.750924117741553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4047619047619047,"y":3.050820340280906,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4285714285714285,"y":2.9386699828845195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4523809523809523,"y":3.1825199092363556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4761904761904761,"y":3.1926381957769507,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":3.417114264286172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5238095238095237,"y":3.7511622119513697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5476190476190476,"y":3.40349934798718,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5714285714285714,"y":3.8991219443698286,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5952380952380952,"y":3.9568490054821064,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6190476190476191,"y":3.876740473713925,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6428571428571428,"y":3.7814129088159754,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6666666666666666,"y":4.138026188354757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6904761904761905,"y":4.058557805761488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7142857142857142,"y":4.246425332771638,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.738095238095238,"y":4.216947263603382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7619047619047619,"y":4.563581839506139,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7857142857142857,"y":4.147376389003702,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8095238095238095,"y":3.959538393105525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8333333333333333,"y":4.160254350754495,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8571428571428571,"y":4.109907212051862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8809523809523809,"y":4.2744763045251695,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9047619047619048,"y":4.076818011593778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9285714285714284,"y":3.8840318709493893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9523809523809524,"y":3.9921713786655673,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9761904761904762,"y":3.389261854216479,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":3.366119137996819,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":1.091797004057975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":1.3689547084948834,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":1.57471886741415,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":1.5386841361761083,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":1.7735724621735165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":2.095659110725464,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":2.2180991459674115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":2.3927903821274636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":2.391635721089159,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":2.663118423926957,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":2.6496232868579366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":2.504104699425136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":2.5336534868911014,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":2.306746719339928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":1.994735523574021,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":1.9281140851473113,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":1.616939594757132,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":1.5698358169661117,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":1.315252426834714,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":1.139490295778653,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.9665265821247944,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":0.9243198541869861,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":0.7525774406955926,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":0.6515084484874933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":0.5792123989587863,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":0.5425422216063372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":0.48909237968291375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":0.45301679117117444,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":0.42666367753223994,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":0.44595048633474943,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":0.38448572070349935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":0.3824566315652459,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":0.3846896526541264,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":0.4306320371795219,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":0.46953421690770225,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":0.4775084284831511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":0.5065599242254817,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":0.5656931903000795,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":0.6876200240417522,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":0.7871297372521708,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":0.8934486128647097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.9672720535872757,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.011675701203941,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":1.1000702947424645,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":1.2086611631002853,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":1.3636850660415683,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":1.4395755339332341,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":1.6026980043378063,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":1.6874996916175833,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":1.8469652430437804,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":2.0269270693381705,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":1.9624478899086,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":2.223278639753633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":2.350919197107709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":2.471506021059848,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":2.654409484054658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":3.0416428150964294,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":2.8185640744153053,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":3.2019639006119167,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":2.888683168895794,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":3.1625883962900128,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":3.296729265574252,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":3.4012281943909173,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":3.4340391224321767,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":3.436635172746104,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":3.213487957867192,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":3.1424962461064068,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":3.2799987130279997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":3.0215961145533097,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":2.7613917266235632,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":2.667085605928558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":2.570259101847918,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":2.6159560148892607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":2.424066056582913,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":2.3384558062363734,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":2.066151661097056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":1.9795775443024903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":1.8783006016327288,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":1.655994410340196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":1.5849954640915822,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":1.3772272344805832,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":1.282057887502989,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":1.1729148151729005,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":1.030194695707561,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0246474723713406,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.9768031640317587,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":1.0750060783553623,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":1.1820642697872954,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":1.2670847453483316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":1.374782776776509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":1.419107060858221,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":1.4960530948965558,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":1.6290522829746588,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":1.6070231807833353,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":1.7363259658107428,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":1.8623089507457344,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":2.0141644623411694,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":2.294019320946436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":2.2779550661697123,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":2.4737122811484653,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":2.838758324923574,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":2.750924117741553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":3.050820340280906,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":2.9386699828845195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":3.1825199092363556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":3.1926381957769507,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":3.417114264286172,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":3.7511622119513697,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":3.40349934798718,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":3.8991219443698286,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":3.9568490054821064,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":3.876740473713925,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":3.7814129088159754,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":4.138026188354757,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":4.058557805761488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":4.246425332771638,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":4.216947263603382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":4.563581839506139,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":4.147376389003702,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":3.959538393105525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":4.160254350754495,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":4.109907212051862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":4.2744763045251695,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":4.076818011593778,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":3.8840318709493893,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":3.9921713786655673,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":3.389261854216479,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":3.366119137996819,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":0.087824966322531,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":0.314047462117607,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":0.4540767594652276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":0.4309275941405511,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":0.5729958526847205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":0.7398681152191395,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.796650588545639,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":0.8724602088201165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":0.8719775339764417,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":0.9794977759620512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":0.9744174739903574,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":0.9179312652331816,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":0.9296623270437328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.8358381852754205,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":0.6905114719166136,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":0.6565423672319617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":0.4805352235317933,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":0.4509710387110306,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":0.2740286067779719,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":0.1305810534572931,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":-0.0340464772201969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":-0.0786971047008535,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":-0.284251376430724,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":-0.4284649147538222,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":-0.5460860310976545,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":-0.6114893687501691,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":-0.7152038918425713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":-0.7918260875830185,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":-0.8517592165449371,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":-0.8075473503115974,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":-0.9558486280381407,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":-0.9611400136724868,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":-0.9553183667675146,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":-0.8425012955665565,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":-0.7560141035267739,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":-0.7391734679435191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":-0.6801126518759633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":-0.5697034143578056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":-0.3745188842544328,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":-0.2393621937671125,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":-0.1126664582192969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":-0.0332754853644349,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0116080661533359,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":0.0953740820738628,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":0.1895132702346725,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":0.3101906427632207,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":0.3643483020333323,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":0.4716884618290004,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":0.5232479610193953,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.6135438829803661,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":0.7065208872163509,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":0.6741926174090763,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":0.7989829711458827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":0.8548063993831543,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":0.9048276899584896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":0.9762222134037548,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":1.112397769157567,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":1.0362275617972532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":1.1637643404984526,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":1.0608007473828152,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":1.151390805059057,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":1.1929308453325156,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":1.2241366000373384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.233737155081377,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":1.2344928452293709,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":1.1673569384648437,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":1.145017466925118,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":1.187843030026463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":1.105785206524798,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":1.0157348014150194,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":0.9809863428956735,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":0.9440067116650084,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":0.9616296195733454,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":0.8854463189013226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":0.8494907996671366,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":0.7256877760850331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":0.68288346047826,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":0.6303674327442343,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":0.5044016805589389,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":0.4605815455532766,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":0.3200722275412662,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":0.2484665115375583,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":0.1594919456983058,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":0.029747809337375,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0243486240392792,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"8"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":-0.0234701170101361,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0240952335529787,"y":0.0723263158476986,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0487710473859297,"y":0.1672622912682243,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0740414307162958,"y":0.2367187857228166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0999207098349804,"y":0.3182957381121217,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.126423556228212,"y":0.3500278434348857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1535649948951077,"y":0.4028303701634995,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1813604128656459,"y":0.4879984242397129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.209825567923887,"y":0.4743835115320693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.238976597541378,"y":0.5517713669360537,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2688300280258122,"y":0.621817089229406,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2994027838901265,"y":0.7002044505161195,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.33071219744735,"y":0.8303054410546387,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3627760186366413,"y":0.8232781397074065,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3956124250860895,"y":0.9057199701775492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4292400324179777,"y":1.0433667470352066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4636779048023556,"y":1.0119368980438492,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.498945565764903,"y":1.1154105184815075,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5350630092552098,"y":1.0779570922188493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5720507109817523,"y":1.1576733072778869,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6099296400199836,"y":1.160847595623368,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.2287964125173276,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6884475947814113,"y":1.322065715153081,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7291311339196345,"y":1.22480412233458,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.770794952435155,"y":1.3607513853179556,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8134626703885157,"y":1.3754480028382494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8571584769711353,"y":1.354994716472438,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9019071442186488,"y":1.330097725192188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9477340410546757,"y":1.4202189080502452,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.994665147672975,"y":1.4008276902521903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.042727070266142,"y":1.4460775308434102,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0919470561091966,"y":1.4391114690194922,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1423530090066136,"y":1.5181078063093658,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1939735051115545,"y":1.4224759389020238,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.246837809126265,"y":1.3761274510742874,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3009758908928246,"y":1.4255762144123676,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.3564184423836605,"y":1.413400452110199,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.413196895101441,"y":1.4526615930192996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.4713434378982333,"y":1.405316785017365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5308910352240117,"y":1.3568737560981383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.591873445814875,"y":1.3843352880551756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6543252418315477,"y":1.2206121555640692,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.2137604896748686,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"8"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"8","y":43.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"8"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"8","y":43.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"8"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"8","y":43.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"8","col":"wave1","value":43.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.002501742833058635,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.002501742833058635,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"8","col":"wave2","value":43.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.7426579620188813,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.7426579620188813,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"8","col":"wave3","value":43.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":1.0134675206474664,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":1.0134675206474664,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/8/results.csv b/sample_data/models/8/results.csv deleted file mode 100644 index 4e15779..0000000 --- a/sample_data/models/8/results.csv +++ /dev/null @@ -1,44 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.01160806615333599,-0.023470117010136196 -0.023809523809523808,0.08782496632253109,0.09537408207386287,0.07232631584769866 -0.047619047619047616,0.31404746211760703,0.18951327023467254,0.1672622912682243 -0.07142857142857142,0.45407675946522763,0.3101906427632207,0.23671878572281668 -0.09523809523809523,0.4309275941405511,0.36434830203333235,0.3182957381121217 -0.11904761904761904,0.5729958526847205,0.4716884618290004,0.35002784343488574 -0.14285714285714285,0.7398681152191395,0.5232479610193953,0.4028303701634995 -0.16666666666666666,0.796650588545639,0.6135438829803661,0.4879984242397129 -0.19047619047619047,0.8724602088201165,0.7065208872163509,0.47438351153206937 -0.21428571428571427,0.8719775339764417,0.6741926174090763,0.5517713669360537 -0.23809523809523808,0.9794977759620513,0.7989829711458827,0.621817089229406 -0.26190476190476186,0.9744174739903574,0.8548063993831543,0.7002044505161195 -0.2857142857142857,0.9179312652331816,0.9048276899584896,0.8303054410546387 -0.30952380952380953,0.9296623270437328,0.9762222134037549,0.8232781397074065 -0.3333333333333333,0.8358381852754205,1.112397769157567,0.9057199701775491 -0.3571428571428571,0.6905114719166136,1.0362275617972532,1.0433667470352066 -0.38095238095238093,0.6565423672319617,1.1637643404984526,1.0119368980438492 -0.40476190476190477,0.48053522353179334,1.0608007473828152,1.1154105184815077 -0.42857142857142855,0.4509710387110306,1.1513908050590573,1.0779570922188493 -0.45238095238095233,0.2740286067779719,1.1929308453325156,1.1576733072778869 -0.47619047619047616,0.13058105345729315,1.2241366000373384,1.1608475956233681 -0.5,-0.03404647722019695,1.233737155081377,1.2287964125173276 -0.5238095238095237,-0.07869710470085359,1.2344928452293709,1.322065715153081 -0.5476190476190476,-0.28425137643072407,1.1673569384648435,1.22480412233458 -0.5714285714285714,-0.4284649147538222,1.1450174669251179,1.3607513853179556 -0.5952380952380952,-0.5460860310976545,1.187843030026463,1.3754480028382494 -0.6190476190476191,-0.6114893687501691,1.105785206524798,1.3549947164724379 -0.6428571428571428,-0.7152038918425713,1.0157348014150194,1.330097725192188 -0.6666666666666666,-0.7918260875830185,0.9809863428956735,1.4202189080502452 -0.6904761904761905,-0.8517592165449371,0.9440067116650084,1.4008276902521903 -0.7142857142857142,-0.8075473503115974,0.9616296195733454,1.4460775308434102 -0.738095238095238,-0.9558486280381407,0.8854463189013226,1.4391114690194922 -0.7619047619047619,-0.9611400136724869,0.8494907996671366,1.5181078063093658 -0.7857142857142857,-0.9553183667675146,0.7256877760850331,1.4224759389020238 -0.8095238095238095,-0.8425012955665565,0.68288346047826,1.3761274510742874 -0.8333333333333333,-0.7560141035267739,0.6303674327442343,1.4255762144123676 -0.8571428571428571,-0.7391734679435191,0.5044016805589389,1.413400452110199 -0.8809523809523809,-0.6801126518759633,0.46058154555327663,1.4526615930192996 -0.9047619047619047,-0.5697034143578056,0.32007222754126624,1.4053167850173647 -0.9285714285714285,-0.3745188842544328,0.2484665115375583,1.3568737560981383 -0.9523809523809523,-0.23936219376711254,0.15949194569830583,1.3843352880551756 -0.9761904761904762,-0.11266645821929694,0.029747809337375003,1.2206121555640692 -1.0,-0.03327548536443495,0.02434862403927924,1.2137604896748686 diff --git a/sample_data/models/8/stdin.csv b/sample_data/models/8/stdin.csv deleted file mode 100644 index 6a068b7..0000000 --- a/sample_data/models/8/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,43.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,0.9381511380756762 -a1,1.1981758260917341 -a2,1.4384659628557888 diff --git a/sample_data/models/9/data_product.json b/sample_data/models/9/data_product.json deleted file mode 100644 index eba498e..0000000 --- a/sample_data/models/9/data_product.json +++ /dev/null @@ -1 +0,0 @@ -{"derived_from":null,"elements":[{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1383016654739629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.4142503244154897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.6025138033892996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.6253835268139959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.8105591519257478,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.016966910596562,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.109097133478362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.2155036692514802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.240364744140525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.3675415276612095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.3760718125889977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.326873163796129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.3393790008676056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.2397191942392969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.0819446399513792,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.0290124296423226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.8277239972274139,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7668578013120512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.5529892720204262,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.3674846464479038,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.1562543935657907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.0611270669337016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":-0.1980273448894275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":-0.3981441557333218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":-0.5730922450941506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":-0.6963198269690203,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":-0.8573959240506596,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":-0.989938259858398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":-1.1033682129451463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":-1.1092613470831716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":-1.3033376913384347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":-1.349183765371645,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.3778708522299443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":-1.2927726577892935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":-1.2265683258831592,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":-1.2220411000094382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":-1.1669170869436671,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":-1.0517989512227597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":-0.8431384878776291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":-0.6857725776865154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":-0.5283278541544792,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":-0.4100032499896017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":-0.178692804632652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.005834290457036,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0109344298364506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.0998851031038693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.1235201443271043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.201740286964928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.2257727613442037,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.2903157089950013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.359484363545629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.3054513695434115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.4107870312349477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.4495386657422614,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.48498952089032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.5444182414042883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.6713200265319066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.5886390131277416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.7124819212564624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.6086780112326144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.7013002850464785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.7477462361656756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7867148700379903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.8069006971040593,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.8210117759056932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.7699316545302316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.7662615661273579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.8302667022055111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":0.7717791979016161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":0.7075550519475206,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":0.7007393927698524,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":0.6936359686103447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":0.7429025737484555,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":0.6999427866169331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":0.6985922712302768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":0.6105679365955771,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":0.6044999455240224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5894548736639894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.5014660863164752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.4958960603347716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.3936742949994802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.3601564682079411,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.3088330575537855,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.2160677567810504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.2467424319090382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.1443244918011971,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.1129650728247546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.0803509971517553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0223265588014973,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0332692554486393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.02812440914546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.0448575852422399,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.0948608455731513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.0470803699995092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.0913940337146493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.1295462967151562,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.1773072749189672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.278132054354992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.2432583392709864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.2993594949139305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.4122433895512051,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.3576964227845381,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.4397623963676862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.3826700627788885,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.4445707797327404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.4318029008149532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.4857279179712937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.566931815936147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.4595981207031311,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.5874962724575715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.5961911562624413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5718025268824218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.545050166797336,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":0.6354040665104196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":0.6183362625280298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":0.6679973113284232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":0.6675218363782977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":0.7550742254594045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":0.6700444925515121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":0.6363194151671093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":0.7003826917311372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":0.7047770781520978,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.7625233280858257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.7355328062492384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.7092624629407969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.7606594343591807,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.6225741212090208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.6429977042558713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.6201004320318494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.6368730106028997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.5759765906034046,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.6635551384654466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.60624192466182,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5279697099421288,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1383016654739629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.4142503244154897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.6025138033892996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.6253835268139959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.8105591519257478,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.016966910596562,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.109097133478362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.2155036692514802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.240364744140525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.3675415276612095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.3760718125889977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.326873163796129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.3393790008676056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.2397191942392969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.0819446399513792,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.0290124296423226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.8277239972274139,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7668578013120512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.5529892720204262,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.3674846464479038,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.1562543935657907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.0611270669337016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":-0.1980273448894275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":-0.3981441557333218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":-0.5730922450941506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":-0.6963198269690203,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":-0.8573959240506596,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":-0.989938259858398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":-1.1033682129451463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":-1.1092613470831716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":-1.3033376913384347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":-1.349183765371645,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.3778708522299443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":-1.2927726577892935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":-1.2265683258831592,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":-1.2220411000094382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":-1.1669170869436671,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":-1.0517989512227597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":-0.8431384878776291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":-0.6857725776865154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":-0.5283278541544792,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":-0.4100032499896017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":-0.178692804632652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.005834290457036,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0109344298364506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.0998851031038693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.1235201443271043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.201740286964928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.2257727613442037,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.2903157089950013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.359484363545629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.3054513695434115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.4107870312349477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.4495386657422614,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.48498952089032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.5444182414042883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.6713200265319066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.5886390131277416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.7124819212564624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.6086780112326144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.7013002850464785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.7477462361656756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7867148700379903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.8069006971040593,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.8210117759056932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.7699316545302316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.7662615661273579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.8302667022055111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":0.7717791979016161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":0.7075550519475206,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":0.7007393927698524,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":0.6936359686103447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":0.7429025737484555,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":0.6999427866169331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":0.6985922712302768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":0.6105679365955771,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":0.6044999455240224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5894548736639894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.5014660863164752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.4958960603347716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.3936742949994802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.3601564682079411,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.3088330575537855,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.2160677567810504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.2467424319090382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.1443244918011971,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.1129650728247546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.0803509971517553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0223265588014973,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["an_xy_plot","another_trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0332692554486393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.02812440914546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.0448575852422399,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.0948608455731513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.0470803699995092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.0913940337146493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.1295462967151562,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.1773072749189672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.278132054354992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.2432583392709864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.2993594949139305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.4122433895512051,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.3576964227845381,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.4397623963676862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.3826700627788885,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.4445707797327404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.4318029008149532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.4857279179712937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.566931815936147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.4595981207031311,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.5874962724575715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.5961911562624413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5718025268824218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.545050166797336,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":0.6354040665104196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":0.6183362625280298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":0.6679973113284232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":0.6675218363782977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":0.7550742254594045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":0.6700444925515121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":0.6363194151671093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":0.7003826917311372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":0.7047770781520978,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.7625233280858257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.7355328062492384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.7092624629407969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.7606594343591807,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.6225741212090208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.6429977042558713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.6201004320318494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.6368730106028997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.5759765906034046,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.6635551384654466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.60624192466182,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5279697099421288,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.1383016654739629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.4142503244154897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.6025138033892996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.6253835268139959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.8105591519257478,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.016966910596562,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.109097133478362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.2155036692514802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.240364744140525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.3675415276612095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.3760718125889977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.326873163796129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.3393790008676056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.2397191942392969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.0819446399513792,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.0290124296423226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.8277239972274139,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7668578013120512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.5529892720204262,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.3674846464479038,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.1562543935657907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.0611270669337016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":-0.1980273448894275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":-0.3981441557333218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":-0.5730922450941506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":-0.6963198269690203,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":-0.8573959240506596,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":-0.989938259858398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":-1.1033682129451463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":-1.1092613470831716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":-1.3033376913384347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":-1.349183765371645,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":-1.3778708522299443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":-1.2927726577892935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":-1.2265683258831592,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":-1.2220411000094382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":-1.1669170869436671,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":-1.0517989512227597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":-0.8431384878776291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":-0.6857725776865154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":-0.5283278541544792,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":-0.4100032499896017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":-0.178692804632652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.005834290457036,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0109344298364506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.0998851031038693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.1235201443271043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.201740286964928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.2257727613442037,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.2903157089950013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.359484363545629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.3054513695434115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.4107870312349477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.4495386657422614,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.48498952089032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.5444182414042883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.6713200265319066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.5886390131277416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.7124819212564624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.6086780112326144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.7013002850464785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.7477462361656756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.7867148700379903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.8069006971040593,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.8210117759056932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.7699316545302316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.7662615661273579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.8302667022055111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":0.7717791979016161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":0.7075550519475206,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":0.7007393927698524,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":0.6936359686103447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":0.7429025737484555,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":0.6999427866169331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":0.6985922712302768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":0.6105679365955771,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":0.6044999455240224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.5894548736639894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.5014660863164752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.4958960603347716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.3936742949994802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.3601564682079411,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.3088330575537855,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.2160677567810504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.2467424319090382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.1443244918011971,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.1129650728247546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.0803509971517553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0223265588014973,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"lower center","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":8.0,"figure_height":4.0},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":0.0332692554486393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":0.02812440914546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":0.0448575852422399,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":0.0948608455731513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":0.0470803699995092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":0.0913940337146493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":0.1295462967151562,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":0.1773072749189672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":0.278132054354992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":0.2432583392709864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":0.2993594949139305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":0.4122433895512051,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":0.3576964227845381,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":0.4397623963676862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":0.3826700627788885,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":0.4445707797327404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":0.4318029008149532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":0.4857279179712937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":0.566931815936147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":0.4595981207031311,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":0.5874962724575715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":0.5961911562624413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":0.5718025268824218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.545050166797336,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":0.6354040665104196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":0.6183362625280298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":0.6679973113284232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":0.6675218363782977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":0.7550742254594045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":0.6700444925515121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":0.6363194151671093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":0.7003826917311372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":0.7047770781520978,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.7625233280858257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.7355328062492384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.7092624629407969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.7606594343591807,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.6225741212090208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.6429977042558713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.6201004320318494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.6368730106028997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.5759765906034046,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.6635551384654466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.60624192466182,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.5279697099421288,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.5,"orientation":"vertical","pen":{"color":"k","size":1.0,"alpha":1.0,"zorder":11.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":[["another_xy_plot","trace_plot"]],"metadata":{},"format2d":null,"value":0.45,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":9.0,"linestyle":"-","label":null},"product_type":"AxLine"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":1.1483219071019717,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":1.51323587936392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":1.826705010807181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":1.868962617272385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":2.2491652602268317,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":2.764796159609655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":3.0316200102104287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":3.371992005374707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":3.4568741094182664,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":3.9256876277016617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":3.9593180965154273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":3.769239148794308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":3.8166726188983393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":3.4546432448230564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":2.950411464011663,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":2.7983009505943346,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":2.288105075860883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":2.1529904900689165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":1.7384419342954698,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":1.4440976263312015,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":1.1691235827795987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.0630339820742052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":0.8203474205216175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":0.6715652107083949,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":0.5637793964227349,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":0.49841619055764286,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":0.42426546454101827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":0.37159963292777637,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":0.3317517890744096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":0.329802480690219,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":0.2716236823685493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":0.25945194790517734,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":0.2521147716167013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":0.27450860852175635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":0.29329735359993653,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":0.29462818718693445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":0.3113252519962883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":0.3493087940688433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":0.4303577291592913,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":0.5037009311124818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":0.5895900263827696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":0.6636480932834121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":0.8363627867112189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0058513430767868,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0109944292012436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":1.1050439446620322,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":1.1314727970706417,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":1.2235302001019324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":1.253290836792317,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":1.3368494768139318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.4325905281778193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.357237480430841,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.5080041645727191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.5675888362179022,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.6241579890253486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.7236053684100383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.9568186690982232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.801534880839677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":2.039045734598094,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.837999976655781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":2.0163728631087365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":2.11223417110042,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":2.1961698592429055,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":2.240951824139126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":2.272798237098482,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":2.159618648589841,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":2.15170718400056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":2.29393045499936,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":2.1636123258187,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":2.0290243300955693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":2.015242212259327,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":2.000977815053488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":2.1020279595052975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":2.0136374971612394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":2.01091988424026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":1.8414769439982466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":1.8303367119403258,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":1.8030052817931213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":1.6511402111492552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":1.6419688832528896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":1.482417639198061,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":1.4335537025917413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":1.3618350034585267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":1.24118647495183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":1.2798494219488439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":1.15525891975776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":1.1195928280507694,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":1.0836673650879958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.022577661687838,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_y"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":"example","framealpha":0.0,"loc":"center right","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":0.0,"y":1.0338288658242332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0227272727272727,"y":1.0285236342086155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0454545454545454,"y":1.0458789007116835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0681818181818181,"y":1.0995058433747669,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.0909090909090909,"y":1.048206250030188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1136363636363636,"y":1.0957006632114559,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1363636363636363,"y":1.1383118103405252,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1590909090909091,"y":1.1939979223803845,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.1818181818181818,"y":1.3206605846762025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2045454545454545,"y":1.2753980669694527,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2272727272727273,"y":1.348994492972773,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.25,"y":1.510201958978369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2727272727272727,"y":1.4300314296185797,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.2954545454545454,"y":1.5523383334622471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3181818181818182,"y":1.46619419821635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3409090909090909,"y":1.5598205455377756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3636363636363636,"y":1.5400315462828018,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.3863636363636363,"y":1.6253577054225177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4090909090909091,"y":1.7628499971552622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4318181818181818,"y":1.5834375063575636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4545454545454546,"y":1.7994773694874633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.4772727272727273,"y":1.8151918348475078,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5,"y":1.7714572746970614,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5227272727272727,"y":1.7246949026258418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5454545454545454,"y":1.8877847779780836,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5681818181818182,"y":1.855837844956418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.5909090909090909,"y":1.9503275080677756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6136363636363636,"y":1.94940039661975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6363636363636364,"y":2.12776945215915,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6590909090909091,"y":1.954324271574915,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.6818181818181819,"y":1.8895135503327454,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7045454545454546,"y":2.0145235014590166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7272727272727273,"y":2.0233955755624082,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.75,"y":2.1436786060683746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7727272727272727,"y":2.086593446411809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.7954545454545455,"y":2.032491667785297,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8181818181818182,"y":2.13968673832688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8409090909090909,"y":1.8637193119542843,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8636363636363636,"y":1.9021744977364439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.8863636363636364,"y":1.8591147471420857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9090909090909092,"y":1.890559866001141,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.931818181818182,"y":1.778866903614228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9545454545454546,"y":1.941683030484434,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":0.9772727272727272,"y":1.8335278989913357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.695486482440345,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0153525113161164,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":1.1483219071019717,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":1.51323587936392,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":1.826705010807181,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":1.868962617272385,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":2.2491652602268317,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":2.764796159609655,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":3.0316200102104287,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":3.371992005374707,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":3.4568741094182664,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":3.9256876277016617,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":3.9593180965154273,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":3.769239148794308,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":3.8166726188983393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":3.4546432448230564,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":2.950411464011663,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":2.7983009505943346,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":2.288105075860883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":2.1529904900689165,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":1.7384419342954698,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":1.4440976263312015,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":1.1691235827795987,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.0630339820742052,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":0.8203474205216175,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":0.6715652107083949,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":0.5637793964227349,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":0.49841619055764286,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":0.42426546454101827,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":0.37159963292777637,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":0.3317517890744096,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":0.329802480690219,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":0.2716236823685493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":0.25945194790517734,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.2521147716167013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":0.27450860852175635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":0.29329735359993653,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":0.29462818718693445,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":0.3113252519962883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":0.3493087940688433,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":0.4303577291592913,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":0.5037009311124818,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":0.5895900263827696,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":0.6636480932834121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":0.8363627867112189,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.0058513430767868,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":5.0,"alpha":1.0,"zorder":1.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0109944292012436,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":1.1050439446620322,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":1.1314727970706417,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":1.2235302001019324,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":1.253290836792317,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":1.3368494768139318,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":1.4325905281778193,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":1.357237480430841,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":1.5080041645727191,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":1.5675888362179022,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":1.6241579890253486,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.7236053684100383,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":1.9568186690982232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":1.801534880839677,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":2.039045734598094,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":1.837999976655781,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":2.0163728631087365,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":2.11223417110042,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":2.1961698592429055,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":2.240951824139126,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":2.272798237098482,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":2.159618648589841,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":2.15170718400056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":2.29393045499936,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":2.1636123258187,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":2.0290243300955693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":2.015242212259327,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":2.000977815053488,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":2.1020279595052975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":2.0136374971612394,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":2.01091988424026,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":1.8414769439982466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":1.8303367119403258,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":1.8030052817931213,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":1.6511402111492552,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":1.6419688832528896,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":1.482417639198061,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":1.4335537025917413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":1.3618350034585267,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":1.24118647495183,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":1.2798494219488439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":1.15525891975776,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":1.1195928280507694,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":1.0836673650879958,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.022577661687838,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":5.0,"alpha":0.3,"zorder":1.0,"linestyle":"-","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"center","ncol":1,"fancybox":false,"edgecolor":"red","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":0.1,"lim_y_max":10.0,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"log","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":1.0338288658242332,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":1.0285236342086155,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":1.0458789007116835,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":1.0995058433747669,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":1.048206250030188,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":1.0957006632114559,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":1.1383118103405252,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":1.1939979223803845,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":1.3206605846762025,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":1.2753980669694527,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":1.348994492972773,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.510201958978369,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":1.4300314296185797,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":1.5523383334622471,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":1.46619419821635,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":1.5598205455377756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":1.5400315462828018,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":1.6253577054225177,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":1.7628499971552622,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":1.5834375063575636,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":1.7994773694874633,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":1.8151918348475078,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":1.7714572746970614,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":1.7246949026258418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":1.8877847779780836,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":1.855837844956418,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":1.9503275080677756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":1.94940039661975,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":2.12776945215915,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":1.954324271574915,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":1.8895135503327454,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":2.0145235014590166,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":2.0233955755624082,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":2.1436786060683746,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":2.086593446411809,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":2.032491667785297,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":2.13968673832688,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":1.8637193119542843,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":1.9021744977364439,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":1.8591147471420857,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":1.890559866001141,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":1.778866903614228,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":1.941683030484434,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":1.8335278989913357,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":1.695486482440345,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":5.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"wave3"},"product_type":"Trace2D"},{"tags":["trace_plot_log_xy"],"metadata":{},"format2d":null,"value":2.5,"orientation":"horizontal","pen":{"color":"r","size":1.0,"alpha":0.5,"zorder":1.0,"linestyle":"-","label":"test line"},"product_type":"AxLine"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0152358539877215,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":0.1383016654739629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":0.4142503244154897,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":0.6025138033892996,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":0.6253835268139959,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":0.8105591519257478,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":1.016966910596562,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":1.109097133478362,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":1.2155036692514802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":1.240364744140525,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":1.3675415276612095,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":1.3760718125889977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":1.326873163796129,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":1.3393790008676056,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":1.2397191942392969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":1.0819446399513792,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":1.0290124296423226,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":0.8277239972274139,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":0.7668578013120512,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":0.5529892720204262,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":0.3674846464479038,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":0.1562543935657907,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.0611270669337016,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":-0.1980273448894275,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":-0.3981441557333218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":-0.5730922450941506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":-0.6963198269690203,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":-0.8573959240506596,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":-0.989938259858398,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":-1.1033682129451463,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":-1.1092613470831716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":-1.3033376913384347,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":-1.349183765371645,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":-1.3778708522299443,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":-1.2927726577892935,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":-1.2265683258831592,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":-1.2220411000094382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":-1.1669170869436671,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":-1.0517989512227597,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":-0.8431384878776291,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":-0.6857725776865154,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":-0.5283278541544792,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":-0.4100032499896017,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":-0.178692804632652,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.005834290457036,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FF0000","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":"-","label":"wave1"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0109344298364506,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":0.0998851031038693,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":0.1235201443271043,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":0.201740286964928,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":0.2257727613442037,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":0.2903157089950013,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":0.359484363545629,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":0.3054513695434115,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":0.4107870312349477,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":0.4495386657422614,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":0.48498952089032,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.5444182414042883,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":0.6713200265319066,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":0.5886390131277416,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":0.7124819212564624,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":0.6086780112326144,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":0.7013002850464785,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":0.7477462361656756,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":0.7867148700379903,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":0.8069006971040593,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":0.8210117759056932,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":0.7699316545302316,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.7662615661273579,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":0.8302667022055111,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":0.7717791979016161,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":0.7075550519475206,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":0.7007393927698524,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":0.6936359686103447,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":0.7429025737484555,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":0.6999427866169331,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":0.6985922712302768,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":0.6105679365955771,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":0.6044999455240224,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.5894548736639894,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":0.5014660863164752,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":0.4958960603347716,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":0.3936742949994802,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":0.3601564682079411,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":0.3088330575537855,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":0.2160677567810504,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":0.2467424319090382,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":0.1443244918011971,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":0.1129650728247546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":0.0803509971517553,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.0223265588014973,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#000B81","size":1.0,"alpha":0.3,"zorder":0.0,"linestyle":":","label":"wave2"},"product_type":"Trace2D"},{"tags":["trace_plot_log_x"],"metadata":{"run_num":"9"},"format2d":{"title_fig":null,"legend":{"visible":false,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"log","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"points":[{"tags":[null],"metadata":{},"format2d":null,"x":1.0,"y":0.0332692554486393,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0229875049065216,"y":0.02812440914546,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0465034351948703,"y":0.0448575852422399,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.070559938046104,"y":0.0948608455731513,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.0951694398746643,"y":0.0470803699995092,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1203446527472556,"y":0.0913940337146493,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.146098580949278,"y":0.1295462967151562,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.172444527702207,"y":0.1773072749189672,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.1993961020353858,"y":0.278132054354992,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.226967225815787,"y":0.2432583392709864,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2551721409393686,"y":0.2993594949139305,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.2840254166877414,"y":0.4122433895512051,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3135419572539493,"y":0.3576964227845381,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3437370094412462,"y":0.4397623963676862,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.3746261705388516,"y":0.3826700627788885,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.406225396378746,"y":0.4445707797327404,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4385510095776777,"y":0.4318029008149532,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.4716197079686262,"y":0.4857279179712937,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5054485732260887,"y":0.566931815936147,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5400550796896393,"y":0.4595981207031311,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.5754571033903184,"y":0.5874962724575715,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6116729312845175,"y":0.5961911562624413,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6487212707001282,"y":0.5718025268824218,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.6866212589998337,"y":0.545050166797336,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7253924734665358,"y":0.6354040665104196,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.7650549414160233,"y":0.6183362625280298,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.805629150542104,"y":0.6679973113284232,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.847136059499549,"y":0.6675218363782977,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.8895971087303076,"y":0.7550742254594045,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.9330342315385944,"y":0.6700444925515121,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":1.977469865420562,"y":0.6363194151671093,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.022926963654416,"y":0.7003826917311372,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.0694290071569563,"y":0.7047770781520978,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.117000016612675,"y":0.7625233280858257,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.1656645648816646,"y":0.7355328062492384,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.215447789692762,"y":0.7092624629407969,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.2663754066284665,"y":0.7606594343591807,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.318473722408358,"y":0.6225741212090208,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.371769648477861,"y":0.6429977042558713,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.426290714909385,"y":0.6201004320318494,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.482065084623012,"y":0.6368730106028997,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.5391215679340897,"y":0.5759765906034046,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.597489637435229,"y":0.6635551384654466,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.6571994432204096,"y":0.60624192466182,"marker":null,"product_type":"Point2D"},{"tags":[null],"metadata":{},"format2d":null,"x":2.718281828459045,"y":0.5279697099421288,"marker":null,"product_type":"Point2D"}],"pen":{"color":"#FFAA00","size":1.0,"alpha":1.0,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":"wave3"},"product_type":"Trace2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"9"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"9","y":45.0,"marker":{"color":"#FF0000","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave1","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"9"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"9","y":45.0,"marker":{"color":"#000B81","size":10.0,"alpha":0.3,"zorder":0.0,"label":"wave2","symbol":"."},"product_type":"Point2D"},{"tags":["scatter_plot"],"metadata":{"run_num":"9"},"format2d":{"title_fig":"N Points","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"best","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":null},"title_ax":null,"label_x":null,"label_y":null,"lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":null,"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"x":"9","y":45.0,"marker":{"color":"#FFAA00","size":10.0,"alpha":1.0,"zorder":0.0,"label":"wave3","symbol":"."},"product_type":"Point2D"},{"tags":["table"],"metadata":{},"row":"9","col":"wave1","value":45.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.0027781621873754583,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.0027781621873754583,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"9","col":"wave2","value":45.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.48934585914432155,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.48934585914432155,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"},{"tags":["table"],"metadata":{},"row":"9","col":"wave3","value":45.0,"unit":null,"product_type":"TableEntry"},{"tags":["histogram"],"metadata":{},"format2d":{"title_fig":"Idk lol2","legend":{"visible":true,"title":null,"framealpha":1.0,"loc":"upper left","ncol":1,"fancybox":true,"edgecolor":"black","zorder":10,"bbox_to_anchor":[1.05,1.0]},"title_ax":"Idk lol","label_x":"Series value","label_y":"Counts","lim_x_min":null,"lim_x_max":null,"lim_y_min":null,"lim_y_max":null,"grid":{"major":{"show":true,"pen":{"color":"#b0b0b0","size":0.8,"alpha":0.35,"zorder":0.0,"linestyle":"-","label":null}},"minor":{"show":true,"pen":{"color":"#b0b0b0","size":0.6,"alpha":0.25,"zorder":0.0,"linestyle":[0,[3,1,1,1]],"label":null}},"enable_minor_ticks":true,"zorder":-1.0},"scale_x":"linear","scale_y":"linear","figure_width":6.4,"figure_height":4.8},"value":0.48153017625670996,"style":{"color":"k","label":"A histogram entry","histtype":"stepfilled","alpha_edge":1.0,"alpha_face":0.75,"linewidth":2.0,"zorder":1,"bins":6},"product_type":"HistogramEntry"},{"tags":["histogram"],"metadata":{},"format2d":null,"value":0.48153017625670996,"orientation":"vertical","pen":{"color":"r","size":1.0,"alpha":1.0,"zorder":2.0,"linestyle":"-","label":"mean"},"product_type":"AxLine"}]} \ No newline at end of file diff --git a/sample_data/models/9/results.csv b/sample_data/models/9/results.csv deleted file mode 100644 index 324b83d..0000000 --- a/sample_data/models/9/results.csv +++ /dev/null @@ -1,46 +0,0 @@ -time,wave1,wave2,wave3 -0.0,0.015235853987721568,0.010934429836450647,0.03326925544863931 -0.022727272727272728,0.13830166547396297,0.09988510310386932,0.028124409145460057 -0.045454545454545456,0.41425032441548976,0.12352014432710431,0.04485758524223993 -0.06818181818181818,0.6025138033892996,0.20174028696492805,0.09486084557315139 -0.09090909090909091,0.6253835268139959,0.2257727613442037,0.047080369999509264 -0.11363636363636365,0.8105591519257478,0.29031570899500136,0.09139403371464937 -0.13636363636363635,1.016966910596562,0.359484363545629,0.12954629671515627 -0.1590909090909091,1.109097133478362,0.30545136954341157,0.17730727491896725 -0.18181818181818182,1.2155036692514802,0.41078703123494775,0.278132054354992 -0.20454545454545456,1.240364744140525,0.4495386657422614,0.24325833927098645 -0.2272727272727273,1.3675415276612095,0.48498952089032,0.2993594949139305 -0.25,1.3760718125889977,0.5444182414042883,0.41224338955120515 -0.2727272727272727,1.326873163796129,0.6713200265319066,0.35769642278453817 -0.29545454545454547,1.3393790008676056,0.5886390131277416,0.43976239636768627 -0.3181818181818182,1.2397191942392969,0.7124819212564624,0.3826700627788885 -0.34090909090909094,1.0819446399513792,0.6086780112326144,0.44457077973274045 -0.36363636363636365,1.0290124296423226,0.7013002850464785,0.4318029008149532 -0.38636363636363635,0.8277239972274139,0.7477462361656756,0.4857279179712937 -0.4090909090909091,0.7668578013120512,0.7867148700379903,0.566931815936147 -0.4318181818181818,0.5529892720204262,0.8069006971040593,0.4595981207031311 -0.4545454545454546,0.36748464644790385,0.8210117759056932,0.5874962724575715 -0.4772727272727273,0.1562543935657907,0.7699316545302316,0.5961911562624413 -0.5,0.06112706693370168,0.7662615661273579,0.5718025268824218 -0.5227272727272727,-0.19802734488942755,0.8302667022055111,0.545050166797336 -0.5454545454545454,-0.39814415573332185,0.7717791979016161,0.6354040665104196 -0.5681818181818182,-0.5730922450941506,0.7075550519475206,0.6183362625280298 -0.5909090909090909,-0.6963198269690203,0.7007393927698524,0.6679973113284232 -0.6136363636363636,-0.8573959240506596,0.6936359686103447,0.6675218363782977 -0.6363636363636364,-0.9899382598583981,0.7429025737484555,0.7550742254594045 -0.6590909090909091,-1.1033682129451465,0.6999427866169331,0.6700444925515121 -0.6818181818181819,-1.1092613470831716,0.6985922712302768,0.6363194151671093 -0.7045454545454546,-1.3033376913384347,0.6105679365955771,0.7003826917311372 -0.7272727272727273,-1.349183765371645,0.6044999455240224,0.7047770781520978 -0.75,-1.3778708522299443,0.5894548736639894,0.7625233280858257 -0.7727272727272727,-1.2927726577892935,0.5014660863164752,0.7355328062492384 -0.7954545454545455,-1.2265683258831592,0.4958960603347716,0.7092624629407969 -0.8181818181818182,-1.2220411000094382,0.3936742949994802,0.7606594343591807 -0.8409090909090909,-1.1669170869436671,0.3601564682079411,0.6225741212090208 -0.8636363636363636,-1.0517989512227595,0.30883305755378554,0.6429977042558713 -0.8863636363636364,-0.8431384878776291,0.2160677567810504,0.6201004320318494 -0.9090909090909092,-0.6857725776865154,0.24674243190903822,0.6368730106028997 -0.9318181818181819,-0.5283278541544792,0.1443244918011971,0.5759765906034046 -0.9545454545454546,-0.41000324998960175,0.1129650728247546,0.6635551384654466 -0.9772727272727273,-0.178692804632652,0.08035099715175534,0.60624192466182 -1.0,0.005834290457036083,0.022326558801497302,0.5279697099421288 diff --git a/sample_data/models/9/stdin.csv b/sample_data/models/9/stdin.csv deleted file mode 100644 index e9d38c4..0000000 --- a/sample_data/models/9/stdin.csv +++ /dev/null @@ -1,7 +0,0 @@ -n_samples,45.0 -p0,1.0 -p1,2.0 -p2,3.0 -a0,1.3371822158175504 -a1,0.7893791557605863 -a2,0.6945639493238038 diff --git a/scripts/gen_ts_models.py b/scripts/gen_ts_models.py new file mode 100644 index 0000000..54ecf9f --- /dev/null +++ b/scripts/gen_ts_models.py @@ -0,0 +1,243 @@ +""" +Generate TypeScript types from Pydantic models in plot_config.py. + +Run from the repo root: + + python scripts/gen_ts_models.py + +Writes: + src/trendify/viewer/templates/static/ts/src/lib/plot-config.generated.ts +""" + +from __future__ import annotations + +import json +import re +import sys +import textwrap +from pathlib import Path + +ROOT = Path(__file__).parent.parent +TS_OUT = ( + ROOT + / "src/trendify/viewer/templates/static/ts/src/lib" + / "plot-config.generated.ts" +) + +# --------------------------------------------------------------------------- +# JSON Schema → TypeScript converter +# --------------------------------------------------------------------------- + + +def _ref_name(ref: str) -> str: + """'#/$defs/FooBar' → 'FooBar'""" + return ref.rsplit("/", 1)[-1] + + +def _schema_to_ts(node: dict, defs: dict, extra_unions: dict[str, str]) -> str: + """Recursively convert a JSON Schema node to a TypeScript type string.""" + if "$ref" in node: + return _ref_name(node["$ref"]) + + if "anyOf" in node: + parts = [_schema_to_ts(s, defs, extra_unions) for s in node["anyOf"]] + return " | ".join(parts) + + if "const" in node: + return f'"{node["const"]}"' + + if "enum" in node: + return " | ".join(f'"{v}"' for v in node["enum"]) + + t = node.get("type") + + if t == "string": + return "string" + if t in ("number", "integer"): + return "number" + if t == "boolean": + return "boolean" + if t == "null": + return "null" + + if t == "array": + if "prefixItems" in node: + items = [_schema_to_ts(s, defs, extra_unions) for s in node["prefixItems"]] + return f"[{', '.join(items)}]" + if "items" in node: + items_node = node["items"] + if "oneOf" in items_node and "discriminator" in items_node: + refs = [ + _ref_name(s["$ref"]) for s in items_node["oneOf"] if "$ref" in s + ] + # the open-ended filter union uses the FilterEntry alias; other + # discriminated unions (e.g. Shape) get an explicit union type + if refs and all(r.endswith("Filter") for r in refs): + return "FilterEntry[]" + if refs: + return f"({' | '.join(refs)})[]" + return f"{_schema_to_ts(items_node, defs, extra_unions)}[]" + return "unknown[]" + + if t == "object": + add_props = node.get("additionalProperties") + props = node.get("properties", {}) + required = set(node.get("required", [])) + + if add_props and not props: + # Pure dict / Record + if add_props is True or add_props == {}: + return "Record" + return f"Record" + + # Inline object (rare — models surface as $defs, not inline) + lines = _props_to_ts_lines(props, required, defs, extra_unions) + if add_props is True: + lines.append(" [key: string]: unknown;") + body = "\n".join(lines) + return "{\n" + body + "\n}" + + return "unknown" + + +def _to_const_name(name: str) -> str: + """'DashStyle' -> 'DASH_STYLE'.""" + return re.sub(r"(? str: + """'shapes' -> 'Shape'.""" + base = name[:-1] if name.endswith("s") else name + return base[0].upper() + base[1:] + + +def _props_to_ts_lines( + props: dict, + required: set[str], + defs: dict, + extra_unions: dict[str, str], +) -> list[str]: + """Return one ' field?: Type;' string per property.""" + lines: list[str] = [] + for name, schema in props.items(): + # array of a non-filter discriminated union (e.g. Shape) -> named alias + items_node = schema.get("items") if schema.get("type") == "array" else None + if items_node and "oneOf" in items_node and "discriminator" in items_node: + refs = [_ref_name(s["$ref"]) for s in items_node["oneOf"] if "$ref" in s] + if refs and not all(r.endswith("Filter") for r in refs): + union_name = _singularize(name) + extra_unions[union_name] = " | ".join(refs) + ts_type = f"{union_name}[]" + else: + ts_type = _schema_to_ts(schema, defs, extra_unions) + else: + ts_type = _schema_to_ts(schema, defs, extra_unions) + opt = "" if name in required else "?" + lines.append(f" {name}{opt}: {ts_type};") + return lines + + +# --------------------------------------------------------------------------- +# $defs → top-level TypeScript declarations +# --------------------------------------------------------------------------- + + +def _def_to_ts( + name: str, schema: dict, defs: dict, extra_unions: dict[str, str] +) -> str: + """Convert one $defs entry to a TypeScript type or interface block.""" + # StrEnum / Literal → export type Name = "a" | "b"; + runtime values array + if "enum" in schema: + values = " | ".join(f'"{v}"' for v in schema["enum"]) + values_arr = ", ".join(f'"{v}"' for v in schema["enum"]) + const_name = _to_const_name(name) + return ( + f"export type {name} = {values};\n" + f"export const {const_name}_VALUES: {name}[] = [{values_arr}];\n" + ) + + # BaseModel → export interface Name { ... } + if schema.get("type") == "object": + props = schema.get("properties", {}) + required = set(schema.get("required", [])) + lines = _props_to_ts_lines(props, required, defs, extra_unions) + if schema.get("additionalProperties") is True: + lines.append(" [key: string]: unknown;") + body = "\n".join(lines) if lines else " [key: string]: unknown;" + return f"export interface {name} {{\n{body}\n}}\n" + + return f"// Unhandled $def: {name}\n" + + +def _top_level_interface(schema: dict, defs: dict, extra_unions: dict[str, str]) -> str: + """Generate the top-level model (PlotConfig) as an interface.""" + name = schema.get("title", "PlotConfig") + desc = schema.get("description", "") + props = schema.get("properties", {}) + required = set(schema.get("required", [])) + lines = _props_to_ts_lines(props, required, defs, extra_unions) + body = "\n".join(lines) + comment = f"/** {desc} */\n" if desc else "" + return f"{comment}export interface {name} {{\n{body}\n}}\n" + + +# --------------------------------------------------------------------------- +# Entry point +# --------------------------------------------------------------------------- + + +def main() -> None: + # Import inside main so sys.path manipulation is localised + sys.path.insert(0, str(ROOT / "src")) + from trendify.viewer.plot_config import PlotConfig + + schema = PlotConfig.model_json_schema() + defs: dict = schema.get("$defs", {}) + + blocks: list[str] = [] + extra_unions: dict[str, str] = {} + + # FilterEntry is the structural base for every discriminated filter object; + # emitted first so XAxisConfig/YAxisConfig can reference it. + blocks.append( + "/** a single filter in a filter stack — type-discriminated, open-ended properties. */\n" + "export type FilterEntry = { type: string; enabled?: boolean; [key: string]: unknown };\n" + ) + + # Emit each $def in definition order + for def_name, def_schema in defs.items(): + blocks.append(_def_to_ts(def_name, def_schema, defs, extra_unions)) + + # Emit the top-level PlotConfig interface + blocks.append(_top_level_interface(schema, defs, extra_unions)) + + # Emit named unions discovered while walking properties (e.g. Shape) + for union_name, union_body in extra_unions.items(): + blocks.append(f"export type {union_name} = {union_body};\n") + + # Emit the full JSON Schema document for additive client-side validation + # (see lib/schema-validate.ts). + blocks.append( + "/** Full JSON Schema for PlotConfig - used for additive client-side validation. */\n" + f"export const PLOT_CONFIG_SCHEMA: JsonSchemaNode = {json.dumps(schema, indent=2)};\n" + ) + + header = textwrap.dedent("""\ + // ============================================================ + // AUTO-GENERATED - do not edit manually. + // Source: src/trendify/viewer/plot_config.py + // Regenerate: python scripts/gen_ts_models.py + // ============================================================ + + import type { JsonSchemaNode } from "./schema-validate"; + + """) + + output = header + "\n".join(blocks) + TS_OUT.parent.mkdir(parents=True, exist_ok=True) + TS_OUT.write_text(output, encoding="utf-8") + print(f"Written → {TS_OUT.relative_to(ROOT)}") + + +if __name__ == "__main__": + main() diff --git a/scripts/matrix_generator.py b/scripts/matrix_generator.py new file mode 100644 index 0000000..5ce23c4 --- /dev/null +++ b/scripts/matrix_generator.py @@ -0,0 +1,792 @@ +""" +Not intended for use as a unit test. + +Comprehensive `ProductGenerator`-compatible fixture enumerating configuration combinations +across every `DataProduct` subclass (`Point2D`, `Scatter2D`, `Trace2D`, `AxLine`, +`HistogramEntry`, `TableEntry`) plus tags where several product types are deliberately mixed +together (a `Trace2D` sharing a tag with an `AxLine`, a `Trace2D` sharing a tag with a +`HistogramEntry`, a `TableEntry` sharing a tag with a `Point2D`, etc.), so the rendering +pipeline gets exercised against every styling axis and every same-tag product-type +combination it needs to support. + +`build_configuration_matrix` is the single entry point. Its signature matches +`ProductGenerator` (`Callable[[Path], ProductList]`), so it can be passed directly to +`generate_products`/`TrendifyPipeline.generate` like any real generator, or called directly +in a test and handed to `ProductStore.write_run`. +""" + +from __future__ import annotations + +from pathlib import Path + +import numpy as np + +from trendify.base.data_product import ProductList +from trendify.base.pen import Pen +from trendify.formats.format2d import AxisScale, Format2D +from trendify.formats.table import TableEntry +from trendify.plotting.axline import AxLine, LineOrientation +from trendify.plotting.histogram import HistogramEntry, HistogramStyle +from trendify.plotting.point import Point2D +from trendify.plotting.scatter import Scatter2D +from trendify.plotting.trace import Trace2D +from trendify.styling.grid import Grid, GridTheme +from trendify.styling.legend import Legend, LegendLocation +from trendify.styling.marker import Marker + +__all__ = ["build_configuration_matrix"] + +_TIME = np.linspace(0.1, 1.0, 40) # starts above 0 so log-scale x is always valid + +_MARKER_SYMBOL_NAMES = { + ".": "point", + "o": "circle", + "v": "triangle_down", + "^": "triangle_up", + "<": "triangle_left", + ">": "triangle_right", + "s": "square", + "p": "pentagon", + "*": "star", + "h": "hexagon", + "+": "plus", + "x": "x_mark", + "D": "diamond", +} + + +def _rising_wave(amplitude: float = 1.0) -> np.ndarray: + return amplitude * np.sin(_TIME * 2 * np.pi) + + +def _positive_wave(amplitude: float = 1.0) -> np.ndarray: + return amplitude * np.exp(_TIME) + + +def build_configuration_matrix(workdir: Path) -> ProductList: + """ + Returns one comprehensive `ProductList` covering the styling/config matrix described in + the module docstring. + + Args: + workdir (Path): unused for data generation (this fixture doesn't read from disk); + only `workdir.name` is used, to label metadata the way a real `ProductGenerator` + would when distinguishing runs. + + """ + products: ProductList = [] + run_label = workdir.name + + _add_axis_scale_combinations(products) + _add_grid_theme_combinations(products) + _add_legend_location_combinations(products) + _add_legend_option_combinations(products) + _add_format2d_limit_combinations(products) + _add_format2d_size_and_label_combinations(products) + _add_pen_color_combinations(products) + _add_pen_linestyle_combinations(products) + _add_pen_field_combinations(products) + _add_trace_marker_combinations(products) + _add_marker_symbol_combinations(products) + _add_marker_color_and_field_combinations(products) + _add_scatter_configuration_combinations(products) + _add_point_coordinate_type_combinations(products) + _add_axline_orientation_combinations(products) + _add_histogram_histtype_combinations(products) + _add_histogram_bins_combinations(products) + _add_histogram_alpha_combinations(products) + _add_histogram_style_edge_case_combinations(products) + _add_table_entry_value_type_combinations(products) + _add_tag_shape_combinations(products) + _add_metadata_combinations(products, run_label) + _add_mixed_product_type_combinations(products) + + return products + + +def _add_axis_scale_combinations(products: ProductList) -> None: + for scale_x, scale_y in [ + (AxisScale.LINEAR, AxisScale.LINEAR), + (AxisScale.LINEAR, AxisScale.LOG), + (AxisScale.LOG, AxisScale.LINEAR), + (AxisScale.LOG, AxisScale.LOG), + ]: + x = _TIME if scale_x == AxisScale.LINEAR else _positive_wave(1.0) + y = _rising_wave(1.0) if scale_y == AxisScale.LINEAR else _positive_wave(2.0) + tag_name = f"scale_x_{scale_x.value}_scale_y_{scale_y.value}" + Trace2D.from_xy( + tags=[("axis_scale_combinations", tag_name)], + x=x, + y=y, + pen=Pen(label=tag_name), + format2d=Format2D(scale_x=scale_x, scale_y=scale_y), + ).append_to_list(products) + + +def _add_grid_theme_combinations(products: ProductList) -> None: + grid_variants = { + "grid_omitted": None, + "grid_theme_matlab": Grid.from_theme(GridTheme.MATLAB), + "grid_theme_light": Grid.from_theme(GridTheme.LIGHT), + "grid_theme_dark": Grid.from_theme(GridTheme.DARK), + } + for tag_name, grid in grid_variants.items(): + Trace2D.from_xy( + tags=[("grid_theme_combinations", tag_name)], + x=_TIME, + y=_rising_wave(), + pen=Pen(label=tag_name), + format2d=Format2D(grid=grid), + ).append_to_list(products) + + +def _add_legend_location_combinations(products: ProductList) -> None: + for loc in LegendLocation: + tag_name = f"legend_loc_{loc.name.lower()}" + Trace2D.from_xy( + tags=[("legend_location_combinations", tag_name)], + x=_TIME, + y=_rising_wave(), + pen=Pen(label=tag_name), + format2d=Format2D(legend=Legend(loc=loc)), + ).append_to_list(products) + + +def _add_legend_option_combinations(products: ProductList) -> None: + legend_variants = { + "legend_visible_false": Legend(visible=False), + "legend_bbox_to_anchor_set": Legend(bbox_to_anchor=(1.05, 1)), + "legend_ncol_multiple": Legend(ncol=3), + "legend_fancybox_false": Legend(fancybox=False), + "legend_edgecolor_custom": Legend(edgecolor="blue"), + "legend_framealpha_zero": Legend(framealpha=0), + "legend_title_set": Legend(title="Legend title"), + } + for tag_name, legend in legend_variants.items(): + Trace2D.from_xy( + tags=[("legend_option_combinations", tag_name)], + x=_TIME, + y=_rising_wave(), + pen=Pen(label=tag_name), + format2d=Format2D(legend=legend), + ).append_to_list(products) + + +def _add_format2d_limit_combinations(products: ProductList) -> None: + limit_variants = { + "lim_x_min_set": Format2D(lim_x_min=0.3), + "lim_x_max_set": Format2D(lim_x_max=0.7), + "lim_y_min_set": Format2D(lim_y_min=-0.5), + "lim_y_max_set": Format2D(lim_y_max=0.5), + "lim_x_and_y_all_set": Format2D( + lim_x_min=0.2, lim_x_max=0.8, lim_y_min=-0.8, lim_y_max=0.8 + ), + } + for tag_name, format2d in limit_variants.items(): + Trace2D.from_xy( + tags=[("axis_limit_combinations", tag_name)], + x=_TIME, + y=_rising_wave(), + pen=Pen(label=tag_name), + format2d=format2d, + ).append_to_list(products) + + +def _add_format2d_size_and_label_combinations(products: ProductList) -> None: + field_variants = { + "figure_width_custom": Format2D(figure_width=12.0), + "figure_height_custom": Format2D(figure_height=10.0), + "title_fig_set": Format2D(title_fig="Figure title"), + "title_ax_set": Format2D(title_ax="Axes title"), + "label_x_set": Format2D(label_x="X axis label"), + "label_y_set": Format2D(label_y="Y axis label"), + } + for tag_name, format2d in field_variants.items(): + Trace2D.from_xy( + tags=[("format2d_field_combinations", tag_name)], + x=_TIME, + y=_rising_wave(), + pen=Pen(label=tag_name), + format2d=format2d, + ).append_to_list(products) + + +def _add_pen_color_combinations(products: ProductList) -> None: + color_variants = { + "pen_color_named_string": "tab:blue", + "pen_color_hex_string": "#2ca02c", + "pen_color_rgb_tuple": (0.8, 0.2, 0.4), + "pen_color_rgba_tuple": (0.8, 0.2, 0.4, 0.5), + } + for tag_name, color in color_variants.items(): + Trace2D.from_xy( + tags=[("pen_color_combinations", tag_name)], + x=_TIME, + y=_rising_wave(), + pen=Pen(label=tag_name, color=color), + ).append_to_list(products) + + +def _add_pen_linestyle_combinations(products: ProductList) -> None: + linestyle_variants = { + "pen_linestyle_solid": "-", + "pen_linestyle_dashed": "--", + "pen_linestyle_dotted": ":", + "pen_linestyle_dashdot": "-.", + "pen_linestyle_custom_dash_pattern": (0, (3, 1, 1, 1)), + } + for tag_name, linestyle in linestyle_variants.items(): + Trace2D.from_xy( + tags=[("pen_linestyle_combinations", tag_name)], + x=_TIME, + y=_rising_wave(), + pen=Pen(label=tag_name, linestyle=linestyle), + ).append_to_list(products) + + +def _add_pen_field_combinations(products: ProductList) -> None: + Trace2D.from_xy( + tags=[("pen_field_combinations", "pen_alpha_partial")], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="pen_alpha_partial", alpha=0.4), + ).append_to_list(products) + Trace2D.from_xy( + tags=[("pen_field_combinations", "pen_alpha_zero")], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="pen_alpha_zero", alpha=0.0), + ).append_to_list(products) + Trace2D.from_xy( + tags=[("pen_field_combinations", "pen_size_thick")], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="pen_size_thick", size=6.0), + ).append_to_list(products) + Trace2D.from_xy( + tags=[("pen_field_combinations", "pen_label_omitted")], + x=_TIME, + y=_rising_wave(), + pen=Pen(label=None), + ).append_to_list(products) + Trace2D.from_xy( + tags=[("pen_field_combinations", "pen_zorder_layering")], + x=_TIME, + y=_rising_wave(1.0), + pen=Pen(label="pen_zorder_layering_back", zorder=1), + ).append_to_list(products) + Trace2D.from_xy( + tags=[("pen_field_combinations", "pen_zorder_layering")], + x=_TIME, + y=_rising_wave(1.2), + pen=Pen(label="pen_zorder_layering_front", zorder=5), + ).append_to_list(products) + + +def _add_trace_marker_combinations(products: ProductList) -> None: + Trace2D.from_xy( + tags=[("trace_marker_combinations", "trace_marker_omitted")], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="trace_marker_omitted"), + ).append_to_list(products) + Trace2D.from_xy( + tags=[("trace_marker_combinations", "trace_marker_every_point")], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="trace_marker_every_point"), + marker=Marker(symbol="o", color="tab:blue"), + ).append_to_list(products) + Trace2D.from_xy( + tags=[("trace_marker_combinations", "trace_markevery_5")], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="trace_markevery_5"), + marker=Marker(symbol="^", color="tab:red", size=8.0), + markevery=5, + ).append_to_list(products) + + +def _add_marker_symbol_combinations(products: ProductList) -> None: + for index, (symbol, name) in enumerate(_MARKER_SYMBOL_NAMES.items()): + Point2D( + tags=[("marker_symbol_combinations", f"marker_symbol_{name}")], + x=float(index), + y=float(index), + marker=Marker(symbol=symbol, label=f"marker_symbol_{name}"), + ).append_to_list(products) + Point2D( + tags=[("marker_symbol_combinations", "marker_omitted")], + x=0.0, + y=0.0, + marker=None, + ).append_to_list(products) + + +def _add_marker_color_and_field_combinations(products: ProductList) -> None: + color_variants = { + "marker_color_named_string": "tab:orange", + "marker_color_hex_string": "#d62728", + "marker_color_rgb_tuple": (0.1, 0.6, 0.9), + "marker_color_rgba_tuple": (0.1, 0.6, 0.9, 0.4), + } + for index, (tag_name, color) in enumerate(color_variants.items()): + Point2D( + tags=[("marker_color_combinations", tag_name)], + x=float(index), + y=float(index) ** 2, + marker=Marker(label=tag_name, color=color), + ).append_to_list(products) + + Point2D( + tags=[("marker_field_combinations", "marker_size_large")], + x=1.0, + y=1.0, + marker=Marker(label="marker_size_large", size=20.0), + ).append_to_list(products) + Point2D( + tags=[("marker_field_combinations", "marker_alpha_partial")], + x=1.0, + y=1.0, + marker=Marker(label="marker_alpha_partial", alpha=0.3), + ).append_to_list(products) + + +def _add_scatter_configuration_combinations(products: ProductList) -> None: + rng = np.random.default_rng(seed=6) + x = rng.uniform(size=60) + y = rng.uniform(size=60) + + Scatter2D.from_xy( + tags=[("scatter_configuration_combinations", "scatter_default_marker")], + x=x, + y=y, + ).append_to_list(products) + + color_variants = { + "scatter_marker_color_named_string": "tab:green", + "scatter_marker_color_hex_string": "#9467bd", + "scatter_marker_color_rgb_tuple": (0.3, 0.3, 0.9), + "scatter_marker_color_rgba_tuple": (0.3, 0.3, 0.9, 0.5), + } + for tag_name, color in color_variants.items(): + Scatter2D.from_xy( + tags=[("scatter_configuration_combinations", tag_name)], + x=x, + y=y, + marker=Marker(label=tag_name, color=color), + ).append_to_list(products) + + Scatter2D.from_xy( + tags=[("scatter_configuration_combinations", "scatter_marker_symbol_star")], + x=x, + y=y, + marker=Marker(symbol="*", label="scatter_marker_symbol_star", size=15.0), + ).append_to_list(products) + Scatter2D.from_xy( + tags=[("scatter_configuration_combinations", "scatter_marker_alpha_partial")], + x=x, + y=y, + marker=Marker(label="scatter_marker_alpha_partial", alpha=0.25), + ).append_to_list(products) + + +def _add_point_coordinate_type_combinations(products: ProductList) -> None: + Point2D( + tags=[("point_coordinate_type_combinations", "x_and_y_numeric")], + x=1.0, + y=2.0, + marker=Marker(label="x_and_y_numeric"), + ).append_to_list(products) + + category_values = {"low": 1.0, "medium": 2.0, "high": 3.0} + for category, value in category_values.items(): + Point2D( + tags=[("point_coordinate_type_combinations", "x_categorical_string")], + x=category, + y=value, + marker=Marker(label=category), + ).append_to_list(products) + + +def _add_axline_orientation_combinations(products: ProductList) -> None: + AxLine( + tags=[("axline_orientation_combinations", "axline_horizontal")], + value=0.5, + orientation=LineOrientation.HORIZONTAL, + pen=Pen(label="axline_horizontal", color="r"), + ).append_to_list(products) + AxLine( + tags=[("axline_orientation_combinations", "axline_vertical")], + value=0.5, + orientation=LineOrientation.VERTICAL, + pen=Pen(label="axline_vertical", color="b"), + ).append_to_list(products) + + +def _add_histogram_histtype_combinations(products: ProductList) -> None: + rng = np.random.default_rng(seed=1) + for histtype in ["bar", "barstacked", "step", "stepfilled"]: + tag_name = f"histogram_histtype_{histtype}" + for value in rng.normal(size=30): + HistogramEntry( + tags=[("histogram_histtype_combinations", tag_name)], + value=float(value), + style=HistogramStyle(histtype=histtype, label=tag_name), + ).append_to_list(products) + + +def _add_histogram_bins_combinations(products: ProductList) -> None: + rng = np.random.default_rng(seed=2) + bins_variants = { + "histogram_bins_int": 10, + "histogram_bins_list": [-3, -2, -1, 0, 1, 2, 3], + "histogram_bins_tuple": (-3, 0, 3), + } + for tag_name, bins in bins_variants.items(): + for value in rng.normal(size=30): + HistogramEntry( + tags=[("histogram_bins_combinations", tag_name)], + value=float(value), + style=HistogramStyle(bins=bins, label=tag_name), + ).append_to_list(products) + + +def _add_histogram_alpha_combinations(products: ProductList) -> None: + rng = np.random.default_rng(seed=3) + alpha_variants = { + "histogram_alpha_face_low": HistogramStyle( + alpha_face=0.15, label="histogram_alpha_face_low" + ), + "histogram_alpha_face_high": HistogramStyle( + alpha_face=0.9, label="histogram_alpha_face_high" + ), + "histogram_alpha_edge_set": HistogramStyle( + alpha_edge=1.0, label="histogram_alpha_edge_set" + ), + } + for tag_name, style in alpha_variants.items(): + for value in rng.normal(size=30): + HistogramEntry( + tags=[("histogram_alpha_combinations", tag_name)], + value=float(value), + style=style, + ).append_to_list(products) + + +def _add_histogram_style_edge_case_combinations(products: ProductList) -> None: + rng = np.random.default_rng(seed=4) + for value in rng.normal(size=30): + HistogramEntry( + tags=[("histogram_style_edge_cases", "histogram_style_omitted")], + value=float(value), + style=None, + ).append_to_list(products) + + for value in rng.normal(loc=-1, scale=0.5, size=20): + HistogramEntry( + tags=[("histogram_style_edge_cases", "histogram_multiple_styles_grouped")], + value=float(value), + style=HistogramStyle(color="tab:blue", label="group_a"), + ).append_to_list(products) + for value in rng.normal(loc=1, scale=0.5, size=20): + HistogramEntry( + tags=[("histogram_style_edge_cases", "histogram_multiple_styles_grouped")], + value=float(value), + style=HistogramStyle(color="tab:red", label="group_b"), + ).append_to_list(products) + + +def _add_table_entry_value_type_combinations(products: ProductList) -> None: + TableEntry( + tags=[("table_value_type_combinations", "table_value_float")], + row="row_1", + col="col_1", + value=3.14, + ).append_to_list(products) + TableEntry( + tags=[("table_value_type_combinations", "table_value_string")], + row="row_1", + col="col_1", + value="a_string_value", + ).append_to_list(products) + TableEntry( + tags=[("table_value_type_combinations", "table_value_bool")], + row="row_1", + col="col_1", + value=True, + ).append_to_list(products) + TableEntry( + tags=[("table_value_type_combinations", "table_unit_set")], + row="row_1", + col="col_1", + value=2.5, + unit="meters", + ).append_to_list(products) + TableEntry( + tags=[("table_value_type_combinations", "table_row_col_numeric")], + row=1.0, + col=2.0, + value=9.9, + ).append_to_list(products) + for row, col, value in [ + ("row_1", "col_1", 1.0), + ("row_1", "col_2", 2.0), + ("row_2", "col_1", 3.0), + ("row_2", "col_2", 4.0), + ]: + TableEntry( + tags=[("table_value_type_combinations", "table_pivotable_grid")], + row=row, + col=col, + value=value, + ).append_to_list(products) + + +def _add_tag_shape_combinations(products: ProductList) -> None: + Point2D(tags=["tag_shape_scalar_string"], x=1.0, y=1.0).append_to_list(products) + Point2D(tags=[2024], x=1.0, y=1.0).append_to_list(products) + Point2D( + tags=[("tag_shape_tuple_of_strings", "nested_leaf")], x=1.0, y=1.0 + ).append_to_list(products) + Point2D( + tags=[("tag_shape_tuple_mixed_str_and_int", 2024)], x=1.0, y=1.0 + ).append_to_list(products) + Point2D( + tags=[("tag_shape_deeply_nested", "group_a", "subgroup_b", "leaf")], + x=1.0, + y=1.0, + ).append_to_list(products) + + +def _add_metadata_combinations(products: ProductList, run_label: str) -> None: + Point2D( + tags=[("metadata_combinations", "metadata_set")], + x=1.0, + y=1.0, + ).append_to_list(products).set_metadata( + {"run": run_label, "source": "product_matrix"} + ) + Point2D( + tags=[("metadata_combinations", "metadata_empty")], + x=1.0, + y=1.0, + ).append_to_list(products) + + +def _add_mixed_product_type_combinations(products: ProductList) -> None: + rng = np.random.default_rng(seed=5) + + trace_and_axline_tag = ( + "mixed_product_type_combinations", + "trace_and_axline_same_plot", + ) + Trace2D.from_xy( + tags=[trace_and_axline_tag], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="trace_and_axline_same_plot"), + ).append_to_list(products) + AxLine( + tags=[trace_and_axline_tag], + value=0.0, + orientation=LineOrientation.HORIZONTAL, + pen=Pen(label="zero_reference_line", color="k"), + ).append_to_list(products) + + point_trace_axline_tag = ( + "mixed_product_type_combinations", + "point_trace_and_axline_same_plot", + ) + Point2D( + tags=[point_trace_axline_tag], + x=0.5, + y=0.5, + marker=Marker(label="marked_sample_point", color="tab:purple"), + ).append_to_list(products) + Trace2D.from_xy( + tags=[point_trace_axline_tag], + x=_TIME, + y=_rising_wave(0.8), + pen=Pen(label="point_trace_and_axline_same_plot"), + ).append_to_list(products) + AxLine( + tags=[point_trace_axline_tag], + value=0.5, + orientation=LineOrientation.VERTICAL, + pen=Pen(label="midpoint_reference_line", color="g"), + ).append_to_list(products) + + trace_and_histogram_tag = ( + "mixed_product_type_combinations", + "trace_and_histogram_shared_tag", + ) + Trace2D.from_xy( + tags=[trace_and_histogram_tag], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="trace_and_histogram_shared_tag"), + ).append_to_list(products) + for value in rng.normal(size=30): + HistogramEntry( + tags=[trace_and_histogram_tag], value=float(value) + ).append_to_list(products) + + point_and_histogram_tag = ( + "mixed_product_type_combinations", + "point_and_histogram_shared_tag", + ) + Point2D(tags=[point_and_histogram_tag], x=0.0, y=0.0).append_to_list(products) + for value in rng.normal(size=30): + HistogramEntry( + tags=[point_and_histogram_tag], value=float(value) + ).append_to_list(products) + + scatter_and_trace_tag = ( + "mixed_product_type_combinations", + "scatter_and_trace_same_plot", + ) + Scatter2D.from_xy( + tags=[scatter_and_trace_tag], + x=rng.uniform(size=30), + y=rng.uniform(size=30), + marker=Marker(label="scattered_samples", color="tab:purple"), + ).append_to_list(products) + Trace2D.from_xy( + tags=[scatter_and_trace_tag], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="scatter_and_trace_same_plot"), + ).append_to_list(products) + + scatter_and_histogram_tag = ( + "mixed_product_type_combinations", + "scatter_and_histogram_shared_tag", + ) + Scatter2D.from_xy( + tags=[scatter_and_histogram_tag], + x=rng.uniform(size=30), + y=rng.uniform(size=30), + ).append_to_list(products) + for value in rng.normal(size=30): + HistogramEntry( + tags=[scatter_and_histogram_tag], value=float(value) + ).append_to_list(products) + + axline_and_histogram_tag = ( + "mixed_product_type_combinations", + "axline_and_histogram_shared_tag", + ) + histogram_values = rng.normal(loc=2.0, scale=1.0, size=30) + for value in histogram_values: + HistogramEntry( + tags=[axline_and_histogram_tag], + value=float(value), + style=HistogramStyle(label="axline_and_histogram_shared_tag"), + ).append_to_list(products) + AxLine( + tags=[axline_and_histogram_tag], + value=float(np.mean(histogram_values)), + orientation=LineOrientation.VERTICAL, + pen=Pen(label="histogram_mean_reference_line", color="r", zorder=2), + ).append_to_list(products) + + all_xy_types_and_histogram_tag = ( + "mixed_product_type_combinations", + "point_trace_axline_and_histogram_shared_tag", + ) + Point2D( + tags=[all_xy_types_and_histogram_tag], + x=0.2, + y=0.2, + marker=Marker(label="sample_point"), + ).append_to_list(products) + Trace2D.from_xy( + tags=[all_xy_types_and_histogram_tag], + x=_TIME, + y=_rising_wave(0.6), + pen=Pen(label="sample_trace"), + ).append_to_list(products) + AxLine( + tags=[all_xy_types_and_histogram_tag], + value=0.0, + orientation=LineOrientation.HORIZONTAL, + pen=Pen(label="zero_reference_line", color="k"), + ).append_to_list(products) + for value in rng.normal(size=30): + HistogramEntry( + tags=[all_xy_types_and_histogram_tag], value=float(value) + ).append_to_list(products) + + format2d_present_and_omitted_tag = ( + "mixed_product_type_combinations", + "format2d_present_and_omitted_shared_tag", + ) + Point2D(tags=[format2d_present_and_omitted_tag], x=0.0, y=0.0).append_to_list( + products + ) + Trace2D.from_xy( + tags=[format2d_present_and_omitted_tag], + x=_TIME, + y=_rising_wave(), + pen=Pen(label="format2d_present_and_omitted_shared_tag"), + format2d=Format2D(grid=Grid.from_theme(GridTheme.MATLAB)), + ).append_to_list(products) + + table_and_point_tag = ( + "mixed_product_type_combinations", + "table_and_point_shared_tag", + ) + TableEntry( + tags=[table_and_point_tag], row="row_1", col="col_1", value=1.0 + ).append_to_list(products) + Point2D(tags=[table_and_point_tag], x=1.0, y=1.0).append_to_list(products) + + table_point_and_histogram_tag = ( + "mixed_product_type_combinations", + "table_point_and_histogram_shared_tag", + ) + TableEntry( + tags=[table_point_and_histogram_tag], row="row_1", col="col_1", value=1.0 + ).append_to_list(products) + Point2D(tags=[table_point_and_histogram_tag], x=1.0, y=1.0).append_to_list(products) + for value in rng.normal(size=30): + HistogramEntry( + tags=[table_point_and_histogram_tag], value=float(value) + ).append_to_list(products) + + every_product_type_tag = ( + "mixed_product_type_combinations", + "table_point_scatter_trace_axline_and_histogram_shared_tag", + ) + TableEntry( + tags=[every_product_type_tag], row="row_1", col="col_1", value=1.0 + ).append_to_list(products) + Point2D( + tags=[every_product_type_tag], + x=0.2, + y=0.2, + marker=Marker(label="sample_point"), + ).append_to_list(products) + Scatter2D.from_xy( + tags=[every_product_type_tag], + x=rng.uniform(size=30), + y=rng.uniform(size=30), + marker=Marker(label="scattered_samples", color="tab:cyan"), + ).append_to_list(products) + Trace2D.from_xy( + tags=[every_product_type_tag], + x=_TIME, + y=_rising_wave(0.6), + pen=Pen(label="sample_trace"), + ).append_to_list(products) + AxLine( + tags=[every_product_type_tag], + value=0.0, + orientation=LineOrientation.HORIZONTAL, + pen=Pen(label="zero_reference_line", color="k"), + ).append_to_list(products) + for value in rng.normal(size=30): + HistogramEntry( + tags=[every_product_type_tag], value=float(value) + ).append_to_list(products) diff --git a/src/trendify/__init__.py b/src/trendify/__init__.py index 0dd05b3..a7112ee 100644 --- a/src/trendify/__init__.py +++ b/src/trendify/__init__.py @@ -57,7 +57,6 @@ generate_products, get_sorted_dirs, histogrammer, - make_include_files, render, render_assets, table_builder, @@ -80,12 +79,14 @@ LineOrientation, PlotlyFigure, Point2D, + Scatter2D, SingleAxisFigure, Trace2D, axline, figure, histogram, point, + scatter, trace, ) from trendify.store import ( @@ -143,6 +144,7 @@ "ProductStore", "ProductType", "R", + "Scatter2D", "SingleAxisFigure", "TableBuilder", "TableEntry", @@ -181,7 +183,6 @@ "legend", "log", "make_example_data", - "make_include_files", "marker", "pen", "pipeline", @@ -190,6 +191,7 @@ "product_store", "render", "render_assets", + "scatter", "set_log_level", "setup_logger", "store", diff --git a/src/trendify/cli.py b/src/trendify/cli.py index a2df73b..2560f04 100644 --- a/src/trendify/cli.py +++ b/src/trendify/cli.py @@ -12,25 +12,98 @@ import logging import os import sys +from importlib.metadata import version from pathlib import Path from typing import cast import typer +from rich.align import Align +from rich.console import Console +from rich.panel import Panel +from rich.text import Text from trendify.base.data_product import ProductGenerator +from trendify.color import Color +from trendify.examples import make_example_data from trendify.log import setup_logger from trendify.pipeline import TrendifyPipeline +from trendify.store.product_store import ProductStore __all__ = ["app"] logger = logging.getLogger(__name__) +console = Console() +VERSION = version("trendify") + +_LOGO_LINES = [ + "████████╗██████╗ ███████╗███╗ ██╗██████╗ ██╗███████╗██╗ ██╗", + "╚══██╔══╝██╔══██╗██╔════╝████╗ ██║██╔══██╗██║██╔════╝╚██╗ ██╔╝", + " ██║ ██████╔╝█████╗ ██╔██╗ ██║██║ ██║██║█████╗ ╚████╔╝ ", + " ██║ ██╔══██╗██╔══╝ ██║╚██╗██║██║ ██║██║██╔══╝ ╚██╔╝ ", + " ██║ ██║ ██║███████╗██║ ╚████║██████╔╝██║██║ ██║ ", + " ╚═╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝╚═════╝ ╚═╝╚═╝ ╚═╝ ", +] +_SHADES = [ + Color.ROSE_300, + Color.ROSE_400, + Color.ROSE_500, + Color.ROSE_600, + Color.ROSE_700, + Color.ROSE_800, +] + + +def print_logo(): + body = Text() + for i, (line, shade) in enumerate(zip(_LOGO_LINES, _SHADES)): + body.append(line, style=f"bold {shade}") + if i != len(_LOGO_LINES) - 1: + body.append("\n") + + console.print( + Panel( + Align.center(body), + expand=False, + border_style="indian_red1", + subtitle=f"[dim]v{VERSION}[/dim]", + ) + ) + app = typer.Typer( name="trendify", help="Generate visual data products and static assets from raw data.", + rich_markup_mode="rich", no_args_is_help=True, ) + +def version_callback(value: bool): + if value: + console.print( + f"[bold indian_red1]trendify[/bold indian_red1] [bold white]{VERSION}" + ) + raise typer.Exit() + + +@app.callback( + epilog="Check out the [link=https://github.com/talbotknighton/trendify/]full documentation[/link] for more info." +) +def main( + ctx: typer.Context, + version: bool = typer.Option( + False, + "--version", + callback=version_callback, + is_eager=True, + help="Show version and exit.", + ), +): + """ + [bold indian_red1]Trendify:[/bold indian_red1] Generate visual data products and static assets from raw data. + """ + + InputDirectoriesOption = typer.Option( ..., "-i", @@ -47,32 +120,73 @@ ), ) OutputDirectoryOption = typer.Option( - ..., "-o", "--output-directory", help="Directory the pipeline reads/writes under." + ..., + "-o", + "--output-directory", + help="Directory the pipeline reads/writes under.", ) NProcsOption = typer.Option( - 1, "-n", "--n-procs", help="Number of parallel worker processes." + 1, + "-n", + "--n-procs", + help="Number of parallel worker processes.", + min=1, + max=os.cpu_count(), ) VerboseOption = typer.Option( 0, "-v", "--verbose", count=True, help="Increase log verbosity." ) +QuietOption = typer.Option( + 0, "--quiet", "-q", count=True, help="Decrease log verbosity." +) DpiOption = typer.Option( - 500, "--dpi", help="Resolution (dots per inch) for saved matplotlib figures." + 500, + "--dpi", + help="Resolution (dots per inch) for saved matplotlib figures.", + min=1, ) NoTablesOption = typer.Option( False, "--no-tables", help="Suppress TableEntry CSV output." ) NoXyPlotsOption = typer.Option( - False, "--no-xy-plots", help="Suppress Point2D/Trace2D/AxLine plot output." + False, + "--no-xy-plots", + help="Suppress Point2D/Scatter2D/Trace2D/AxLine plot output.", ) NoHistogramsOption = typer.Option( - False, "--no-histograms", help="Suppress HistogramEntry plot output." + False, + "--no-histograms", + help="Suppress HistogramEntry plot output.", +) +DbPathArgument = typer.Argument( + ..., + help="Path to a trendify.db file.", +) +ExampleWorkdirOption = typer.Option( + ..., + "-w", + "--workdir", + help="Directory in which to generate sample data.", +) +ExampleNFoldersOption = typer.Option( + 10, + "-n", + "--n-folders", + help="Number of sample data sets (subfolders) to generate.", ) -NoIncludeFilesOption = typer.Option( - False, "--no-include-files", help="Suppress MkDocs include.md generation." +HostOption = typer.Option( + "127.0.0.1", + "--host", + help="Interface to bind the dashboard server to.", +) +PortOption = typer.Option( + 8000, + "--port", + help="Port to bind the dashboard server to.", ) -def _configure_logging(verbose: int) -> None: +def _configure_logging(verbose: int, quiet: int, logo: bool = True) -> None: """ Configures the root logger via `trendify.log.setup_logger` (Rich console output plus a rotating `trendify.log` file) rather than a one-off `logging.basicConfig`. This way a CLI @@ -80,21 +194,12 @@ def _configure_logging(verbose: int) -> None: `setup_logger()` themselves, and `generate_products`'s multiprocess path picks up these same handlers via its `QueueListener` (see `trendify.generator.generate`). """ - level = logging.DEBUG if verbose >= 1 else logging.INFO + if logo: + print_logo() + level = logging.INFO - (verbose * 10) + (quiet * 10) setup_logger(level=level) -def _cap_n_procs(n_procs: int) -> int: - """Caps `n_procs` at `5 * os.cpu_count()`, as a precaution against overwhelming the machine.""" - max_procs = 5 * (os.cpu_count() or 1) - if n_procs > max_procs: - logger.info( - f"Requested {n_procs = } exceeds {max_procs = }; capping to {max_procs}" - ) - return max_procs - return n_procs - - def _resolve_input_directories(patterns: list[str]) -> list[Path]: """ Expands glob patterns (and plain paths) into a list of directories. A match on a file @@ -102,7 +207,7 @@ def _resolve_input_directories(patterns: list[str]) -> list[Path]: """ dirs: list[Path] = [] for pattern in patterns: - for match in glob_module.glob(pattern, root_dir=os.getcwd(), recursive=True): + for match in glob_module.glob(pattern, root_dir=Path.cwd(), recursive=True): path = Path(match) dirs.append((path.parent if path.is_file() else path).resolve()) return dirs @@ -130,7 +235,17 @@ def _resolve_product_generator(spec: str) -> ProductGenerator: ) if Path(module_path).exists(): - module = _import_from_path(Path(module_path).stem, Path(module_path)) + file_path = Path(module_path).resolve() + # `n_procs > 1` sends `product_generator` to worker processes via pickle, which + # serializes a module-level function as a `(module_name, qualname)` reference, not + # the code itself. Worker processes (forkserver/spawn) re-import that module by name + # using the `sys.path` snapshotted when the process pool starts, so the file's parent + # directory must be on `sys.path` *before* that happens, not just registered in this + # process's `sys.modules` (which `_import_from_path` alone would do). + parent_dir = str(file_path.parent) + if parent_dir not in sys.path: + sys.path.insert(0, parent_dir) + module = _import_from_path(file_path.stem, file_path) else: module = importlib.import_module(module_path) @@ -140,38 +255,38 @@ def _resolve_product_generator(spec: str) -> ProductGenerator: return cast(ProductGenerator, obj) -@app.command() +@app.command(name="generate") def generate( + ctx: typer.Context, input_directories: list[str] = InputDirectoriesOption, product_generator: str = ProductGeneratorOption, output_directory: Path = OutputDirectoryOption, n_procs: int = NProcsOption, verbose: int = VerboseOption, + quiet: int = QuietOption, ) -> None: """Generate tagged data products from raw data directories.""" - _configure_logging(verbose) - pipeline = TrendifyPipeline( - output_dir=output_directory, n_procs=_cap_n_procs(n_procs) - ) - total = pipeline.generate( + _configure_logging(verbose, quiet) + pipeline = TrendifyPipeline(output_dir=output_directory, n_procs=n_procs) + _total = pipeline.generate( product_generator=_resolve_product_generator(product_generator), data_dirs=_resolve_input_directories(input_directories), ) - typer.echo(f"Wrote {total} products to {pipeline.db_path}") -@app.command() +@app.command(name="render") def render( + ctx: typer.Context, output_directory: Path = OutputDirectoryOption, dpi: int = DpiOption, no_tables: bool = NoTablesOption, no_xy_plots: bool = NoXyPlotsOption, no_histograms: bool = NoHistogramsOption, - no_include_files: bool = NoIncludeFilesOption, verbose: int = VerboseOption, + quiet: int = QuietOption, ) -> None: """Render CSV tables and matplotlib figures from already-generated products.""" - _configure_logging(verbose) + _configure_logging(verbose, quiet) pipeline = TrendifyPipeline(output_dir=output_directory) pipeline.render( dpi=dpi, @@ -179,13 +294,12 @@ def render( no_xy_plots=no_xy_plots, no_histograms=no_histograms, ) - if not no_include_files: - pipeline.make_include_files() typer.echo(f"Rendered assets to {pipeline.assets_dir}") -@app.command() +@app.command(name="run") def run( + ctx: typer.Context, input_directories: list[str] = InputDirectoriesOption, product_generator: str = ProductGeneratorOption, output_directory: Path = OutputDirectoryOption, @@ -194,14 +308,12 @@ def run( no_tables: bool = NoTablesOption, no_xy_plots: bool = NoXyPlotsOption, no_histograms: bool = NoHistogramsOption, - no_include_files: bool = NoIncludeFilesOption, verbose: int = VerboseOption, + quiet: int = QuietOption, ) -> None: """Generate products and render assets in one step.""" - _configure_logging(verbose) - pipeline = TrendifyPipeline( - output_dir=output_directory, n_procs=_cap_n_procs(n_procs) - ) + _configure_logging(verbose, quiet) + pipeline = TrendifyPipeline(output_dir=output_directory, n_procs=n_procs) total = pipeline.run( product_generator=_resolve_product_generator(product_generator), data_dirs=_resolve_input_directories(input_directories), @@ -209,10 +321,117 @@ def run( no_tables=no_tables, no_xy_plots=no_xy_plots, no_histograms=no_histograms, - no_include_files=no_include_files, ) typer.echo(f"Wrote {total} products; assets under {pipeline.assets_dir}") +@app.command(name="example-data") +def example_data( + ctx: typer.Context, + workdir: Path = ExampleWorkdirOption, + n_folders: int = ExampleNFoldersOption, + verbose: int = VerboseOption, + quiet: int = QuietOption, +) -> None: + """Generate sample raw-data directories for exercising the trendify pipeline.""" + _configure_logging(verbose, quiet) + make_example_data(workdir=workdir, n_folders=n_folders) + typer.echo(f"Wrote {n_folders} sample data folders under {workdir / 'models'}") + + +def get_local_ip(): + """Returns the actual local IP address of this machine.""" + import socket + + s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + try: + # Does not actually need to connect to 8.8.8.8 to work + s.connect(("8.8.8.8", 1)) + ip = s.getsockname()[0] + except Exception: + ip = "127.0.0.1" + finally: + s.close() + return ip + + +@app.command(name="serve") +def serve( + ctx: typer.Context, + db_path: Path = DbPathArgument, + host: str = HostOption, + port: int = PortOption, + reload: bool = typer.Option( + False, + "--reload", + help="Auto-restart the server when trendify's Python source changes (development only).", + ), + verbose: int = VerboseOption, + quiet: int = QuietOption, +) -> None: + """Launch a local web dashboard for browsing a trendify.db's data products.""" + _configure_logging(verbose, quiet, logo=False) + db_path = db_path.resolve() + if not db_path.exists(): + raise typer.BadParameter(f"No such database file: {db_path}") + + # Fail fast on a bad/corrupt db before uvicorn even starts, rather than a 500 on first request. + with ProductStore.open(db_path, readonly=True): + pass + + # Deferred import: keeps `trendify.cli` import light for callers of generate/render/run + # who never touch the dashboard (FastAPI/Jinja2/uvicorn stay unimported until needed). + import uvicorn + + from trendify.viewer.app import create_app + + if reload: + connection_info_suffix = "\n\n[yellow]--reload is on: editing trendify's Python source will restart the server.[/yellow]" + else: + connection_info_suffix = "" + + password = None # not supported yet + if password: + connection_info = "[yellow]Auth enabled. Use [u]any[/u] username and your provided password.[/yellow]\n\n" + else: + connection_info = "" + + connection_info += ( + f"Local: [bold indian_red1 u]http://127.0.0.1:{port}[/bold indian_red1 u]" + ) + if host == "0.0.0.0": + connection_info += f"\nMobile: [bold indian_red1 u]http://{get_local_ip()}:{port}[/bold indian_red1 u]" + else: + connection_info += "\n\n[dim]Tip: To view on other devices (and to make pages shareable), run with[/dim] [yellow]--host 0.0.0.0[/yellow]" + connection_info += connection_info_suffix + + console.print( + Panel( + f"""[bold green]Trendify Viewer is Live![/bold green]\n\n{connection_info}\n\n[yellow]Press CTRL+C to stop[/yellow]""", + border_style="indian_red1", + expand=False, + title="Trendify Viewer", + ) + ) + + if reload: + # uvicorn's reload mode re-imports the app in a fresh subprocess on every source change, + # so it needs an importable factory string rather than the live `create_app(db_path)` + # instance -- the db_path is handed across that boundary via an env var instead + # (`create_app_from_env` reads it back on the reloaded side). + os.environ["TRENDIFY_DB_PATH"] = str(db_path) + uvicorn.run( + "trendify.viewer.app:create_app_from_env", + factory=True, + host=host, + port=port, + reload=True, + reload_dirs=[str(Path(__file__).parent)], + log_level="critical", + ) + else: + uvicorn.run(create_app(db_path), host=host, port=port, log_level="critical") + + if __name__ == "__main__": app() diff --git a/src/trendify/examples.py b/src/trendify/examples.py index 13e5124..c3af34d 100644 --- a/src/trendify/examples.py +++ b/src/trendify/examples.py @@ -35,23 +35,27 @@ def make_example_data(workdir: Path, n_folders: int = 10): models_dir = workdir.joinpath("models") models_dir.mkdir(parents=True, exist_ok=True) + if not (models_dir / ".gitignore").exists(): + (models_dir / ".gitignore").write_text("*") + for n in range(n_folders): subdir = models_dir.joinpath(str(n)) subdir.mkdir(exist_ok=True, parents=True) - n_samples = np.random.randint(low=40, high=50) + rng = np.random.default_rng(seed=n) + + n_samples = rng.integers(low=40, high=50) t = np.linspace(0, 1, n_samples) periods = [1, 2, 3] - amplitudes = np.random.uniform(low=0.5, high=1.5, size=3) + amplitudes = rng.uniform(low=0.5, high=1.5, size=3) - inputs = {"n_samples": n_samples} + inputs: dict[str, int | float] = {"n_samples": int(n_samples)} inputs.update({f"p{i}": p for i, p in enumerate(periods)}) - inputs.update({f"a{i}": a for i, a in enumerate(amplitudes)}) + inputs.update({f"a{i}": float(a) for i, a in enumerate(amplitudes)}) pl.DataFrame( {"key": list(inputs.keys()), "value": [str(v) for v in inputs.values()]} ).write_csv(subdir.joinpath("stdin.csv"), include_header=False) - rng = np.random.default_rng(seed=42) noise_level = 0.05 waves = [ a * np.sin(t * (2 * np.pi / p)) + noise_level * rng.normal(size=len(t)) @@ -265,7 +269,7 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: for i, trace in enumerate(traces): trendify.Point2D( x=workdir.name, - y=len(trace.points), + y=len(trace.x), marker=trendify.Marker( size=10, label=trace.pen.label, @@ -276,13 +280,60 @@ def example_data_product_generator(workdir: Path) -> trendify.ProductList: tags=["scatter_plot"], ).append_to_list(products).set_metadata({"run_num": run_num}) + trendify.Trace2D.from_xy( + x=time, + y=df[value_columns[0]].to_numpy(), + tags=[("nested_plots", "group_a", "deep_trace")], + pen=trendify.Pen(label=value_columns[0], color=colors[0]), + format2d=trendify.Format2D( + grid=trendify.Grid.from_theme(trendify.GridTheme.MATLAB), + ), + ).append_to_list(products).set_metadata({"run_num": run_num}) + trendify.Trace2D.from_xy( + x=time, + y=df[value_columns[-1]].to_numpy(), + tags=[("nested_plots", "group_b", "deep_trace")], + pen=trendify.Pen(label=value_columns[-1], color=colors[-1]), + format2d=trendify.Format2D( + grid=trendify.Grid.from_theme(trendify.GridTheme.MATLAB), + ), + ).append_to_list(products).set_metadata({"run_num": run_num}) + for col in value_columns: series = df[col] trendify.TableEntry( row=workdir.name, col=col, value=series.len(), - tags=["table"], + tags=[("tables", "lengths")], + unit=None, + ).append_to_list(products) + trendify.TableEntry( + row=workdir.name, + col=col, + value=cast(float, series.mean()), + tags=[("tables", "means")], + unit=None, + ).append_to_list(products) + trendify.TableEntry( + row=workdir.name, + col=col, + value=cast(float, series.std()), + tags=[("tables", "std_devs")], + unit=None, + ).append_to_list(products) + trendify.TableEntry( + row=workdir.name, + col=col, + value=cast(float, series.max()), + tags=[("extrema", "max")], + unit=None, + ).append_to_list(products) + trendify.TableEntry( + row=workdir.name, + col=col, + value=cast(float, series.min()), + tags=[("extrema", "min")], unit=None, ).append_to_list(products) diff --git a/src/trendify/formats/format2d.py b/src/trendify/formats/format2d.py index b6142b9..82fc1f1 100644 --- a/src/trendify/formats/format2d.py +++ b/src/trendify/formats/format2d.py @@ -7,6 +7,7 @@ from __future__ import annotations import logging +from abc import ABC, abstractmethod from collections.abc import Iterable from enum import StrEnum from typing import TYPE_CHECKING @@ -143,7 +144,7 @@ def union_from_iterable(cls, format2ds: Iterable[Format2D]): ) -class PlottableData2D(DataProduct): +class PlottableData2D(DataProduct, ABC): """ Base class for children of DataProduct to be plotted ax xy data on a 2D plot @@ -156,7 +157,8 @@ class PlottableData2D(DataProduct): format2d: Format2D | None = None - def add_to_plotly(self, plotly_figure: PlotlyFigure): + @abstractmethod + def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: """ Add this data product to a plotly figure @@ -164,7 +166,6 @@ def add_to_plotly(self, plotly_figure: PlotlyFigure): plotly_figure (PlotlyFigure): Plotly figure to add data to """ - raise NotImplementedError("Subclasses must implement add_to_plotly") class XYData(PlottableData2D): diff --git a/src/trendify/generator/__init__.py b/src/trendify/generator/__init__.py index b10f601..34a9c0a 100644 --- a/src/trendify/generator/__init__.py +++ b/src/trendify/generator/__init__.py @@ -1,9 +1,10 @@ -from trendify.generator import generate -from trendify.generator import histogrammer -from trendify.generator import render -from trendify.generator import table_builder -from trendify.generator import xy_data_plotter - +from trendify.generator import ( + generate, + histogrammer, + render, + table_builder, + xy_data_plotter, +) from trendify.generator.generate import ( generate_products, get_sorted_dirs, @@ -12,7 +13,6 @@ Histogrammer, ) from trendify.generator.render import ( - make_include_files, render_assets, ) from trendify.generator.table_builder import ( @@ -30,7 +30,6 @@ "generate_products", "get_sorted_dirs", "histogrammer", - "make_include_files", "render", "render_assets", "table_builder", diff --git a/src/trendify/generator/generate.py b/src/trendify/generator/generate.py index 293490a..e0d257d 100644 --- a/src/trendify/generator/generate.py +++ b/src/trendify/generator/generate.py @@ -5,16 +5,24 @@ There is no separate "sort" step: tags are indexed at write time, so retrieving products by tag is an indexed query against `ProductStore`, not a physical grouping step that has to run before rendering can start. + +Worker processes only ever *compute* products; exactly one connection (in this process) ever +writes. SQLite allows a single writer at a time no matter how many connections are open, so +having every worker process open its own writing connection (the earlier design) doesn't buy +any write throughput -- it only adds lock contention, which gets worse, not better, as +`n_procs` goes up. Splitting the pool into N compute workers feeding one writer lets +`n_procs` control the part that actually parallelizes (running `product_generator`) without +touching the part that can't (writing to the shared `.db` file). """ from __future__ import annotations import logging -from concurrent.futures import ProcessPoolExecutor +from concurrent.futures import ProcessPoolExecutor, as_completed from pathlib import Path from typing import Any -from trendify.base.data_product import ProductGenerator +from trendify.base.data_product import ProductGenerator, ProductList from trendify.log import create_queue_listener from trendify.log import worker_init as _init_worker_logging from trendify.store.product_store import ProductStore @@ -23,9 +31,8 @@ logger = logging.getLogger(__name__) -# Per-process globals set by `_init_worker`, one `ProductStore` connection per worker process -# (WAL mode lets every worker write directly to the same `.db` file, see `store/db.py`). -_worker_store: ProductStore | None = None +# Per-process global set by `_init_worker`: the one thing a compute worker needs. Workers +# never open a `ProductStore` -- only the caller of `generate_products` writes. _worker_generator: ProductGenerator | None = None @@ -48,14 +55,12 @@ def get_sorted_dirs(dirs: list[Path]) -> list[Path]: return dirs -def _init_worker(db_path: str, product_generator: ProductGenerator) -> None: - global _worker_store, _worker_generator - _worker_store = ProductStore.open(Path(db_path)) +def _init_worker(product_generator: ProductGenerator) -> None: + global _worker_generator _worker_generator = product_generator def _init_worker_with_logging( - db_path: str, product_generator: ProductGenerator, log_queue: Any, log_level: int, @@ -64,14 +69,13 @@ def _init_worker_with_logging( # runs, so no worker ever opens a file/console handler directly. See trendify.log for why # that matters (Windows spawn semantics, and fork-inherited-handler races on POSIX). _init_worker_logging(log_queue, log_level) - _init_worker(db_path, product_generator) + _init_worker(product_generator) -def _generate_and_write(run_dir: Path) -> int: - assert _worker_store is not None and _worker_generator is not None - logger.info(f"Processing {run_dir = }") - products = _worker_generator(run_dir) - return _worker_store.write_run(run_dir, products) +def _compute(run_dir: Path) -> tuple[Path, ProductList]: + assert _worker_generator is not None + logger.info(f"Processing run_dir = {run_dir}") + return run_dir, _worker_generator(run_dir) def generate_products( @@ -81,8 +85,8 @@ def generate_products( n_procs: int = 1, ) -> int: """ - Maps `product_generator` over `data_dirs`, writing each directory's products directly to - the `ProductStore` at `db_path` (one `write_run` transaction per directory). There is no + Maps `product_generator` over `data_dirs`, writing each directory's products to the + `ProductStore` at `db_path` (one `write_run` transaction per directory). There is no intermediate file and no separate sort step, since tag-based retrieval from `ProductStore` is an indexed query. @@ -93,9 +97,11 @@ def generate_products( data_dirs (list[Path]): Directories over which to map `product_generator`. db_path (Path): Path to the trendify output directory's `.db` file. Created if it doesn't already exist. - n_procs (int): Number of worker processes. `n_procs == 1` runs sequentially in this - process (easier to debug with full tracebacks). `n_procs > 1` uses a - `ProcessPoolExecutor`, with one `ProductStore` connection opened per worker. + n_procs (int): Number of worker processes computing products in parallel. + `n_procs == 1` runs sequentially in this process (easier to debug with full + tracebacks). `n_procs > 1` uses a `ProcessPoolExecutor` for computing products + only; writing always happens through the single connection this function opens, + regardless of `n_procs`, since SQLite only ever allows one writer at a time. Returns: (int): total number of products written across all directories. @@ -104,35 +110,35 @@ def generate_products( sorted_dirs = get_sorted_dirs(data_dirs) db_path = Path(db_path) - # Bootstrap the schema up front, from this process, before workers race to open it. - ProductStore.open(db_path).close() - logger.info(f"Generating and writing DataProducts for {len(sorted_dirs)} run(s)...") - if n_procs > 1: - root_logger = logging.getLogger() - log_queue, listener = create_queue_listener(*root_logger.handlers) - listener.start() - try: - with ProcessPoolExecutor( - max_workers=n_procs, - initializer=_init_worker_with_logging, - initargs=( - str(db_path), - product_generator, - log_queue, - root_logger.level, - ), - ) as executor: - results = list(executor.map(_generate_and_write, sorted_dirs)) - finally: - # Blocks until every already-queued log record has been dispatched, so worker - # log output isn't lost or interleaved with what follows. - listener.stop() - else: - _init_worker(str(db_path), product_generator) - results = [_generate_and_write(d) for d in sorted_dirs] - - total = sum(results) + total = 0 + with ProductStore.open(db_path) as store: + if n_procs > 1: + root_logger = logging.getLogger() + log_queue, listener = create_queue_listener(*root_logger.handlers) + listener.start() + try: + with ProcessPoolExecutor( + max_workers=n_procs, + initializer=_init_worker_with_logging, + initargs=(product_generator, log_queue, root_logger.level), + ) as executor: + futures = [ + executor.submit(_compute, run_dir) for run_dir in sorted_dirs + ] + for future in as_completed(futures): + run_dir, products = future.result() + total += store.write_run(run_dir, products) + finally: + # Blocks until every already-queued log record has been dispatched, so worker + # log output isn't lost or interleaved with what follows. + listener.stop() + else: + _init_worker(product_generator) + for run_dir in sorted_dirs: + _, products = _compute(run_dir) + total += store.write_run(run_dir, products) + logger.info( f"Finished generating DataProducts: {total} products written across " f"{len(sorted_dirs)} run(s)" diff --git a/src/trendify/generator/render.py b/src/trendify/generator/render.py index 88559e0..61ff240 100644 --- a/src/trendify/generator/render.py +++ b/src/trendify/generator/render.py @@ -2,7 +2,7 @@ Static rendering pipeline: renders CSV tables and matplotlib figures directly from a `ProductStore`. -Design note: XY data (`Point2D`/`Trace2D`/`AxLine`) and histogram data (`HistogramEntry`) +Design note: XY data (`Point2D`/`Scatter2D`/`Trace2D`/`AxLine`) and histogram data (`HistogramEntry`) sharing a tag are always rendered to separate figures/files (`.jpg` for XY, `_histogram.jpg` for histograms), never overlaid onto one shared axes, so a tag used for both product kinds gets two clean plots instead of a histogram silently drawn on top of an XY @@ -21,16 +21,15 @@ from trendify.plotting.axline import AxLine from trendify.plotting.histogram import HistogramEntry from trendify.plotting.point import Point2D +from trendify.plotting.scatter import Scatter2D from trendify.plotting.trace import Trace2D from trendify.store.product_store import ProductStore from trendify.store.tags import tag_to_path_parts -__all__ = ["make_include_files", "render_assets"] +__all__ = ["render_assets"] logger = logging.getLogger(__name__) -INCLUDE_FILENAME = "include.md" - def render_assets( store: ProductStore, @@ -50,7 +49,8 @@ def render_assets( output_dir (Path): directory tables/figures are written under dpi (int): resolution for saved matplotlib figures no_tables (bool): suppress `TableEntry` -> CSV output - no_xy_plots (bool): suppress `Point2D`/`Trace2D`/`AxLine` -> matplotlib XY plot output + no_xy_plots (bool): suppress `Point2D`/`Scatter2D`/`Trace2D`/`AxLine` -> matplotlib + XY plot output no_histograms (bool): suppress `HistogramEntry` -> matplotlib histogram output """ @@ -70,15 +70,20 @@ def render_assets( points = store.get_products_of_type(Point2D, tag=tag) traces = store.get_products_of_type(Trace2D, tag=tag) axlines = store.get_products_of_type(AxLine, tag=tag) + scatters = store.get_products_of_type(Scatter2D, tag=tag) - if points or traces or axlines: + if points or traces or axlines or scatters: logger.info(f"Making xy plot for {tag = }") saf = XYDataPlotter.handle_points_and_traces( - tag=tag, points=points, traces=traces, axlines=axlines + tag=tag, + points=points, + traces=traces, + axlines=axlines, + scatters=scatters, ) format2ds = [ p.format2d - for p in (*points, *traces, *axlines) + for p in (*points, *traces, *axlines, *scatters) if p.format2d is not None ] if format2ds: @@ -112,82 +117,3 @@ def render_assets( logger.info(f"Saving to {save_path}") saf.savefig(save_path, dpi=dpi) logger.info(f"Finished histogram for {tag = }") - - -def make_include_files( - root_dir: Path, - local_server_path: str | Path | None = None, - mkdocs_include_dir: str | Path | None = None, - heading_level: int | None = None, -) -> None: - """ - Makes nested `include.md` files (MkDocs `{% include %}`/`{{ read_csv(...) }}` snippets) for - the figures/tables/subdirectories under `root_dir`. This is a pure filesystem walk over - already-rendered assets and doesn't touch `ProductStore` at all. - - Args: - root_dir (Path): directory for which include files should be recursively generated - local_server_path (str | Path | None): prefix to use for figure paths, for serving - figures from a local dev server alongside `mkdocs serve` - mkdocs_include_dir (str | Path | None): path matching mkdocs.yml's `include_dir`, used - to make included paths relative to it - heading_level (int | None): base Markdown heading level for per-directory headers - - """ - root_dir = Path(root_dir) - dirs = sorted(root_dir.glob("**/")) - if not dirs: - return - - min_len = min(len(list(p.parents)) for p in dirs) - for s in dirs: - child_dirs = sorted(s.glob("*/")) - tables_to_include = [ - x - for pattern in ("*pivot.csv", "*stats.csv") - for x in s.glob(pattern, case_sensitive=False) - ] - figures_to_include = [ - x - for pattern in ("*.jpg", "*.png") - for x in s.glob(pattern, case_sensitive=False) - ] - children_to_include = [ - c.resolve().joinpath(INCLUDE_FILENAME) for c in child_dirs - ] - - if local_server_path is not None: - figures_to_include = [ - Path(local_server_path).joinpath(x.relative_to(root_dir)) - for x in figures_to_include - ] - if mkdocs_include_dir is not None: - mkdocs_include_dir = Path(mkdocs_include_dir) - tables_to_include = [ - x.relative_to(mkdocs_include_dir.parent) for x in tables_to_include - ] - children_to_include = [ - x.relative_to(mkdocs_include_dir) for x in children_to_include - ] - - fig_inclusion_statements = sorted(f"![]({x})" for x in figures_to_include) - table_inclusion_statements = sorted( - f"{{{{ read_csv('{x}', disable_numparse=True) }}}}" - for x in tables_to_include - ) - child_inclusion_statements = sorted( - "{% include '" + str(x) + "' %}" for x in children_to_include - ) - inclusions = ( - table_inclusion_statements - + fig_inclusion_statements - + child_inclusion_statements - ) - - header = "" - if heading_level is not None and len(inclusions) > 1: - depth = len(list(s.parents)) - min_len - header = "#" * (depth + heading_level) + s.name - - text = "\n\n".join([header, *inclusions]) - s.joinpath(INCLUDE_FILENAME).write_text(text) diff --git a/src/trendify/generator/xy_data_plotter.py b/src/trendify/generator/xy_data_plotter.py index 963dc13..8fac9c4 100644 --- a/src/trendify/generator/xy_data_plotter.py +++ b/src/trendify/generator/xy_data_plotter.py @@ -13,6 +13,7 @@ from trendify.plotting.axline import AxLine from trendify.plotting.figure import SingleAxisFigure from trendify.plotting.point import Point2D +from trendify.plotting.scatter import Scatter2D from trendify.plotting.trace import Trace2D __all__ = ["XYDataPlotter"] @@ -22,7 +23,8 @@ class XYDataPlotter(BaseModel): """ - Draws `Point2D`/`Trace2D`/`AxLine` products sharing a tag onto a matplotlib axes. + Draws `Point2D`/`Scatter2D`/`Trace2D`/`AxLine` products sharing a tag onto a matplotlib + axes. """ @classmethod @@ -32,10 +34,11 @@ def handle_points_and_traces( points: list[Point2D], traces: list[Trace2D], axlines: list[AxLine], + scatters: list[Scatter2D], saf: SingleAxisFigure | None = None, ) -> SingleAxisFigure: """ - Plots points (scattered, grouped by marker), traces, and axlines onto `saf`. + Plots points (scattered, grouped by marker), scatters, traces, and axlines onto `saf`. Args: tag (Tag): tag these products belong to (used only if a new figure is created) @@ -43,6 +46,8 @@ def handle_points_and_traces( marker becomes one `ax.scatter` call/series) traces (list[Trace2D]): traces to plot axlines (list[AxLine]): axis lines to plot + scatters (list[Scatter2D]): bulk scatter arrays to plot, each already carrying + its own single shared `Marker` saf (SingleAxisFigure | None): figure to draw onto; a new one is created if `None` Returns: @@ -54,7 +59,7 @@ def handle_points_and_traces( logger.debug( f"Plotting {len(points)} point(s), {len(traces)} trace(s), {len(axlines)} " - f"axline(s) for {tag = }" + f"axline(s), {len(scatters)} scatter(s) for {tag = }" ) if points: markers = set(p.marker for p in points) @@ -68,6 +73,9 @@ def handle_points_and_traces( else: saf.ax.scatter(x, y) + for scatter in scatters: + scatter.plot_to_ax(saf.ax) + for trace in traces: trace.plot_to_ax(saf.ax) diff --git a/src/trendify/pipeline.py b/src/trendify/pipeline.py index 03de6b7..d0c3444 100644 --- a/src/trendify/pipeline.py +++ b/src/trendify/pipeline.py @@ -14,7 +14,7 @@ from trendify.base.data_product import ProductGenerator from trendify.generator.generate import generate_products -from trendify.generator.render import make_include_files, render_assets +from trendify.generator.render import render_assets from trendify.store.product_store import ProductStore __all__ = ["TrendifyPipeline"] @@ -60,7 +60,7 @@ def generate( """ logger.info( f"Generating products for {len(data_dirs)} directory(ies) into {self.db_path} " - f"({self.n_procs} worker process(es))" + f"({self.n_procs} worker process{'es' if self.n_procs > 1 else ''})" ) total = generate_products( product_generator=product_generator, @@ -95,25 +95,6 @@ def render( ) logger.info(f"Finished rendering assets into {self.assets_dir}") - def make_include_files( - self, - heading_level: int | None = 2, - local_server_path: str | Path | None = None, - mkdocs_include_dir: str | Path | None = None, - ) -> None: - """ - Writes nested MkDocs `include.md` files for `self.assets_dir`. See - `trendify.generator.render.make_include_files`. - - """ - logger.info(f"Writing include.md files under {self.assets_dir}") - make_include_files( - root_dir=self.assets_dir, - local_server_path=local_server_path, - mkdocs_include_dir=mkdocs_include_dir, - heading_level=heading_level, - ) - def run( self, product_generator: ProductGenerator, @@ -122,11 +103,10 @@ def run( no_tables: bool = False, no_xy_plots: bool = False, no_histograms: bool = False, - no_include_files: bool = False, ) -> int: """ Runs the full pipeline: generate, then render (unless all three asset kinds are - suppressed), then write include files (unless suppressed). + suppressed). Returns: (int): total number of products written by `generate` @@ -143,8 +123,6 @@ def run( no_xy_plots=no_xy_plots, no_histograms=no_histograms, ) - if not no_include_files: - self.make_include_files() logger.info(f"Finished full pipeline for {self.output_dir}") return total diff --git a/src/trendify/plotting/__init__.py b/src/trendify/plotting/__init__.py index 8da7c3b..aebd901 100644 --- a/src/trendify/plotting/__init__.py +++ b/src/trendify/plotting/__init__.py @@ -2,6 +2,7 @@ from trendify.plotting import figure from trendify.plotting import histogram from trendify.plotting import point +from trendify.plotting import scatter from trendify.plotting import trace from trendify.plotting.axline import ( @@ -19,6 +20,9 @@ from trendify.plotting.point import ( Point2D, ) +from trendify.plotting.scatter import ( + Scatter2D, +) from trendify.plotting.trace import ( Trace2D, ) @@ -30,11 +34,13 @@ "LineOrientation", "PlotlyFigure", "Point2D", + "Scatter2D", "SingleAxisFigure", "Trace2D", "axline", "figure", "histogram", "point", + "scatter", "trace", ] diff --git a/src/trendify/plotting/figure.py b/src/trendify/plotting/figure.py index d1a31e7..858dcd3 100644 --- a/src/trendify/plotting/figure.py +++ b/src/trendify/plotting/figure.py @@ -7,31 +7,27 @@ from __future__ import annotations +import logging +import warnings from dataclasses import dataclass, field from pathlib import Path -import matplotlib.pyplot as plt -import warnings -import logging - -from typing import Any, cast +from typing import TYPE_CHECKING, Any, cast +import matplotlib.pyplot as plt import numpy as np import plotly.graph_objects as go - -from trendify.formats.format2d import AxisScale, PlottableData2D - -from typing import Self, TYPE_CHECKING - from pydantic import ConfigDict from trendify.base.helpers import Tag +from trendify.formats.format2d import AxisScale, PlottableData2D if TYPE_CHECKING: - from trendify.formats.format2d import Format2D - from trendify.styling.grid import Grid from matplotlib.axes import Axes from matplotlib.figure import Figure + from trendify.formats.format2d import Format2D + from trendify.styling.grid import Grid + __all__ = ["PlotlyFigure", "SingleAxisFigure"] @@ -336,7 +332,7 @@ def apply_grid(self, grid: Grid): self.fig.update_xaxes(**xaxis_updates) self.fig.update_yaxes(**yaxis_updates) - def add_data_product(self, product: PlottableData2D) -> Self: + def add_data_product(self, product: PlottableData2D) -> PlotlyFigure: """ Add a data product to the figure diff --git a/src/trendify/plotting/histogram.py b/src/trendify/plotting/histogram.py index bdc2669..ea684b7 100644 --- a/src/trendify/plotting/histogram.py +++ b/src/trendify/plotting/histogram.py @@ -9,9 +9,10 @@ import logging from typing import cast +import numpy as np import plotly.graph_objects as go from matplotlib.colors import to_rgba -from pydantic import ConfigDict, Field +from pydantic import ConfigDict, Field, field_validator from trendify.base.helpers import HashableBase, Tags from trendify.formats.format2d import PlottableData2D @@ -45,7 +46,19 @@ class HistogramStyle(HashableBase): alpha_face: float = 0.3 linewidth: float = 2 zorder: int = 1 - bins: int | list[int] | tuple[int] | VecN | None = None + bins: int | tuple[int, ...] | None = None + + @field_validator("bins", mode="before") + @classmethod + def _coerce_bins_to_hashable( + cls, value: int | list[int] | tuple[int] | VecN | None + ): + # `HistogramStyle` is a `HashableBase` (its instances are deduplicated via `set()` in + # `Histogrammer.handle_histogram_entries`), so `bins` can't be stored as a `list` or + # `np.ndarray`: both are unhashable and would break `HashableBase.__hash__`. + if isinstance(value, (list, np.ndarray)): + return tuple(int(v) for v in value) + return value def as_plot_kwargs(self): """ @@ -187,7 +200,7 @@ class HistogramEntry(PlottableData2D): model_config = ConfigDict(extra="forbid") - def add_to_plotly(self, plotly_figure: PlotlyFigure): + def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: """Add histogram entry to plotly figure, merging with existing traces if possible""" if not self.style: logger.error("HistogramEntry style is not defined.") diff --git a/src/trendify/plotting/scatter.py b/src/trendify/plotting/scatter.py new file mode 100644 index 0000000..f023aa6 --- /dev/null +++ b/src/trendify/plotting/scatter.py @@ -0,0 +1,130 @@ +""" +`Scatter2D`: a bulk collection of (x, y) points sharing one `Marker`, drawn as unconnected +scatter points. + +Use this instead of many individual `Point2D` products when a single generation call +produces a large array of points that all share one style and don't need distinct per-point +tags/metadata (e.g. a raw scatter of measurements from one run). `Point2D` remains the right +choice when each point is its own taggable/hoverable entity, such as one point summarizing +one run, aggregated across many runs that share a tag. +""" + +from __future__ import annotations + +import logging +from typing import TYPE_CHECKING + +import plotly.graph_objects as go +from pydantic import ConfigDict + +from trendify.base.helpers import Tags +from trendify.formats.format2d import XYData +from trendify.plotting.figure import PlotlyFigure +from trendify.styling.marker import Marker +from trendify.typing import VecN + +if TYPE_CHECKING: + from matplotlib.axes import Axes + + from trendify.formats.format2d import Format2D + +__all__ = ["Scatter2D"] + +logger = logging.getLogger(__name__) + + +class Scatter2D(XYData): + """ + A collection of unconnected scattered points sharing one `Marker`. + Use the [Scatter2D.from_xy][trendify.plotting.scatter.Scatter2D.from_xy] constructor. + + Attributes: + x (VecN): x values + y (VecN): y values + marker (Marker): Style and label information shared by every point in this scatter. + tags (Tags): Tags to be used for sorting data. + metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana + + """ + + model_config = ConfigDict(extra="forbid") + + x: VecN + y: VecN + marker: Marker = Marker() + + @classmethod + def from_xy( + cls, + tags: Tags, + x: VecN, + y: VecN, + marker: Marker = Marker(), + format2d: Format2D | None = None, + ): + """ + Creates a new [Scatter2D][trendify.plotting.scatter.Scatter2D] product from xy data + sharing one marker style. + + Args: + tags (Tags): Tags used to sort data products + x (VecN): x values + y (VecN): y values + marker (Marker): Style and label shared by every point + format2d (Format2D | None): Format to apply to plot + + """ + return cls(tags=tags, x=x, y=y, marker=marker, format2d=format2d) + + def plot_to_ax(self, ax: Axes): + """ + Scatters xy data to a matplotlib axes object. + + Args: + ax (Axes): axes to which xy data should be plotted + + """ + ax.scatter(self.x, self.y, **self.marker.as_scatter_plot_kwargs()) + + def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: + legend_key = f"{self.marker.label}_{self.marker.color}_{self.marker.symbol}" + + metadata_html = ( + "
".join(f"{key}: {value}" for key, value in self.metadata.items()) + if self.metadata + else "" + ) + hovertemplate = ( + f"{self.marker.label or ''}
" + "x: %{x}
" + "y: %{y}
" + f"{metadata_html}" + ) + + plotly_figure.fig.add_trace( + go.Scatter( + x=self.x, + y=self.y, + name=self.marker.label, + mode="markers", + marker=dict( + color=self.marker.rgba, + size=self.marker.size, + symbol=self.marker.plotly_symbol, + ), + zorder=int(self.marker.zorder), + legendgroup=legend_key, + hovertemplate=hovertemplate, + hoverlabel=dict( + bgcolor=self.marker.rgba, + font=dict(color=self.marker.get_contrast_color()), + ), + showlegend=( + True if legend_key not in plotly_figure.legend_groups else False + ), + ) + ) + + if legend_key not in plotly_figure.legend_groups: + plotly_figure.legend_groups.add(legend_key) + return plotly_figure diff --git a/src/trendify/plotting/trace.py b/src/trendify/plotting/trace.py index 7845a65..12b4b13 100644 --- a/src/trendify/plotting/trace.py +++ b/src/trendify/plotting/trace.py @@ -1,6 +1,7 @@ """ -`Trace2D`: a line/scatter trace built from a list of `Point2D`s, styled with a `Pen`. Use the -`Trace2D.from_xy` constructor rather than building the `points` list by hand. +`Trace2D`: an xy line built from flat `x`/`y` arrays, styled with a `Pen`, and optionally +marked at intervals with a single shared `Marker` (mirroring matplotlib's native +`markevery`). Use the `Trace2D.from_xy` constructor. """ from __future__ import annotations @@ -8,7 +9,6 @@ import logging from typing import TYPE_CHECKING -import numpy as np import plotly.graph_objects as go from pydantic import ConfigDict @@ -16,7 +16,6 @@ from trendify.base.pen import Pen from trendify.formats.format2d import XYData from trendify.plotting.figure import PlotlyFigure -from trendify.plotting.point import Point2D from trendify.styling.marker import Marker from trendify.typing import VecN @@ -32,15 +31,20 @@ class Trace2D(XYData): """ - A collection of points comprising a trace. + An xy line, optionally marked at intervals. Use the [Trace2D.from_xy][trendify.plotting.trace.Trace2D.from_xy] constructor. Attributes: - points (List[Point2D]): List of points. Usually the points would have null values - for `marker` and `format2d` fields to save space. + x (VecN): x values + y (VecN): y values pen (Pen): Style and label information for drawing to matplotlib axes. Only the label information is used in Grafana. Eventually style information will be used in grafana. + marker (Marker | None): Shared marker style drawn along the line (e.g. one marker + every `markevery` points). `None` draws a plain line with no markers. + markevery (int | None): Draw a marker every Nth point when `marker` is set (passed + straight through to matplotlib's `Axes.plot(markevery=...)`); `None` marks every + point. tags (Tags): Tags to be used for sorting data. metadata (dict[str, str]): A dictionary of metadata to be used as a tool tip for mousover in grafana @@ -48,49 +52,11 @@ class Trace2D(XYData): model_config = ConfigDict(extra="forbid") - points: list[Point2D] + x: VecN + y: VecN pen: Pen = Pen() - - @property - def x(self) -> VecN: - """ - Returns an array of x values from `self.points` - - Returns: - (VecN): array of x values from `self.points` - - """ - return np.array([p.x for p in self.points]) - - @property - def y(self) -> VecN: - """ - Returns an array of y values from `self.points` - - Returns: - (VecN): array of y values from `self.points` - - """ - return np.array([p.y for p in self.points]) - - def propagate_format2d_and_pen(self, marker_symbol: str = ".") -> None: - """ - Propagates format and style info to all `self.points` (in-place). - - Args: - marker_symbol (str): Valid matplotlib marker symbol - - """ - self.points = [ - p.model_copy( - update={ - "tags": self.tags, - "format2d": self.format2d, - "marker": Marker.from_pen(self.pen, symbol=marker_symbol), - } - ) - for p in self.points - ] + marker: Marker | None = None + markevery: int | None = None @classmethod def from_xy( @@ -100,9 +66,11 @@ def from_xy( y: VecN, pen: Pen = Pen(), format2d: Format2D | None = None, + marker: Marker | None = None, + markevery: int | None = None, ): """ - Creates a list of [Point2D][trendify.plotting.point.Point2D]s from xy data and returns a new [Trace2D][trendify.plotting.trace.Trace2D] product. + Creates a new [Trace2D][trendify.plotting.trace.Trace2D] product from xy data. Args: tags (Tags): Tags used to sort data products @@ -110,22 +78,18 @@ def from_xy( y (VecN): y values pen (Pen): Style and label for trace format2d (Format2D | None): Format to apply to plot + marker (Marker | None): Shared marker style drawn along the line + markevery (int | None): Draw a marker every Nth point when `marker` is set """ return cls( tags=tags, - points=[ - Point2D( - tags=[], - x=x_, - y=y_, - marker=None, - format2d=None, - ) - for x_, y_ in zip(x, y) - ], + x=x, + y=y, pen=pen, format2d=format2d, + marker=marker, + markevery=markevery, ) def plot_to_ax(self, ax: Axes): @@ -136,7 +100,14 @@ def plot_to_ax(self, ax: Axes): ax (Axes): axes to which xy data should be plotted """ - ax.plot(self.x, self.y, **self.pen.as_scatter_plot_kwargs()) + kwargs = self.pen.as_scatter_plot_kwargs() + if self.marker is not None: + kwargs["marker"] = self.marker.symbol + kwargs["markersize"] = self.marker.size + kwargs["markerfacecolor"] = self.marker.color + kwargs["markeredgecolor"] = self.marker.color + kwargs["markevery"] = self.markevery if self.markevery is not None else 1 + ax.plot(self.x, self.y, **kwargs) def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: legend_key = ( @@ -159,19 +130,23 @@ def add_to_plotly(self, plotly_figure: PlotlyFigure) -> PlotlyFigure: f"{metadata_html}" ) + # `markevery` (subsampling markers along the line) has no direct Plotly equivalent + # for a single trace, so Plotly renders a marker at every point when `marker` is set. plotly_figure.fig.add_trace( go.Scatter( - x=[p.x for p in self.points], - y=[p.y for p in self.points], + x=self.x, + y=self.y, name=self.pen.label if self.pen else None, - mode="lines", + mode="lines+markers" if self.marker is not None else "lines", line=dict( color=self.pen.rgba if self.pen else None, width=self.pen.size if self.pen else None, dash=self.pen._convert_linestyle_to_plotly() if self.pen else None, ), marker=dict( - color=self.pen.rgba if self.pen else None, # Marker color + color=self.marker.rgba if self.marker else self.pen.rgba, + size=self.marker.size if self.marker else None, + symbol=self.marker.plotly_symbol if self.marker else None, ), zorder=int(self.pen.zorder), hovertemplate=hovertemplate, diff --git a/src/trendify/store/product_store.py b/src/trendify/store/product_store.py index f6a67d1..ee9151f 100644 --- a/src/trendify/store/product_store.py +++ b/src/trendify/store/product_store.py @@ -49,8 +49,11 @@ def _leaf_type_names(object_type: type[DataProduct]) -> list[str]: def _tag_sort_key(tag: Tag): + # `Tag` elements may be `str` or `int`, which aren't comparable to each other; sorting + # each element on `(is_int, value)` keeps same-type elements ordered by value while + # elements of different types compare on the `is_int` flag instead of colliding. as_tuple = tag if isinstance(tag, tuple) else (tag,) - return (len(as_tuple), as_tuple) + return (len(as_tuple), tuple((isinstance(x, int), x) for x in as_tuple)) @dataclass diff --git a/gallery/trendify/products/analysis/reserving_index.lock b/src/trendify/viewer/__init__.py similarity index 100% rename from gallery/trendify/products/analysis/reserving_index.lock rename to src/trendify/viewer/__init__.py diff --git a/src/trendify/viewer/app.py b/src/trendify/viewer/app.py new file mode 100644 index 0000000..ffd8a2b --- /dev/null +++ b/src/trendify/viewer/app.py @@ -0,0 +1,108 @@ +""" +FastAPI app factory for the trendify dashboard. See `trendify.cli`'s `serve` command for how +this gets launched. +""" + +from __future__ import annotations + +import datetime +import logging +import os +from collections.abc import AsyncIterator +from contextlib import asynccontextmanager +from importlib.metadata import version +from pathlib import Path + +from fastapi import FastAPI +from fastapi.staticfiles import StaticFiles +from fastapi.templating import Jinja2Templates + +from trendify.store.product_store import ProductStore +from trendify.viewer.routes import api, pages + +__all__ = ["create_app", "create_app_from_env"] + +_DB_PATH_ENV_VAR = "TRENDIFY_DB_PATH" + +logger = logging.getLogger(__name__) + +_VIEWER_DIR = Path(__file__).parent +_TEMPLATES_DIR = _VIEWER_DIR / "templates" +_STATIC_DIR = _TEMPLATES_DIR / "static" + + +def _get_version() -> str: + try: + return version("trendify") + except Exception: + return "0.0.0" + + +def create_app(db_path: Path) -> FastAPI: + """ + Builds the dashboard FastAPI app for `db_path`. + + Opens one read-only `ProductStore` connection, held for the app's lifetime and closed on + shutdown. This app is only ever meant to be run with a single uvicorn worker process: a + local, single-user dashboard has no reason for more, and multiple worker processes would + each need their own store connection (`fork`/`spawn` doesn't share a live sqlite3 + connection across processes). + + That single connection is also thread-affine to whatever thread opens it. It is + deliberately opened inside the `lifespan` handler below, rather than here in `create_app`, + so it's always created on the same thread that ends up running the app's event loop -- + which is the thread that called `uvicorn.run()` for a real server, but is a *different*, + dedicated thread for `starlette.testclient.TestClient` (it runs the ASGI app through an + anyio blocking portal on its own thread). Opening eagerly in `create_app` would bind the + connection to whichever of those threads happens to call this function, which is wrong for + the other one. Every route handler that touches `app.state.store` must likewise be declared + `async def`, not `def`: FastAPI dispatches plain `def` handlers to a worker threadpool, + which would hand the connection to yet another thread and raise `sqlite3.ProgrammingError`. + + Args: + db_path (Path): path to the `.db` file to serve. + + Returns: + (FastAPI): the configured app, ready for `uvicorn.run` (or a `TestClient`). + + """ + + @asynccontextmanager + async def lifespan(app: FastAPI) -> AsyncIterator[None]: + app.state.store = ProductStore.open(db_path, readonly=True) + try: + yield + finally: + app.state.store.close() + + app = FastAPI(title="trendify", version=_get_version(), lifespan=lifespan) + app.state.response_cache = {} + app.state.db_path = db_path + app.state.db_mtime = None + + templates = Jinja2Templates(directory=_TEMPLATES_DIR) + templates.env.globals["current_year"] = datetime.datetime.now().year + templates.env.globals["app_version"] = _get_version() + templates.env.globals["db_path"] = str(db_path) + app.state.templates = templates + + app.mount("/static", StaticFiles(directory=_STATIC_DIR), name="static") + app.include_router(pages.router) + app.include_router(api.router, prefix="/api") + + return app + + +def create_app_from_env() -> FastAPI: + """ + `create_app`, reading `db_path` from the `TRENDIFY_DB_PATH` environment variable instead of + a direct argument. + + This exists solely as a uvicorn ASGI factory target (`uvicorn.run(..., factory=True)`) for + `trendify serve --reload`: uvicorn's reload mode re-imports the app in a fresh subprocess on + every file change, so it needs an importable `module:attribute` string rather than a live app + instance -- there is no other way to hand it a runtime value like `db_path` across that + re-import boundary. + """ + db_path = os.environ[_DB_PATH_ENV_VAR] + return create_app(Path(db_path)) diff --git a/src/trendify/viewer/plot_config.py b/src/trendify/viewer/plot_config.py new file mode 100644 index 0000000..0319e2f --- /dev/null +++ b/src/trendify/viewer/plot_config.py @@ -0,0 +1,100 @@ +""" +Pydantic models for the Dojo trial-viewer PlotConfig. + +These are the single source of truth for both server-side validation (profile save/load) and the generated TypeScript types in `lib/plot-config.generated.ts`. + +To regenerate TypeScript types after changing this file: + + python scripts/gen_ts_models.py +""" + +from __future__ import annotations + +from enum import StrEnum + +from pydantic import BaseModel, ConfigDict, Field +from pydantic.alias_generators import to_camel + +camel_case_dict = ConfigDict( + alias_generator=to_camel, + populate_by_name=True, + serialize_by_alias=True, +) + + +class LineMode(StrEnum): + """Controls whether traces are drawn as lines, markers, or both.""" + + LINES = "lines" + """Connected line only.""" + + MARKERS = "markers" + """Individual point markers only.""" + + LINES_AND_MARKERS = "lines+markers" + """Connected line with point markers.""" + + +class InterpMode(StrEnum): + """Line interpolation method between data points.""" + + LINEAR = "linear" + """Straight segments between points.""" + + SPLINE = "spline" + """Smooth cubic spline.""" + + HV = "hv" + """Horizontal then vertical step.""" + + VH = "vh" + """Vertical then horizontal step.""" + + HVH = "hvh" + """Horizontal-vertical-horizontal step.""" + + VHV = "vhv" + """Vertical-horizontal-vertical step.""" + + +class HoverMode(StrEnum): + """Tooltip behavior when hovering over the plot.""" + + X_UNIFIED = "x unified" + """Single tooltip showing all series at the hovered x value.""" + + Y_UNIFIED = "y unified" + """Single tooltip showing all series at the hovered y value.""" + + CLOSEST = "closest" + """Tooltip for the nearest individual data point.""" + + X = "x" + """Per-series tooltips triggered by x proximity.""" + + Y = "y" + """Per-series tooltips triggered by y proximity.""" + + NONE = "none" + """Tooltips disabled.""" + + +class PlotConfig(BaseModel): + """Complete serialisable state of a trial-viewer plot.""" + + model_config = camel_case_dict + + line_mode: LineMode + """Whether traces render as lines, markers, or both.""" + + interp: InterpMode + """Interpolation method drawn between data points.""" + + hover: HoverMode + """Tooltip behavior on hover.""" + + show_spike: bool + """Whether to draw spike lines from the hovered point to each axis.""" + + max_points: int | None = Field(default=None, gt=0) + """Maximum number of data points per trace returned by the server. When the raw data exceeds this limit the server downsamples using uniform time-domain buckets (equal coverage across the time range regardless of variable timestep). `None` disables downsampling and returns all points.""" diff --git a/src/trendify/viewer/routes/__init__.py b/src/trendify/viewer/routes/__init__.py new file mode 100644 index 0000000..30fe592 --- /dev/null +++ b/src/trendify/viewer/routes/__init__.py @@ -0,0 +1,7 @@ +from trendify.viewer.routes import api +from trendify.viewer.routes import pages + +__all__ = [ + "api", + "pages", +] diff --git a/src/trendify/viewer/routes/api.py b/src/trendify/viewer/routes/api.py new file mode 100644 index 0000000..c986115 --- /dev/null +++ b/src/trendify/viewer/routes/api.py @@ -0,0 +1,133 @@ +""" +JSON API for the dashboard frontend. Currently just the tag tree (the actual sidebar is +server-rendered from the same data, see `routes.pages` -- this endpoint exists for any future +client-side refresh/polling use) and a liveness/db-change ping. Plot/table data endpoints land +in later milestones. + +Every handler reads from the process-lifetime, read-only `ProductStore` on +`request.app.state.store` and caches its response in `request.app.state.response_cache`. The +`.db` file can be regenerated out from under a running `serve` process (e.g. someone re-runs +`trendify generate`/`run`); `/ping` detects that via the file's mtime and clears the cache, so +this is a cache invalidation concern rather than something that makes the cache unsafe to use. +""" + +from __future__ import annotations + +import logging +from collections.abc import Callable +from pathlib import Path +from typing import Any, Literal, cast + +from fastapi import APIRouter, Request +from pydantic import BaseModel + +from trendify.generator.table_builder import TableBuilder +from trendify.store.product_store import ProductStore +from trendify.store.tags import decode_tag +from trendify.viewer.tag_tree import TagNode, build_tag_tree + +TableView = Literal["melted", "pivot", "stats"] + +__all__ = ["router"] + +logger = logging.getLogger(__name__) + +router = APIRouter() + + +class TableResponse(BaseModel): + available: bool + columns: list[str] + rows: list[dict[str, Any]] + + +def _get_store(request: Request) -> ProductStore: + return request.app.state.store + + +def _cached[T](request: Request, cache_key: tuple, build: Callable[[], T]) -> T: + """ + Process-lifetime response cache: `.db` files are static for the life of a `serve` process + (no write path exists in this feature), so a handler's expensive work only ever needs to + run once per distinct cache key. + """ + cache: dict[tuple, object] = request.app.state.response_cache + if cache_key not in cache: + cache[cache_key] = build() + return cast(T, cache[cache_key]) + + +@router.get("/tags", response_model=list[TagNode]) +async def get_tags(request: Request) -> list[TagNode]: + # async def, not def -- see routes.pages.index's comment: keeps this on the event loop's + # thread, matching the ProductStore connection's thread affinity. + store = _get_store(request) + return _cached(request, ("tags",), lambda: build_tag_tree(store)) + + +@router.get("/ping") +async def ping(request: Request) -> dict[str, bool | float | None]: + """ + Cheap liveness check the frontend polls to show a connected/disconnected indicator. + + Also reports the `.db` file's mtime, so the client can detect that someone regenerated it + (e.g. re-ran `trendify generate`/`run` while this server is still up) and prompt a refresh. + The underlying `ProductStore` connection itself stays valid across a regeneration (the + generate pipeline writes into the same file/inode via WAL, it doesn't replace it) -- only + this process's *response cache* goes stale, so an mtime change clears it here. + """ + db_path: Path = request.app.state.db_path + try: + mtime = db_path.stat().st_mtime + except OSError: + mtime = None + + if mtime is not None and mtime != request.app.state.db_mtime: + request.app.state.db_mtime = mtime + request.app.state.response_cache.clear() + + return {"ok": True, "db_updated_at": mtime} + + +@router.get("/table", response_model=TableResponse) +async def get_table(tag: str, view: TableView, request: Request) -> TableResponse: + """ + Table data for the table viewer's Melted/Pivot/Statistics tabs, as DataTables-ready + `{available, columns, rows}` JSON. + + `tag` is the tag's `encode_tag` (JSON) form -- the same string the sidebar's `tojson`- + rendered `tag-selected` payload already produces client-side -- since a tuple tag has no + single unambiguous plain-string/path encoding to put directly in a URL path segment. + + `pivot`/`stats` report `available: false` (not a 500) rather than raising when the pivot + fails (a repeated `(row, col)` pair) or there are no numeric pivoted columns -- both are + normal, expected shapes for some tags' data, not error conditions. + """ + store = _get_store(request) + decoded_tag = decode_tag(tag) + + def build() -> TableResponse: + melted = store.get_table_entries(decoded_tag) + if view == "melted": + return TableResponse( + available=melted.height > 0, + columns=melted.columns, + rows=melted.to_dicts(), + ) + + pivot = TableBuilder.pivot_table(melted) if melted.height > 0 else None + if view == "pivot": + if pivot is None: + return TableResponse(available=False, columns=[], rows=[]) + return TableResponse( + available=True, columns=pivot.columns, rows=pivot.to_dicts() + ) + + stats = TableBuilder.get_stats_table(pivot) if pivot is not None else None + if stats is None: + return TableResponse(available=False, columns=[], rows=[]) + return TableResponse( + available=True, columns=stats.columns, rows=stats.to_dicts() + ) + + return _cached(request, ("table", view, tag), build) diff --git a/src/trendify/viewer/routes/pages.py b/src/trendify/viewer/routes/pages.py new file mode 100644 index 0000000..1eabe50 --- /dev/null +++ b/src/trendify/viewer/routes/pages.py @@ -0,0 +1,33 @@ +""" +HTML page routes for the dashboard. The index page server-renders the full tag tree (see +`trendify.viewer.tag_tree`) directly into the sidebar via a recursive Jinja2 macro -- simpler +and more robust than fetching it client-side and building the recursive structure in Alpine, +which has no solid native support for recursive components. +""" + +from __future__ import annotations + +import logging + +from fastapi import APIRouter, Request +from fastapi.responses import HTMLResponse + +from trendify.viewer.tag_tree import build_tag_tree + +__all__ = ["router"] + +logger = logging.getLogger(__name__) + +router = APIRouter() + + +@router.get("/", response_class=HTMLResponse) +async def index(request: Request) -> HTMLResponse: + # `async def`, not `def`: FastAPI runs sync route handlers in a threadpool, but the + # ProductStore's sqlite3 connection is thread-affine to whatever thread opened it (the + # main thread, in create_app). An `async def` handler that never awaits stays on the + # event loop's thread instead, matching the connection's affinity. + store = request.app.state.store + tag_tree = build_tag_tree(store) + templates = request.app.state.templates + return templates.TemplateResponse(request, "index.html", {"tag_tree": tag_tree}) diff --git a/src/trendify/viewer/tag_tree.py b/src/trendify/viewer/tag_tree.py new file mode 100644 index 0000000..a75d40d --- /dev/null +++ b/src/trendify/viewer/tag_tree.py @@ -0,0 +1,128 @@ +""" +Builds the nested tag hierarchy the sidebar renders, shared by the server-rendered page +(`routes.pages`) and the JSON API (`routes.api`). +""" + +from __future__ import annotations + +import logging +from typing import Literal + +from pydantic import BaseModel + +from trendify.base.helpers import Tag +from trendify.formats.format2d import PlottableData2D +from trendify.store.product_store import ProductStore +from trendify.store.tags import tag_to_path_parts + +__all__ = ["TagNode", "build_tag_tree"] + +logger = logging.getLogger(__name__) + + +class TagNode(BaseModel): + key: Tag + label: str + children: list[TagNode] + has_products: bool + product_kinds: list[Literal["plot", "table"]] + + def search_blob(self) -> str: + """ + Lowercase text of this node's label and every descendant's label, for substring + search matching without needing to walk the tree again client-side. + """ + parts = [self.label] + for child in self.children: + parts.append(child.search_blob()) + return " ".join(parts).lower() + + def subtree_kinds(self) -> list[Literal["plot", "table"]]: + """ + Union of this node's own `product_kinds` and every descendant's, so a folder can be + filtered by product type without needing to walk the tree again client-side (a folder + should stay visible under a "table" filter if any product anywhere inside it is a + table, even if the folder itself has no products of its own). + """ + kinds = set(self.product_kinds) + for child in self.children: + kinds.update(child.subtree_kinds()) + return sorted(kinds) + + def product_count(self) -> int: + """ + Recursive count of self-and-descendant nodes with `has_products`, shown as a + subtle badge next to folder labels in the sidebar. + """ + count = 1 if self.has_products else 0 + for child in self.children: + count += child.product_count() + return count + + +class _TrieNode: + def __init__(self) -> None: + self.children: dict[str, _TrieNode] = {} + self.tag: Tag | None = None + + +def _product_kinds(store: ProductStore, tag: Tag) -> list[Literal["plot", "table"]]: + kinds: list[Literal["plot", "table"]] = [] + if store.get_products_of_type(PlottableData2D, tag=tag): + kinds.append("plot") + if store.get_table_entries(tag).height > 0: + kinds.append("table") + return kinds + + +def _category_rank(node: TagNode) -> int: + """Folders sort before plot leaves, which sort before table leaves.""" + if node.children: + return 0 + if "plot" in node.product_kinds: + return 1 + if "table" in node.product_kinds: + return 2 + return 3 + + +def build_tag_tree(store: ProductStore) -> list[TagNode]: + """ + Walks `store.tag_tree()`'s flat, tuple-encoded tags into a nested `TagNode` hierarchy: a + tag `("a", "b")` becomes a folder `"a"` containing a leaf `"b"`. A tuple prefix (e.g. `"a"` + from that same tag) may never itself have been used as a real tag, so `has_products` is + tracked separately from `children` being non-empty -- a node can be a pure folder, a pure + leaf, or both at once. + """ + root: dict[str, _TrieNode] = {} + + for tag in store.tag_tree(): + parts = tag_to_path_parts(tag) + level = root + node: _TrieNode | None = None + for part in parts: + node = level.setdefault(part, _TrieNode()) + level = node.children + if node is not None: + node.tag = tag + + def to_nodes(level: dict[str, _TrieNode]) -> list[TagNode]: + nodes = [] + for label, node in level.items(): + tag = node.tag + nodes.append( + TagNode( + key=tag if tag is not None else label, + label=label, + children=to_nodes(node.children), + has_products=tag is not None, + product_kinds=_product_kinds(store, tag) if tag is not None else [], + ) + ) + # Two stable sorts: alphabetical first, then by category -- the second sort's stability + # preserves the alphabetical order within each category group. + nodes.sort(key=lambda n: n.label.lower()) + nodes.sort(key=_category_rank) + return nodes + + return to_nodes(root) diff --git a/src/trendify/viewer/templates/base.html b/src/trendify/viewer/templates/base.html new file mode 100644 index 0000000..d19ccb6 --- /dev/null +++ b/src/trendify/viewer/templates/base.html @@ -0,0 +1,48 @@ + + + + + + + {% block title %}trendify{% endblock %} + + + + + + + + + + + + + + + {% block extra_head %}{% endblock %} + + + + {% block content %}{% endblock %} + + + + + diff --git a/src/trendify/viewer/templates/index.html b/src/trendify/viewer/templates/index.html new file mode 100644 index 0000000..43559af --- /dev/null +++ b/src/trendify/viewer/templates/index.html @@ -0,0 +1,75 @@ +{% extends "base.html" %} + +{% block content %} +
+ {% include "partials/nav.html" %} + +
+ {% include "partials/sidebar.html" %} + +
+ +
+ + + +
+
+ + {% include "partials/footer.html" %} + +
+ +
+
+{% endblock %} diff --git a/gallery/trendify/products/clusters/reserving_index.lock b/src/trendify/viewer/templates/partials/__init__.py similarity index 100% rename from gallery/trendify/products/clusters/reserving_index.lock rename to src/trendify/viewer/templates/partials/__init__.py diff --git a/src/trendify/viewer/templates/partials/footer.html b/src/trendify/viewer/templates/partials/footer.html new file mode 100644 index 0000000..a71ff22 --- /dev/null +++ b/src/trendify/viewer/templates/partials/footer.html @@ -0,0 +1,15 @@ +
diff --git a/src/trendify/viewer/templates/partials/nav.html b/src/trendify/viewer/templates/partials/nav.html new file mode 100644 index 0000000..982ad9d --- /dev/null +++ b/src/trendify/viewer/templates/partials/nav.html @@ -0,0 +1,148 @@ + diff --git a/src/trendify/viewer/templates/partials/sidebar.html b/src/trendify/viewer/templates/partials/sidebar.html new file mode 100644 index 0000000..d21bd20 --- /dev/null +++ b/src/trendify/viewer/templates/partials/sidebar.html @@ -0,0 +1,156 @@ +{% macro render_node(node, path=[]) %} +{% set full_path = path + [node.label] %} +
+
+ {% if node.children %} + + + + + + {% else %} + + {% endif %} + + {% if node.has_products %} + + {% if "plot" in node.product_kinds %} + + + + + {% endif %} + {% if "table" in node.product_kinds %} + + + + + {% endif %} + {{ node.label }} + + {% else %} + {{ node.label }} + {% endif %} + + {% if node.children %} + {{ node.product_count() }} + {% endif %} +
+ + {% if node.children %} +
+ {% for child in node.children %} + {{ render_node(child, full_path) }} + {% endfor %} +
+ {% endif %} +
+{% endmacro %} + + diff --git a/src/trendify/viewer/templates/partials/table_view.html b/src/trendify/viewer/templates/partials/table_view.html new file mode 100644 index 0000000..3d4b031 --- /dev/null +++ b/src/trendify/viewer/templates/partials/table_view.html @@ -0,0 +1,26 @@ +
+
+ + + +
+

No data available for this view.

+
+
+
+
diff --git a/gallery/trendify/products/comparison/reserving_index.lock b/src/trendify/viewer/templates/static/__init__.py similarity index 100% rename from gallery/trendify/products/comparison/reserving_index.lock rename to src/trendify/viewer/templates/static/__init__.py diff --git a/gallery/trendify/products/distributions/reserving_index.lock b/src/trendify/viewer/templates/static/assets/__init__.py similarity index 100% rename from gallery/trendify/products/distributions/reserving_index.lock rename to src/trendify/viewer/templates/static/assets/__init__.py diff --git a/src/trendify/viewer/templates/static/assets/logo.svg b/src/trendify/viewer/templates/static/assets/logo.svg index 3fa2c70..72fc738 100644 --- a/src/trendify/viewer/templates/static/assets/logo.svg +++ b/src/trendify/viewer/templates/static/assets/logo.svg @@ -1,3 +1,10 @@ - - + + diff --git a/src/trendify/viewer/templates/static/assets/logo_white_bg.svg b/src/trendify/viewer/templates/static/assets/logo_white_bg.svg index c6a97bc..f532d08 100644 --- a/src/trendify/viewer/templates/static/assets/logo_white_bg.svg +++ b/src/trendify/viewer/templates/static/assets/logo_white_bg.svg @@ -1,11 +1,24 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/src/trendify/viewer/templates/static/css/app.css b/src/trendify/viewer/templates/static/css/app.css new file mode 100644 index 0000000..a247db2 --- /dev/null +++ b/src/trendify/viewer/templates/static/css/app.css @@ -0,0 +1,69 @@ +/* Hand-authored styles that don't fit cleanly as inline Tailwind utility classes. */ + +[x-cloak] { + display: none !important; +} + +/* Generic bordered/elevated surface for grouped controls (e.g. the nav bar's theme + selector "pill"). Matches the surrounding chrome background so it reads as a subtle, + bordered inset rather than a jarring color block; child elements provide their own + contrast (e.g. a selected button's lighter background). */ +.card { + border-radius: 0.5rem; + border: 1px solid rgb(148 163 184 / 0.3); /* slate-400/30 */ + background-color: rgb(226 232 240); /* slate-200 */ +} + +.dark .card { + background-color: rgb(30 41 59); /* slate-800 */ +} + +::-webkit-scrollbar { + width: 10px; + height: 10px; +} + +::-webkit-scrollbar-track { + background: transparent; +} + +::-webkit-scrollbar-thumb { + background-color: rgb(100 116 139 / 0.4); /* slate-500/40 */ + border-radius: 9999px; +} + +/* DataTables (table viewer): fixed layout so manually-resized column widths stick instead of + being recalculated on every redraw. */ +table.dataTable { + table-layout: fixed; +} + +.dt-col-resize-handle { + position: absolute; + top: 0; + right: 0; + bottom: 0; + width: 6px; + cursor: col-resize; + user-select: none; +} + +.dt-col-resize-handle:hover { + background-color: rgb(244 63 94 / 0.4); /* rose-500/40 */ +} + +.dt-column-filter { + display: block; + width: 100%; + margin-top: 0.25rem; + border: 1px solid rgb(148 163 184 / 0.4); /* slate-400/40 */ + border-radius: 0.25rem; + padding: 0.125rem 0.25rem; + font-size: 0.875rem; + font-weight: normal; + background-color: transparent; +} + +.dark .dt-column-filter { + color: rgb(226 232 240); /* slate-200 */ +} diff --git a/src/trendify/viewer/templates/static/js/main.js b/src/trendify/viewer/templates/static/js/main.js new file mode 100644 index 0000000..4d323ab --- /dev/null +++ b/src/trendify/viewer/templates/static/js/main.js @@ -0,0 +1,2 @@ +"use strict";(()=>{var g="trendify:theme";function K(){return window.matchMedia("(prefers-color-scheme: dark)").matches}function P(){let e=localStorage.getItem(g);return e==="light"||e==="dark"?e:"system"}function U(e){let t=e==="dark"||e==="system"&&K();document.documentElement.classList.toggle("dark",t)}function _(e){e==="system"?localStorage.removeItem(g):localStorage.setItem(g,e),U(e)}function w(){return{theme:P(),setTheme(e){this.theme=e,_(e)}}}function b(){return{isFullscreen:!1,init(){document.addEventListener("fullscreenchange",()=>{this.isFullscreen=document.fullscreenElement!==null,window.dispatchEvent(new Event("trendify:layout-changed"))})},toggle(){document.fullscreenElement?document.exitFullscreen():document.documentElement.requestFullscreen()}}}function T({storageKey:e,elementId:t,defaultWidth:n,minWidth:o,maxWidth:r}){let a=Number(localStorage.getItem(e));return{width:Number.isFinite(a)&&a>0?a:n,dragging:!1,startDrag(i){i.preventDefault(),this.dragging=!0;let s=i.clientX,c=this.width,d=p=>{let O=c+(p.clientX-s);this.width=Math.min(r,Math.max(o,O))},u=()=>{this.dragging=!1,localStorage.setItem(e,String(this.width)),window.removeEventListener("mousemove",d),window.removeEventListener("mouseup",u)};window.addEventListener("mousemove",d),window.addEventListener("mouseup",u)},fitToContent(){let i=document.getElementById(t);if(!i)return;let s=i.style.width;i.style.width="max-content";let c=i.scrollWidth;i.style.width=s,this.width=Math.min(r,Math.max(o,c)),localStorage.setItem(e,String(this.width))}}}var D=1;function v(){return{toasts:[],push(e,t="info",n=4e3){let o=D++;this.toasts.push({id:o,message:e,kind:t,timestamp:Date.now(),read:!1,visible:!0}),n>0&&setTimeout(()=>{let r=this.toasts.find(a=>a.id===o);r&&(r.visible=!1)},n)},dismiss(e){let t=this.toasts.find(n=>n.id===e);t&&(t.visible=!1)},clearAll(){this.toasts=[]},markAllRead(){this.toasts.forEach(e=>{e.read=!0})},get unreadCount(){return this.toasts.filter(e=>!e.read).length},timeAgo(e){let t=Math.floor((Date.now()-e)/1e3);if(t<5)return"just now";if(t<60)return`${t}s ago`;let n=Math.floor(t/60);return n<60?`${n}m ago`:`${Math.floor(n/60)}h ago`}}}function y({pingUrl:e,intervalMs:t,timeoutMs:n,onConnectionChange:o,onDbChanged:r}){let a=!0,l=null;async function i(){let c=new AbortController,d=setTimeout(()=>c.abort(),n);try{let u=await fetch(e,{signal:c.signal,cache:"no-store"});if(!u.ok)throw new Error(`ping failed: ${u.status}`);let p=await u.json();a||(a=!0,o(!0)),p.db_updated_at!==null&&(l!==null&&p.db_updated_at!==l&&r(),l=p.db_updated_at)}catch{a&&(a=!1,o(!1))}finally{clearTimeout(d)}}let s=setInterval(i,t);return i(),()=>clearInterval(s)}async function S(e){if(navigator.clipboard?.writeText)try{return await navigator.clipboard.writeText(e),!0}catch{}try{let t=document.createElement("textarea");t.value=e,t.style.position="fixed",t.style.opacity="0",document.body.appendChild(t),t.focus(),t.select();let n=document.execCommand("copy");return document.body.removeChild(t),n}catch{return!1}}var f=new Map;async function F(e){let t=f.get(e);if(t!==void 0)return t;let n=await fetch(e);if(!n.ok)throw new Error(`Request failed: ${e} (${n.status})`);let o=await n.json();return f.set(e,o),o}function x(e,t){let n=`/api/table?tag=${encodeURIComponent(JSON.stringify(e))}&view=${t}`;return F(n)}window.addEventListener("trendify:db-changed",()=>f.clear());var E="tag",C="kinds",M="view",W=["melted","pivot","stats"];function V(){let e=new URLSearchParams(window.location.search),t=e.get(E);if(!t)return null;try{let n=JSON.parse(t),o=e.get(C),r=o?o.split(","):[];return{tag:n,productKinds:r}}catch{return null}}function A(e,t){let n=new URLSearchParams(window.location.search);n.set(E,JSON.stringify(e)),n.set(C,t.join(","));let o=`${window.location.pathname}?${n.toString()}`;window.history.replaceState(null,"",o)}function L(){let e=new URLSearchParams(window.location.search).get(M);return W.includes(e??"")?e:null}function N(e){let t=new URLSearchParams(window.location.search);t.set(M,e);let n=`${window.location.pathname}?${t.toString()}`;window.history.replaceState(null,"",n)}function m(e){let t=localStorage.getItem(e);if(t===null)return null;try{return JSON.parse(t)}catch{return null}}function h(e,t){localStorage.setItem(e,JSON.stringify(t))}var J=60,R="trendify:table-page-length",H=10;function z(e,t){return`trendify:table-filters:${JSON.stringify(e)}:${t}`}function q(e){e.querySelectorAll("thead th").forEach(n=>{n.style.position="relative";let o=document.createElement("span");o.className="dt-col-resize-handle",o.addEventListener("mousedown",r=>{r.preventDefault(),r.stopPropagation();let a=r.clientX,l=n.offsetWidth,i=c=>{let d=Math.max(J,l+(c.clientX-a));n.style.width=`${d}px`},s=()=>{window.removeEventListener("mousemove",i),window.removeEventListener("mouseup",s)};window.addEventListener("mousemove",i),window.addEventListener("mouseup",s)}),n.appendChild(o)})}function G(e){let t=m(e)??{},n=this;n.columns().every(function(){let o=this,r=String(o.dataSrc()),a=t[r]??"",l=$(o.header());$("` is available. Did you forget to add `defer` in Alpine's ` + + diff --git a/src/trendify/viewer/templates/index.html b/src/trendify/viewer/templates/index.html index 99769fb..c097afe 100644 --- a/src/trendify/viewer/templates/index.html +++ b/src/trendify/viewer/templates/index.html @@ -24,11 +24,53 @@ Select a tag from the sidebar to view its data.

- -